Skip to main content

Python interface and tools for FINESSE

Project description

PyKat is a wrapper for using FINESSE (http://www.gwoptics.org/finesse). It aims to provide a Python toolset for automating more complex tasks as well as providing a GUI for manipulating and viewing simulation setups.

Installation

The easiest way to install PyKat is through PyPi:

pip install pykat

If you are a Windows user you also have the option to download the installer at https://pypi.python.org/pypi/PyKat.

You should now be able to open up a new Python terminal and type import pykat, the output should be:

>>> import pykat
                                              ..-
    PyKat 0.1              _                  '(
                          \`.|\.__...-""""-_." )
       ..+-----.._        /  ' `            .-'
   . '            `:      7/* _/._\    \   (
  (        '::;;+;;:      `-"' =" /,`"" `) /
  L.        \`:::a:f            c_/     n_'
  ..`--...___`.  .    ,
   `^-....____:   +.      www.gwoptics.org/pykat
>>>

You will also need to ensure that you have a fully working copy of FINESSE installed and setup on your machine. More details on this can be found at http://www.gwoptics.org/finesse.

You must setup 2 environment variables: ‘FINESSE_DIR’, whose value is the directory that the ‘kat’ executable is in; ‘KATINI’, which states the directory and name of the kat.ini file to use by default in FINESSE, more information in the FINESSE manual can be found about this.

Usage

This does not detail how to use FINESSE itself, just PyKat. FINESSE related queries should be directed at the FINESSE manual or the forum http://kvasir.sr.bham.ac.uk/redmine/projects/finesse/boards.

We highly recommend running PyKat with IPython, it has so far provided the best way to explore the various PyKat objects and output data. Also of use is IPythons interactive matplotlib mode - or pylab mode - which makes displaying and interacting with multiple plots easy. You can start pylab mode from a terminal using:

ipython -pylab

Regardless of which interpreter you use, to begin using PyKat you first need to include the following:

from pykat import finesse
from pykat.detectors import *
from pykat.components import *
from pykat.commands import *
from pykat.structs import *

This provides all the various FINESSE components and commands you will typically need. Running a simulation requires you to already know how to code FINESSE files, which is beyond the scope of this readme. FINESSE commands can be entered in many ways: reading in a previous .kat file, creating pykat objects representing the various FINESSE commands or by writing blocks of FINESSE code as shown next:

import pylab as pl

# Here we write out any FINESSE commands we want to process
code = """
l l1 1 0 0 n1
s s1 10 1 n1 n2
m m1 0.5 0.5 0 n2 n3
s s2 10 1 n3 n4
m m2 0.5 0.5 0 n4 n5
s s3 10 1 n5 n6

pd pd_cav n4
xaxis m1 phi lin 0 360 360
yaxis abs:deg
"""

# this kat object represents one single simulation, it containts
# all the objects and their various states.
kat = finesse.kat()

# Currently the kat object is empty. We can fill it using a block
# string of normal FINESSE commands by parsing them.
kat.parseCommands(code)

# Once we have some simulation built up we can run it simply by calling...
out = kat.run()

# This out object contains the results from this run of the simulation.
# Parameters can then be changed and kat.run() can be called again producing
# another output object. So if we wanted to change the reflectivity of m1 we can do
kat.m1.R = 0.2
kat.m1.T = 0.8
# now run it again...
out2 = kat.run()

# We can plot the output simply enough using pylab plotting.
pl.figure()
pl.plot(out.x, out["pd_cav"])
pl.xlabel(out.xlabel)
pl.ylabel("Intensity [W]")
pl.legend(out.ylabels)
pl.show()

The above demonstates a way of packaging up a FINESSE simulation - simple or complex - and including any post-processing and plotting in one Python script file. Or you can create kat files separately and produce Python scripts to run and process them, that choice is upto you, Pykat provides the means to be used in both ways.

To load in a separate FINESSE .kat file we can use the commands:

kat = finesse.kat()
# load in a separate file in the same directory...
kat.loadKatFile('test.kat')
# the kat object has now parsed all the commands in this file.

# We can alter and objects in there, e.g. if there was a mirror called m1
kat.m1.phi = 45

out = kat.run()

Finesse Test Server

A Flask based website that runs the Finesse test suites is included in PyKat. This can be hosted in Apache or run as a development server for quick testing on a system. This is a developer tool for testing FINESSE against a selection of known test cases.

Prerequistes:

Flask Numpy CodernityDB

Command to start server:

python -m pykat.testing.web_server --path=[path to create website] --port=[HTTP port] --git-bin=[path to git binary]

The website can then be accessed in a web browser at the address: localhost:[port]

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

PyKat-1.0.8.zip (231.7 kB view details)

Uploaded Source

PyKat-1.0.8.tar.gz (197.8 kB view details)

Uploaded Source

File details

Details for the file PyKat-1.0.8.zip.

File metadata

  • Download URL: PyKat-1.0.8.zip
  • Upload date:
  • Size: 231.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for PyKat-1.0.8.zip
Algorithm Hash digest
SHA256 bdb5ffc5b36d09b093b1f369d72c24ce7c28b041fe730483bd26b5300fc43422
MD5 65cdf1a90e5fa89fddd01c0d7843152b
BLAKE2b-256 2d16d98b701df4bd95583e1a81899a1a386e64b08ff508a45c7c9a59b5f36818

See more details on using hashes here.

File details

Details for the file PyKat-1.0.8.tar.gz.

File metadata

  • Download URL: PyKat-1.0.8.tar.gz
  • Upload date:
  • Size: 197.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for PyKat-1.0.8.tar.gz
Algorithm Hash digest
SHA256 0d1efcb9ffd2dcb1e0922b2c3a0b6ed4bdd3ca48ca33a970409b3930e959b268
MD5 1e18dda3e8ec0124de440f365b12096d
BLAKE2b-256 29b3db5438c9d408c539c7ffea50693fda7734a71fcea488faacdd4c4e7eb9e3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page