summaryrefslogtreecommitdiff
path: root/src/main/webapp/history/data_structures/Flowmeter.js
diff options
context:
space:
mode:
authorkamakshidasan2016-12-22 15:36:18 +0530
committerkamakshidasan2016-12-22 15:36:18 +0530
commitb2cd0d0cad32683971baf53efa2e50ff8d26f66b (patch)
treee359be4308ae9b361eae39bf277adcfbef807cef /src/main/webapp/history/data_structures/Flowmeter.js
parent25afcccb46a603cc9d2485e25216acfffa2e3e02 (diff)
downloadxcos-on-web-b2cd0d0cad32683971baf53efa2e50ff8d26f66b.tar.gz
xcos-on-web-b2cd0d0cad32683971baf53efa2e50ff8d26f66b.tar.bz2
xcos-on-web-b2cd0d0cad32683971baf53efa2e50ff8d26f66b.zip
Maven has been removed
Diffstat (limited to 'src/main/webapp/history/data_structures/Flowmeter.js')
-rw-r--r--src/main/webapp/history/data_structures/Flowmeter.js30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/main/webapp/history/data_structures/Flowmeter.js b/src/main/webapp/history/data_structures/Flowmeter.js
deleted file mode 100644
index b17778b..0000000
--- a/src/main/webapp/history/data_structures/Flowmeter.js
+++ /dev/null
@@ -1,30 +0,0 @@
-function Flowmeter () {
-
-
- var ModelName = "Flowmeter";
-
- var PrametersValue = 1;
-
- var ParametersName = "Qini";
-
- var model = scicos_model();
-
- var Typein = [];
-
- var Typeout = [];
-
- var MI = [];
-
- var MO = [];
-
- var P = [[50,105,-1,90],[0,10,2,0],[101,10,-2,0]];
-
- var PortName = ["Mesure";"C1";"C2"];
-
- var for i = 1:size(P,"r");
-
- var if P(i,3) = =1, then;
- Typein = new ScilabDouble([Typein;,"E"]);
- MI = new ScilabDouble([MI],[PortName(i)]);
- return new BasicBlock(this.x)
-}