Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pykat
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Sebastian Steinlechner
pykat
Commits
e3f26bf2
Commit
e3f26bf2
authored
10 years ago
by
Andreas Freise
Browse files
Options
Downloads
Patches
Plain Diff
adding help text
parent
0e2c7295
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
pykat/optics/fabry_perot.py
+24
-8
24 additions, 8 deletions
pykat/optics/fabry_perot.py
with
24 additions
and
8 deletions
pykat/optics/fabry_perot.py
+
24
−
8
View file @
e3f26bf2
# ------------------------------------------------------
# Moving some utility function from Simtools
# http://www.gwoptics.org/simtools/
# to PyKat. Work in progress, currently these
# functions are not tested.
#
# Andreas 30.11.2014
# ------------------------------------------------------
"""
------------------------------------------------------
Utility functions to compute parameters of Fabry
Perot cavities. Functions based on earlier version
in Matlab( http://www.gwoptics.org/simtools/)
Work in progress, currently these functions are
untested!
Andreas 30.11.2014
http://www.gwoptics.org/pykat/
------------------------------------------------------
"""
from
__future__
import
absolute_import
from
__future__
import
division
from
__future__
import
print_function
...
...
@@ -15,6 +19,13 @@ from __future__ import unicode_literals
import
numpy
as
np
def
cavity_info
(
Lambda
,
L
,
Rc1
,
Rc2
):
"""
Function computes several cavity paramaters
Input: Lambda, L (length), Rc1, Rc2 (radii of curvature of cavity mirrors)
Output: zr (Rayleigh range), w0 (waist size), z1 (distance waist<->mirror1)
w1, w2 (spot size on both mirrors)
See examples/optics/cavity_w_Rc.py for an example usage.
"""
g1
=
1
-
L
/
Rc1
g2
=
1
-
L
/
Rc2
G
=
g1
*
g2
...
...
@@ -31,6 +42,11 @@ def cavity_info(Lambda, L, Rc1, Rc2):
return
[
zr
,
w0
,
z1
,
w1
,
w2
]
def
cavity_w1w2_Rc1Rc2
(
Lambda
,
L
,
w1
,
w2
):
"""
Function computes the radii of curvatures (Rc1, Rc2) for a linear
cavity to produce the requested mirror spot sizes (w1,w2) for a given
length (L) and wavelength (Lambda).
"""
C
=
(
Lambda
*
L
/
np
.
pi
)
**
2
g1
=
-
1.0
*
np
.
sqrt
(
1
-
C
/
(
w1
*
w2
)
**
2
)
*
(
w2
/
w1
)
g2
=
-
1.0
*
np
.
sqrt
(
1
-
C
/
(
w1
*
w2
)
**
2
)
*
(
w1
/
w2
)
...
...
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