Skip to content
Snippets Groups Projects
Select Git revision
  • eah_wrapper_improvements
  • master default protected
  • fix_Makefile.mingw#2
  • update_Makefile.mingw
  • fix_Makefile.mingw
  • fix_API_for_C_apps
  • fix_procinfo_mac
  • boinccmd_gpu_mode_always_until_sigterm
  • fgrp_osx_hotfix
  • fix_boinc_master@f8250782
  • diagnostics_win-hotfix
  • diagnostics_win-hotfix-old
  • current_fgrp_apps
  • testing_gw_apps
  • gw_app_darwin_15
  • current_brp_apps
  • current_brp_apps_android10
  • current_gfx_apps
  • current_server
  • current_gw_apps
  • previous_fgrp_apps
  • previous_gw_apps
  • testing_brp_apps
  • apps_FGRP3_1.07
  • apps_FGRP3_1.08
25 results

Makefile.am

Blame
  • lkat_trace.py 345 B
    import pykat
    								 
    cmd = """
    l l1 1 0 n1
    s s1 1 n1 n2
    m m1 0.99 0.01 0 n2 n3
    s s2 999 n3 n4
    m m2 0.99 0.01 0 n4 n5
    pd circ n3
    
    noxaxis
    maxtem 0
    
    attr m1 Rc 0
    attr m2 Rc 1000 
    cav c1 m1 n3 m2 n4
    """
    
    kat = pykat.finesse.kat()
    
    kat.parseCommands(cmd)
    
    info = kat.lkat_trace()
    
    print "n1 qx =", info["n1"].qx
    
    print "Cavity info ", info["c1"]