Blame view

mode-matching/mode-matching.py 156 Bytes
f893fd827   bmarechal   mode-matching: ad...
1
2
3
4
5
6
7
8
9
10
11
  from numpy import pi
  
  L = 140.#mm
  R = 900.#mm
  lambd = 1542.#nm
  
  g = 1-L/R
  print('g = %f'%g)
  
  w0 = ((L*lambd/pi)*(g/(1-g))**0.5)**0.5
  print('w0 = %f um'%w0)