https://pastein.ru/t/VW

  скопируйте уникальную ссылку для отправки


model Pond

  parameter Real Square = 1000;
  parameter Real kEvap = 0.1;
  Real dMevap;

  Val_input T_ext;
  Val_output dMevap_out;

equation

  dMevap = kEvap * Square * (1 + T_ext.Val * 9 / 100);

  dMevap_out.Val = dMevap;

end Pond;