diff options
author | brenda-br | 2023-03-04 11:32:15 +0530 |
---|---|---|
committer | brenda-br | 2023-03-04 11:32:15 +0530 |
commit | 3cbdd4238867bc860282f7cf702d73b5be6e3f86 (patch) | |
tree | 7a9323daf6923801a61bb10b5aa35ad4795c52b1 /OMChem/Flash.py | |
parent | 7cf8eca28f9ca77e6195aa43e3bd9ae319518b66 (diff) | |
download | Chemical-Simulator-GUI-3cbdd4238867bc860282f7cf702d73b5be6e3f86.tar.gz Chemical-Simulator-GUI-3cbdd4238867bc860282f7cf702d73b5be6e3f86.tar.bz2 Chemical-Simulator-GUI-3cbdd4238867bc860282f7cf702d73b5be6e3f86.zip |
Revert "Restructuring Finalized for App Bundling"
This reverts commit 7af3526e105cc330422f8742ec5edec1c4a0a98f.
Diffstat (limited to 'OMChem/Flash.py')
-rw-r--r-- | OMChem/Flash.py | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/OMChem/Flash.py b/OMChem/Flash.py deleted file mode 100644 index 165849a..0000000 --- a/OMChem/Flash.py +++ /dev/null @@ -1,55 +0,0 @@ -class Flash(): - counter = 1 - def __init__(self,name='Flash'): - self.OM_data_eqn = '' - self.OM_data_init = '' - self.InputStms = None - self.OutputStms = None - self.type = 'flash' - self.count = Flash.counter - self.thermoPackage =None - - # new - self.name = name + str(Flash.counter) - self.no_of_input = 1 - self.no_of_output = 2 - Flash.counter += 1 - - def getname(self): - return self.name - - def connect(self,InputStms = None,OutputStms = None): - self.InputStms = InputStms - self.OutputStms = OutputStms - - def modesList(self): - return [] - - def paramgetter(self,mode=None): - dict = {"thermoPackage":None} - return dict - def paramsetter(self,dict): - self.thermoPackage = dict['thermoPackage'] - - def OM_Flowsheet_Init(self, addedcomp): - self.OM_data_init = '' - self.OM_data_init = self.OM_data_init + ("model fls"+str(self.count)+"\n") - self.OM_data_init = self.OM_data_init + ("extends Simulator.Unit_Operations.Flash;\n" ) - self.OM_data_init = self.OM_data_init + ("extends Simulator.Files.Thermodynamic_Packages."+self.thermoPackage+";\n") - self.OM_data_init = self.OM_data_init + ("end fls"+str(self.count)+";\n") - comp_count = len(addedcomp) - self.OM_data_init = self.OM_data_init + ( - "fls"+str(self.count)+" "+ self.name + "(Nc = " + str(comp_count)) - self.OM_data_init = self.OM_data_init + (",comp = {") - comp = str(addedcomp).strip('[').strip(']') - comp = comp.replace("'", "") - self.OM_data_init = self.OM_data_init + comp + ("});\n") - return self.OM_data_init - - def OM_Flowsheet_Eqn(self, addedcomp): - self.OM_data_eqn = '' - comp_count = len(addedcomp) - self.OM_data_eqn = self.OM_data_eqn + ('connect(' + self.InputStms[0].name + '.outlet,' + self.name + '.feed' + ');\n') - self.OM_data_eqn = self.OM_data_eqn + ('connect(' + self.name + '.vapor,' + self.OutputStms[0].name + '.inlet);\n') - self.OM_data_eqn = self.OM_data_eqn + ('connect(' + self.name + '.liquid,' + self.OutputStms[1].name + '.inlet);\n') - return self.OM_data_eqn
\ No newline at end of file |