Skip to content
Snippets Groups Projects
Commit 76ae9352 authored by Kevin Kuns's avatar Kevin Kuns
Browse files

get gas damping temperature from suspension struct

parent 35b3dced
No related branches found
No related tags found
1 merge request!121Residual gas sub-budgets and updates
......@@ -68,7 +68,12 @@ def residual_gas_damping(f, ifo, species, sustf, squeezed_film):
:returns: displacement noise
"""
kT = ifo.Infrastructure.Temp * const.kB
sus = ifo.Suspension
if 'Temp' in sus.Stage[0]:
kT = sus.Stage[0].Temp * const.kB
else:
kT = sus.Temp * const.kB
mass = species.mass
radius = ifo.Materials.MassRadius
thickness = ifo.Materials.MassThickness
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment