summaryrefslogtreecommitdiff
path: root/Simulator
diff options
context:
space:
mode:
authorlucaszhao192020-02-05 17:58:00 +0530
committerlucaszhao192020-02-05 17:58:00 +0530
commit38dbff48f57c403abdc575a9cd9d0bbf512bfef6 (patch)
tree7aed3e55ee894115fb29d823a69cdd626fd5c9f7 /Simulator
parent7ecaa6f103b2755dc3bb3fae10a0d7ab28162596 (diff)
downloadChemical-Simulator-GUI-38dbff48f57c403abdc575a9cd9d0bbf512bfef6.tar.gz
Chemical-Simulator-GUI-38dbff48f57c403abdc575a9cd9d0bbf512bfef6.tar.bz2
Chemical-Simulator-GUI-38dbff48f57c403abdc575a9cd9d0bbf512bfef6.zip
Input/Results DockWidgets, Newly implemented variables for MaterialStream and four UnitOps
Diffstat (limited to 'Simulator')
-rw-r--r--Simulator/BinaryEnvelopes.mo19
1 files changed, 0 insertions, 19 deletions
diff --git a/Simulator/BinaryEnvelopes.mo b/Simulator/BinaryEnvelopes.mo
deleted file mode 100644
index 990bf31..0000000
--- a/Simulator/BinaryEnvelopes.mo
+++ /dev/null
@@ -1,19 +0,0 @@
-package BinaryEnvelopes
- model NRTL
- parameter Integer NOC;
- parameter Integer data_points;
- parameter Real BIP[NOC, NOC, 2] = Simulator.Files.Thermodynamic_Functions.BIPNRTL(NOC, comp.CAS);
- parameter Simulator.Files.Chemsep_Database.General_Properties comp[NOC];
- Simulator.Binary_Phase_Envelope.Binary_Phase_Envelope_NRTL.base points[data_points](each NOC = NOC, each comp = comp, each BIP = BIP);
- Real x[data_points, NOC], y[data_points, NOC], P[data_points], T[data_points];
- equation
- points[:].x = x;
- points[:].y = y;
- points[:].P = P;
- points[:].T = T;
- for i in 1:data_points loop
- x[i, 1] = 0 + (i - 1) * 1/(data_points-1);
- end for;
- end NRTL;
-
-end BinaryEnvelopes; \ No newline at end of file