summaryrefslogtreecommitdiff
path: root/ArduBasicRW.mo
diff options
context:
space:
mode:
authorSiddharth112352019-09-03 18:09:16 +0530
committerSiddharth112352019-09-03 18:09:16 +0530
commitb4b6aa36e3486a3544acc52419149b5671f841e9 (patch)
tree66c1783158f23e6d21c77324156fc57e18d4ac67 /ArduBasicRW.mo
parentf5266f634f4fb4fd39933a83551a01cf446256b8 (diff)
downloadOpenModelica_HIL-master.tar.gz
OpenModelica_HIL-master.tar.bz2
OpenModelica_HIL-master.zip
Pushing entire Modelica HIL Tasks repoHEADmaster
Diffstat (limited to 'ArduBasicRW.mo')
-rwxr-xr-xArduBasicRW.mo19
1 files changed, 19 insertions, 0 deletions
diff --git a/ArduBasicRW.mo b/ArduBasicRW.mo
new file mode 100755
index 0000000..8637b5e
--- /dev/null
+++ b/ArduBasicRW.mo
@@ -0,0 +1,19 @@
+model ArduBasicRW
+import InterProcessCommunication.SharedMemory.*;
+Real ModelicaInput;
+ Real ModelicaOutput (start = 1);
+ Real OutputDummy;
+ Real OP (start = 0);
+ equation
+
+ ModelicaOutput = time;
+ when sample(0, 0.02) then
+
+ ModelicaInput = InterProcessCommunication.SharedMemory.SharedMemoryRead(1);
+ OutputDummy = InterProcessCommunication.SharedMemory.SharedMemoryWrite(1, ModelicaOutput);
+ end when;
+ OP = ModelicaOutput - ModelicaInput;
+annotation(
+ experiment(StartTime = 0, StopTime = 20, Tolerance = 1e-6, Interval = 0.001));
+
+end ArduBasicRW; \ No newline at end of file