summaryrefslogtreecommitdiff
path: root/src/main/Simulator/BinaryEnvelopes.mo
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/Simulator/BinaryEnvelopes.mo')
-rw-r--r--src/main/Simulator/BinaryEnvelopes.mo23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/main/Simulator/BinaryEnvelopes.mo b/src/main/Simulator/BinaryEnvelopes.mo
deleted file mode 100644
index 590888d..0000000
--- a/src/main/Simulator/BinaryEnvelopes.mo
+++ /dev/null
@@ -1,23 +0,0 @@
-package BinaryEnvelopes
- model NRTL
- parameter Integer Nc;
- parameter Integer data_points;
- parameter Real BIP[Nc, Nc, 2] = Simulator.Files.ThermodynamicFunctions.BIPNRTL(Nc, comp.CAS);
- parameter Simulator.Files.ChemsepDatabase.GeneralProperties comp[Nc];
- Simulator.BinaryPhaseEnvelope.BinaryPhaseEnvelopeNRTL.base points[data_points](each Nc = Nc, each comp = comp, each BIP = BIP);
- Real x[data_points, Nc], y[data_points, Nc], 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;