Advertisement
Guest User

Untitled

a guest
Apr 9th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ada 0.60 KB | None | 0 0
  1.    task body Control_campo_solar is
  2.       ST1: TemperList;
  3.       ST2: TemperList;
  4.       ST3: TemperList;
  5.       ST4: TemperList;
  6.       SR1: TemperList;
  7.    begin
  8.       loop
  9.       LeerTemperaturas(ST1 => ST1,
  10.                        ST2 => ST2,
  11.                        ST3 => ST3,
  12.                        ST4 => ST4);
  13.       LeerRadiacion(RAD => SR1);
  14.       CalculoSC1(SR1 => SR1,
  15.                  ST4 => ST4,
  16.                  ST2 => ST2,
  17.                  SC1 => SC1);
  18.          EscribirSC1(SC1 => SC1);
  19.          delay(5.0); -- El doble que control de seguridad
  20.       end loop;
  21.    end Control_campo_solar;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement