Thin-walled tank/HW02: Difference between revisions

From ASCEND
Jump to navigation Jump to search
Created page with '{{missing}}'
 
SreenathaB (talk | contribs)
No edit summary
Line 1: Line 1:
{{missing}}
REQUIRE "system.a4l";
MODEL my_model;
 
  (* variable *)
  x,y,z,d,a IS_A solver_var;
 
  (* specifications *)
  (* equation *)
        x+y+z = a*d;
        x+y+2*z = 5;
        5*x + 2*y - 3*z = 0;
 
END my_model;

Revision as of 15:25, 4 April 2012

REQUIRE "system.a4l"; MODEL my_model;

 (* variable *)
 x,y,z,d,a IS_A solver_var;
 (* specifications *)
 (* equation *)
       x+y+z = a*d;
       x+y+2*z = 5;
       5*x + 2*y - 3*z = 0;

END my_model;