Skip to content
Snippets Groups Projects
Commit 5acb7b08 authored by Daniel Brown's avatar Daniel Brown
Browse files

Adding in removeBlock command to completetly remove one from the kat object....

Adding in removeBlock command to completetly remove one from the kat object. Adding in lock, func and variable parsing.
parent 9006efd2
Branches
No related tags found
No related merge requests found
......@@ -10,18 +10,22 @@ from __future__ import print_function
from __future__ import unicode_literals
import numpy
from numpy import min,max
import pykat.external.six as six
import pykat.exceptions as pkex
if six.PY2:
import exceptions
from pykat.components import *
from pykat.structs import *
from numpy import min, max
from pykat.param import Param, putter
import pykat.exceptions as pkex
from collections import namedtuple
from pykat.optics.gaussian_beams import beam_param
class Command(object):
__metaclass__ = abc.ABCMeta
......@@ -36,7 +40,7 @@ class Command(object):
raise NotImplementedError("This function is not implemented")
@staticmethod
def parseFinesseText(text):
def parseFinesseText(line, kat):
raise NotImplementedError("This function is not implemented")
def _on_kat_add(self, kat):
......@@ -55,6 +59,110 @@ class Command(object):
@property
def removed(self): return self.__removed
class variable(Command):
def __init__(self, name, value):
Command.__init__(self, name, False)
self.__value = value
def getFinesseText(self):
return "variable {name} {value}".format(name=self.name, value=self.value)
@staticmethod
def parseFinesseText(line, kat):
v = line.split()
if len(v) != 3:
raise pkex.BasePyKatException("'{0}' not a valid Finesse variable command".format(line))
return variable(v[1], SIfloat(v[2]))
@property
def value(self): return self.__value
@value.setter
def value(self, Value): self.__value = SIfloat(Value)
class func(Command):
def __init__(self, name, value):
Command.__init__(self, name, False)
self.value = value
def getFinesseText(self):
return "func {name} = {value}".format(name=self.name, value=str(self.value))
@staticmethod
def parseFinesseText(line, kat):
v = line.split(None, 3)
if "=" in v and len(v) == 4:
v.remove("=")
else:
raise pkex.BasePyKatException("'{0}' not a valid Finesse func command".format(line))
return func(v[1], v[2])
class lock(Command):
def __init__(self, name, variable, gain, accuracy, singleLock=False):
Command.__init__(self, name, False)
self.__variable = variable
self.__gain = gain
self.__accuracy = accuracy
self.singleLock = singleLock
self.enabled = True
@staticmethod
def parseFinesseText(line, kat):
v = line.split()
if len(v) != 5:
raise pkex.BasePyKatException("'{0}' not a valid Finesse lock command".format(line))
return lock(v[1], v[2], SIfloat(v[3]), SIfloat(v[4]), "*" in v[0])
def getFinesseText(self):
if self.enabled:
cmds = "{name} {var} {gain} {accuracy}".format( name=self.name,
var=str(self.variable),
gain=str(self.gain),
accuracy=str(self.accuracy))
if self.singleLock:
return "lock* %s" % cmds
else:
return "lock %s" % cmds
else:
return None
@property
def variable(self): return self.__variable
@variable.setter
def variable(self, value): self.__variable = value
@property
def gain(self): return self.__gain
@gain.setter
def gain(self, value): self.__gain = SIfloat(value)
@property
def accuracy(self): return self.__accuracy
@accuracy.setter
def accuracy(self, value): self.__accuracy = SIfloat(value)
class cavity(Command):
def __init__(self, name, c1, n1, c2, n2):
Command.__init__(self, name, False)
......@@ -284,6 +392,3 @@ class x2axis(xaxis):
return x2axis(values[2], [values[3], values[4]], values[1], values[5], comp=values[0],axis_type=axis_type)
class lock(Command):
pass
......@@ -678,6 +678,17 @@ class kat(object):
pkex.PrintError("Error processing constants:", ex)
sys.exit(1)
def removeBlock(self, name):
if name not in self.__blocks:
pkex.PrintError("Error removing block:", pkex.BasePyKatException('Block "{0}" was not found'.format(name)))
sys.exit(1)
for o in self.__blocks[name].contents:
self.remove(o)
del self.__blocks[name]
def parseCommands(self, commands, blocks=None):
try:
blockComment = False
......@@ -772,15 +783,21 @@ class kat(object):
elif(first == "x2axis" or first == "x2axis*"):
obj = pykat.commands.x2axis.parseFinesseText(line)
elif(first == "gauss" or first == "gauss*" or first == "gauss**"):
after_process.append(line)
after_process.append((line, self.__currentTag))
elif(first == "scale"):
after_process.append(line)
after_process.append((line, self.__currentTag))
elif(first == "pdtype"):
after_process.append(line)
after_process.append((line, self.__currentTag))
elif(first == "cav"):
after_process.append(line)
after_process.append((line, self.__currentTag))
elif(first == "func"):
after_process.append((line, self.__currentTag))
elif(first == "variable"):
after_process.append((line, self.__currentTag))
elif(first == "lock"):
after_process.append((line, self.__currentTag))
elif(first == "attr"):
after_process.append(line)
after_process.append((line, self.__currentTag))
elif(first == "noxaxis"):
self.noxaxis = True
elif(first == "lambda"):
......@@ -827,10 +844,10 @@ class kat(object):
if self.verbose:
print ("Ignoring Gnuplot/Python terminal command '{0}'".format(line))
elif(first == "fsig"):
after_process.append(line)
after_process.append((line, self.__currentTag))
elif(first == "noplot"):
obj = line
self.__blocks[self.__currentTag].contents.append(line)
#self.__blocks[self.__currentTag].contents.append(line)
else:
if self.verbose:
print ("Parsing `{0}` into pykat object not implemented yet, added as extra line.".format(line))
......@@ -844,20 +861,30 @@ class kat(object):
getattr(self, obj.name).remove()
print ("Removed existing object '{0}' of type {1} to add line '{2}'".format(obj.name, obj.__class__, line))
self.add(obj)
self.add(obj, block=self.__currentTag)
# now process all the varous gauss/attr etc. commands which require
# components to exist first before they can be processed
for line in after_process:
for item in after_process:
line = item[0]
first = line.split(" ",1)[0]
block = item[1]
if first == "gauss" or first == "gauss*" or first == "gauss**":
pykat.commands.gauss.parseFinesseText(line, self)
elif (first == "cav"):
self.add(pykat.commands.cavity.parseFinesseText(line, self))
self.add(pykat.commands.cavity.parseFinesseText(line, self), block=block)
elif (first == "lock"):
self.add(pykat.commands.lock.parseFinesseText(line, self), block=block)
elif (first == "func"):
self.add(pykat.commands.func.parseFinesseText(line, self), block=block)
elif (first == "variable"):
self.add(pykat.commands.variable.parseFinesseText(line, self), block=block)
elif (first == "scale"):
v = line.split()
......@@ -1307,11 +1334,12 @@ class kat(object):
def remove(self, obj):
try:
if not isinstance(obj, pykat.finesse.Signals) and not (obj.name in self.__components or obj.name in self.__detectors or obj.name in self.__commands or obj in self.signals.targets):
raise pkex.BasePyKatException("{0} is not currently in the simulation".format(obj.name))
if obj.removed:
raise pkex.BasePyKatException("{0} has already been removed".format(obj.name))
if hasattr(obj, "name") and not isinstance(obj, pykat.finesse.Signals) and not (obj.name in self.__components or obj.name in self.__detectors or obj.name in self.__commands or obj in self.signals.targets):
raise pkex.BasePyKatException("'{0}' is not currently in the simulation".format(obj.name))
if hasattr(obj, "removed") and obj.removed:
raise pkex.BasePyKatException("'{0}' has already been removed".format(obj.name))
nodes = None
......@@ -1402,10 +1430,10 @@ class kat(object):
def hasNamedObject(self, name):
return name in self.__components or name in self.__detectors or name in self.__commands
def add(self, obj):
def add(self, obj, block=NO_BLOCK):
try:
obj.tag = self.__currentTag
self.__blocks[self.__currentTag].contents.append(obj)
obj.tag = block
self.__blocks[block].contents.append(obj)
if isinstance(obj, Component):
......@@ -1903,11 +1931,14 @@ class kat(object):
def __add_detector(self, det):
if not isinstance(det, Detector):
raise exceptions.ValueError("Argument is not of type Detector")
raise pkex.BasePyKatException("Argument is not of type Detector")
name = det.name
fget = lambda self: self.__get_detector(name)
if hasattr(self, name):
raise pkex.BasePyKatException("There is something attached to the kat object already called `%s`" % name)
setattr(self.__class__, name, property(fget))
setattr(self, '__det_' + name, det)
......@@ -1918,6 +1949,9 @@ class kat(object):
name = det.name
if hasattr(self, name):
raise pkex.BasePyKatException("There is something attached to the kat object already called `%s`" % name)
delattr(self.__class__, name)
delattr(self, '__det_' + name)
......@@ -1934,6 +1968,9 @@ class kat(object):
else:
name = com.name
if hasattr(self, name):
raise pkex.BasePyKatException("There is something attached to the kat object already called `%s`" % name)
fget = lambda self: self.__get_command(name)
setattr(self.__class__, name, property(fget))
......@@ -1944,9 +1981,10 @@ class kat(object):
if not isinstance(com, Command):
raise exceptions.ValueError("Argument is not of type Command")
if com._Command__unique:
name = com.__class__.__name__
#print (getattr(self.__class__, name))
else:
name = com.name
delattr(self.__class__, name)
delattr(self, '__com_' + name)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment