Skip to content

Commit fd938dc

Browse files
author
Rafael Batista Cardoso
committed
Add no mean pvs
1 parent cab84d0 commit fd938dc

14 files changed

+1182
-91
lines changed

Dockerfile

Lines changed: 3 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -251,58 +251,23 @@ RUN cd /opt/etheripIOC/ && \
251251
COPY entrypoint.sh /opt/etheripIOC/entrypoint.sh
252252
ENTRYPOINT [ "/bin/bash", "/opt/etheripIOC/entrypoint.sh" ]
253253

254-
FROM base AS delta
255-
COPY ./ioc/database /opt/etheripIOC/database
256-
COPY ./ioc/iocBoot /opt/etheripIOC/iocBoot
257-
ENV NAME DELTA
258-
ENV CMD Delta.cmd
259-
ENV DEVIP 1.1.1.1
260-
261254
FROM base AS fcplc01
262255
COPY ./ioc/database /opt/etheripIOC/database
263256
COPY ./ioc/iocBoot /opt/etheripIOC/iocBoot
264257
ENV NAME FCPLC01
265-
ENV CMD FCPLC01.cmd
258+
ENV CMD sirius-amb-temp-ioc-1.cmd
266259
ENV DEVIP 10.20.35.211
267260

268261
FROM base AS fcplc02
269262
COPY ./ioc/database /opt/etheripIOC/database
270263
COPY ./ioc/iocBoot /opt/etheripIOC/iocBoot
271264
ENV NAME FCPLC02
272-
ENV CMD FCPLC02.cmd
265+
ENV CMD sirius-amb-temp-ioc-2.cmd
273266
ENV DEVIP 10.20.35.221
274267

275268
FROM base AS fcplc03
276269
COPY ./ioc/database /opt/etheripIOC/database
277270
COPY ./ioc/iocBoot /opt/etheripIOC/iocBoot
278271
ENV NAME FCPLC03
279-
ENV CMD FCPLC03.cmd
272+
ENV CMD sirius-amb-temp-ioc-3.cmd
280273
ENV DEVIP 10.20.35.231
281-
282-
FROM base AS linac
283-
COPY ./ioc/database /opt/etheripIOC/database
284-
COPY ./ioc/iocBoot /opt/etheripIOC/iocBoot
285-
ENV NAME linac
286-
ENV CMD SKID_LINAC.cmd
287-
ENV DEVIP 10.0.38.250
288-
289-
FROM base AS petraV
290-
COPY ./ioc/database /opt/etheripIOC/database
291-
COPY ./ioc/iocBoot /opt/etheripIOC/iocBoot
292-
ENV NAME petraV
293-
ENV CMD SKID_PetraV.cmd
294-
ENV DEVIP 10.0.38.246
295-
296-
FROM base AS petraVII
297-
COPY ./ioc/database /opt/etheripIOC/database
298-
COPY ./ioc/iocBoot /opt/etheripIOC/iocBoot
299-
ENV NAME petraV
300-
ENV CMD SKID_PetraVII.cmd
301-
ENV DEVIP 10.0.38.249
302-
303-
FROM base AS delta_v2
304-
COPY ./ioc/database /opt/etheripIOC/database
305-
COPY ./ioc/iocBoot /opt/etheripIOC/iocBoot
306-
ENV NAME DELTA-V2
307-
ENV CMD Delta_v2.cmd
308-
ENV DEVIP 1.1.1.1

entrypoint.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ set -eu
44
echo "##########################################################################"
55
echo "# ${NAME} - Port ${IOC_PROCSERV_SOCK}"
66
echo "##########################################################################"
7+
chmod +x /opt/etheripIOC/iocBoot/iocetheripIOC/*
78
/usr/local/bin/procServ \
89
--logfile - \
910
--chdir "$(pwd)/iocBoot/iocetheripIOC/" \

etc/SiriusAmbTempPVs.xlsx

45 KB
Binary file not shown.
Lines changed: 216 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,216 @@
1+
2+
record(ai, "UA-Hall-52C:HVAC-PT100-FC1-1:Temperature-Mon"){
3+
field(DTYP, "EtherIP")
4+
field(INP, "@$(PLC) TEAMB01_ST_614_01_1.val")
5+
field(DESC, "FC-614-01/02/03/04 pt100 inp")
6+
field(SCAN, ".1 second")
7+
field(PREC, "5")
8+
field(EGU, "C")
9+
}
10+
11+
record(ai, "UA-Hall-54C:HVAC-PT100-FC1-2:Temperature-Mon"){
12+
field(DTYP, "EtherIP")
13+
field(INP, "@$(PLC) TEAMB02_ST_614_01_2.val")
14+
field(DESC, "FC-614-01/02/03/04 pt100 inp")
15+
field(SCAN, ".1 second")
16+
field(PREC, "5")
17+
field(EGU, "C")
18+
}
19+
20+
record(ai, "UA-Hall-55C:HVAC-PT100-FC1-3:Temperature-Mon"){
21+
field(DTYP, "EtherIP")
22+
field(INP, "@$(PLC) TEAMB03_ST_614_01_3.val")
23+
field(DESC, "FC-614-01/02/03/04 pt100 inp")
24+
field(SCAN, ".1 second")
25+
field(PREC, "5")
26+
field(EGU, "C")
27+
}
28+
29+
record(ai, "UA-Hall-56C:HVAC-PT100-FC1-4:Temperature-Mon"){
30+
field(DTYP, "EtherIP")
31+
field(INP, "@$(PLC) TEAMB04_ST_614_01_4.val")
32+
field(DESC, "FC-614-01/02/03/04 pt100 inp")
33+
field(SCAN, ".1 second")
34+
field(PREC, "5")
35+
field(EGU, "C")
36+
}
37+
38+
record(ai, "UA-Hall-53B:HVAC-PT100-FC1-5:Temperature-Mon"){
39+
field(DTYP, "EtherIP")
40+
field(INP, "@$(PLC) TEAMB05_ST_614_01_5.val")
41+
field(DESC, "FC-614-01/02/03/04 pt100 inp")
42+
field(SCAN, ".1 second")
43+
field(PREC, "5")
44+
field(EGU, "C")
45+
}
46+
47+
record(ai, "UA-Hall-57B:HVAC-PT100-FC1-6:Temperature-Mon"){
48+
field(DTYP, "EtherIP")
49+
field(INP, "@$(PLC) TEAMB06_ST_614_01_6.val")
50+
field(DESC, "FC-614-01/02/03/04 pt100 inp")
51+
field(SCAN, ".1 second")
52+
field(PREC, "5")
53+
field(EGU, "C")
54+
}
55+
56+
record(ai, "UA-Hall-52D:HVAC-PT100-FC1-7:Temperature-Mon"){
57+
field(DTYP, "EtherIP")
58+
field(INP, "@$(PLC) TEAMB07_ST_614_01_7.val")
59+
field(DESC, "FC-614-01/02/03/04 pt100 inp")
60+
field(SCAN, ".1 second")
61+
field(PREC, "5")
62+
field(EGU, "C")
63+
}
64+
65+
record(ai, "UA-Hall-55D:HVAC-PT100-FC2-8:Temperature-Mon"){
66+
field(DTYP, "EtherIP")
67+
field(INP, "@$(PLC) TEAMB08_ST_614_01_8.val")
68+
field(DESC, "FC-614-01/02/03/04 pt100 inp")
69+
field(SCAN, ".1 second")
70+
field(PREC, "5")
71+
field(EGU, "C")
72+
}
73+
74+
record(ai, "UA-Hall-44C:HVAC-PT100-FC9-1:Temperature-Mon"){
75+
field(DTYP, "EtherIP")
76+
field(INP, "@$(PLC) TEAMB01_ST_614_18_1.val")
77+
field(DESC, "FC-614-42/43/44/45 input 1")
78+
field(SCAN, ".1 second")
79+
field(PREC, "5")
80+
field(EGU, "C")
81+
}
82+
83+
record(ai, "UA-Hall-43C:HVAC-PT100-FC9-2:Temperature-Mon"){
84+
field(DTYP, "EtherIP")
85+
field(INP, "@$(PLC) TEAMB02_ST_614_18_2.val")
86+
field(DESC, "FC-614-42/43/44/45 input 2")
87+
field(SCAN, ".1 second")
88+
field(PREC, "5")
89+
field(EGU, "C")
90+
}
91+
92+
record(ai, "UA-Hall-41C:HVAC-PT100-FC9-3:Temperature-Mon"){
93+
field(DTYP, "EtherIP")
94+
field(INP, "@$(PLC) TEAMB03_ST_614_18_3.val")
95+
field(DESC, "FC-614-42/43/44/45 input 3")
96+
field(SCAN, ".1 second")
97+
field(PREC, "5")
98+
field(EGU, "C")
99+
}
100+
101+
record(ai, "UA-Hall-40C:HVAC-PT100-FC9-4:Temperature-Mon"){
102+
field(DTYP, "EtherIP")
103+
field(INP, "@$(PLC) TEAMB04_ST_614_18_4.val")
104+
field(DESC, "FC-614-42/43/44/45 input 4")
105+
field(SCAN, ".1 second")
106+
field(PREC, "5")
107+
field(EGU, "C")
108+
}
109+
110+
record(ai, "UA-Hall-43B:HVAC-PT100-FC9-5:Temperature-Mon"){
111+
field(DTYP, "EtherIP")
112+
field(INP, "@$(PLC) TEAMB05_ST_614_18_5.val")
113+
field(DESC, "FC-614-42/43/44/45 input 5")
114+
field(SCAN, ".1 second")
115+
field(PREC, "5")
116+
field(EGU, "C")
117+
}
118+
119+
record(ai, "UA-Hall-41B:HVAC-PT100-FC9-6:Temperature-Mon"){
120+
field(DTYP, "EtherIP")
121+
field(INP, "@$(PLC) TEAMB06_ST_614_18_6.val")
122+
field(DESC, "FC-614-42/43/44/45 input 6")
123+
field(SCAN, ".1 second")
124+
field(PREC, "5")
125+
field(EGU, "C")
126+
}
127+
128+
record(ai, "UA-Hall-40D:HVAC-PT100-FC9-7:Temperature-Mon"){
129+
field(DTYP, "EtherIP")
130+
field(INP, "@$(PLC) TEAMB07_ST_614_18_7.val")
131+
field(DESC, "FC-614-42/43/44/45 input 7")
132+
field(SCAN, ".1 second")
133+
field(PREC, "5")
134+
field(EGU, "C")
135+
}
136+
137+
record(ai, "UA-Hall-43D:HVAC-PT100-FC9-8:Temperature-Mon"){
138+
field(DTYP, "EtherIP")
139+
field(INP, "@$(PLC) TEAMB08_ST_614_18_8.val")
140+
field(DESC, "FC-614-42/43/44/45 input 8")
141+
field(SCAN, ".1 second")
142+
field(PREC, "5")
143+
field(EGU, "C")
144+
}
145+
146+
record(ai, "UA-Hall-51C:HVAC-PT100-FC10-1:Temperature-Mon"){
147+
field(DTYP, "EtherIP")
148+
field(INP, "@$(PLC) TEAMB01_ST_614_20_1.val")
149+
field(DESC, "FC-614-47/48/49/50 pt100 inp")
150+
field(SCAN, ".1 second")
151+
field(PREC, "5")
152+
field(EGU, "C")
153+
}
154+
155+
record(ai, "UA-Hall-49C:HVAC-PT100-FC10-2:Temperature-Mon"){
156+
field(DTYP, "EtherIP")
157+
field(INP, "@$(PLC) TEAMB02_ST_614_20_2.val")
158+
field(DESC, "FC-614-47/48/49/50 pt100 inp")
159+
field(SCAN, ".1 second")
160+
field(PREC, "5")
161+
field(EGU, "C")
162+
}
163+
164+
record(ai, "UA-Hall-47C:HVAC-PT100-FC10-3:Temperature-Mon"){
165+
field(DTYP, "EtherIP")
166+
field(INP, "@$(PLC) TEAMB03_ST_614_20_3.val")
167+
field(DESC, "FC-614-47/48/49/50 pt100 inp")
168+
field(SCAN, ".1 second")
169+
field(PREC, "5")
170+
field(EGU, "C")
171+
}
172+
173+
record(ai, "UA-Hall-46C:HVAC-PT100-FC10-4:Temperature-Mon"){
174+
field(DTYP, "EtherIP")
175+
field(INP, "@$(PLC) TEAMB04_ST_614_20_4.val")
176+
field(DESC, "FC-614-47/48/49/50 pt100 inp")
177+
field(SCAN, ".1 second")
178+
field(PREC, "5")
179+
field(EGU, "C")
180+
}
181+
182+
record(ai, "UA-Hall-47B:HVAC-PT100-FC10-5:Temperature-Mon"){
183+
field(DTYP, "EtherIP")
184+
field(INP, "@$(PLC) TEAMB05_ST_614_20_5.val")
185+
field(DESC, "FC-614-47/48/49/50 pt100 inp")
186+
field(SCAN, ".1 second")
187+
field(PREC, "5")
188+
field(EGU, "C")
189+
}
190+
191+
record(ai, "UA-Hall-50B:HVAC-PT100-FC10-6:Temperature-Mon"){
192+
field(DTYP, "EtherIP")
193+
field(INP, "@$(PLC) TEAMB06_ST_614_20_6.val")
194+
field(DESC, "FC-614-47/48/49/50 pt100 inp")
195+
field(SCAN, ".1 second")
196+
field(PREC, "5")
197+
field(EGU, "C")
198+
}
199+
200+
record(ai, "UA-Hall-46D:HVAC-PT100-FC10-7:Temperature-Mon"){
201+
field(DTYP, "EtherIP")
202+
field(INP, "@$(PLC) TEAMB07_ST_614_20_7.val")
203+
field(DESC, "FC-614-47/48/49/50 pt100 inp")
204+
field(SCAN, ".1 second")
205+
field(PREC, "5")
206+
field(EGU, "C")
207+
}
208+
209+
record(ai, "UA-Hall-49D:HVAC-PT100-FC10-8:Temperature-Mon"){
210+
field(DTYP, "EtherIP")
211+
field(INP, "@$(PLC) TEAMB08_ST_614_20_8.val")
212+
field(DESC, "FC-614-47/48/49/50 pt100 inp")
213+
field(SCAN, ".1 second")
214+
field(PREC, "5")
215+
field(EGU, "C")
216+
}

0 commit comments

Comments
 (0)