Advertisement
Guest User

Untitled

a guest
Mar 5th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ada 0.44 KB | None | 0 0
  1. procedure calculoFijo is
  2.    begin
  3.    for I in 1..Max loop
  4.          T(I) := (ST1(I-1) + ST2(I-1))/2.0;
  5.          ST2(I) := ST1(I-1) + ((0.13 * 15.0 * SR1(I))-(4.0*(T(I)-ST4(I))))*((9.0*2.0*6.0*10000.0)/(SC1Fijo*4190.0*975.0));  
  6.          ST1(I) := ST2(I) - 11.0;
  7.          SD1(I) := 24.0 *(0.135 + 0.003 * ST2(I-1) - 0.0204 * ST3(I) - 0.001 * SC2Fijo + 0.00004 * ST2(I-1)*SC2Fijo);
  8.       end loop;
  9.    escrituraFichero(False);
  10. end calculoFijo;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement