Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
pygwinc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lee McCuller
pygwinc
Commits
619cb819
Commit
619cb819
authored
6 years ago
by
Jameson Graef Rollins
Browse files
Options
Downloads
Patches
Plain Diff
comment cleanup in precomp
parent
f3bbdfc8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gwinc/precomp.py
+20
-17
20 additions, 17 deletions
gwinc/precomp.py
with
20 additions
and
17 deletions
gwinc/precomp.py
+
20
−
17
View file @
619cb819
...
...
@@ -19,19 +19,23 @@ def precompIFO(ifo, PRfixed=True):
if
'
gwinc
'
not
in
ifo
:
ifo
.
gwinc
=
Struct
()
ifo
.
gwinc
.
PRfixed
=
PRfixed
################################# DERIVED TEMP
##############################
# derived temp
if
'
Temp
'
not
in
ifo
.
Materials
.
Substrate
:
ifo
.
Materials
.
Substrate
.
Temp
=
ifo
.
Constants
.
Temp
################################# DERIVED OPTICS VALES
# Calculate optics' parameters
##############################
# optics values
# calculate optics' parameters
ifo
.
Materials
.
MirrorVolume
=
pi
*
ifo
.
Materials
.
MassRadius
**
2
*
\
ifo
.
Materials
.
MassThickness
ifo
.
Materials
.
MirrorMass
=
ifo
.
Materials
.
MirrorVolume
*
\
ifo
.
Materials
.
Substrate
.
MassDensity
# kg
ifo
.
Materials
.
Substrate
.
MassDensity
ifo
.
Optics
.
ITM
.
Thickness
=
ifo
.
Materials
.
MassThickness
# coating layer optical thicknesses - mevans 2 May 2008
...
...
@@ -45,32 +49,32 @@ def precompIFO(ifo, PRfixed=True):
dCap
=
ifo
.
Optics
.
ETM
.
CoatingThicknessCap
ifo
.
Optics
.
ETM
.
CoatLayerOpticalThickness
=
getCoatDopt
(
ifo
,
T
,
dL
,
dCap
=
dCap
)
# compute power on BS
pbs
,
parm
,
finesse
,
prfactor
,
Tpr
=
precompPower
(
ifo
,
PRfixed
)
ifo
.
gwinc
.
pbs
=
pbs
ifo
.
gwinc
.
parm
=
parm
ifo
.
gwinc
.
finesse
=
finesse
ifo
.
gwinc
.
prfactor
=
prfactor
ifo
.
Optics
.
PRM
.
Transmittance
=
Tpr
# compute quantum noise parameters
##############################
# calc quantum parameters
fSQL
,
fGammaIFO
,
fGammaArm
=
precompQuantum
(
ifo
)
ifo
.
gwinc
.
fSQL
=
fSQL
ifo
.
gwinc
.
fGammaIFO
=
fGammaIFO
ifo
.
gwinc
.
fGammaArm
=
fGammaArm
##################################### LOAD SAVED DATA
# precompute bessels zeros for finite mirror corrections
#if ~exist('besselzeros')
# load saved values, or just compute them
#try
# load besselzeros
#catch
##############################
# precompute bessels zeros, needed in coat and substrate thermal
besselzeros
=
scipy
.
special
.
jn_zeros
(
1
,
300
)
ifo
.
Constants
.
BesselZeros
=
besselzeros
# Seismic noise term is saved in a .mat file defined in your respective IFOModel.m
# It is loaded here and put into the ifo structure.
##############################
# saved seismic spectrum
if
'
darmSeiSusFile
'
in
ifo
.
Seismic
and
ifo
.
Seismic
.
darmSeiSusFile
:
darmsei
=
loadmat
(
ifo
.
Seismic
.
darmSeiSusFile
)
ifo
.
Seismic
.
darmseis_f
=
darmsei
[
'
darmseis_f
'
][
0
]
...
...
@@ -80,10 +84,9 @@ def precompIFO(ifo, PRfixed=True):
def
precompPower
(
ifo
,
PRfixed
=
True
):
"""
Compute power on beamsplitter
and
finesse and power recycling factor.
"""
Compute power on beamsplitter
,
finesse
,
and power recycling factor.
"""
# constants
c
=
scipy
.
constants
.
c
pin
=
ifo
.
Laser
.
Power
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment