Skip to content
Snippets Groups Projects
Select Git revision
  • 8726c7908744bdcc9f2006ca51f363f8a321c986
  • 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
  • eah_wrapper_improvements
  • 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
26 results

generate_svn_version.sh

Blame
  • asc_powers.py 585 B
    import copy
    from pykat import finesse
    
    def run(tmpkat):
    
        kat = copy.deepcopy(tmpkat)
        
        code1 = """
        ad EOM_up 9M nEOM1
        ad EOM_low -9M nEOM1
        pd cav_pow nITM2
        ad cav_c 0 nITM2
        ad WFS1_u  9M nWFS1
        ad WFS1_l -9M nWFS1
        ad WFS1_c  0  nWFS1
        ad WFS2_u  9M nWFS2
        ad WFS2_l -9M nWFS2
        ad WFS2_c   0 nWFS2
        noxaxis
        """
    
        kat.parseKatCode(code1)
    
        out = kat.run(printout=0,printerr=0)
    
        code1 = code1.split("\n")
        for i in range(len(out.y)):
            print " %8s: %.4e" % (out.ylabels[i], out.y[i])