User:SreenathaB: Difference between revisions
SreenathaB (talk | contribs) |
SreenathaB (talk | contribs) |
||
| Line 24: | Line 24: | ||
Below are few screenshots of ASCEND running in my system. The first image is for the above model that I've written and the second is for "vessel.a4c" which is present at the models directory of ascend trunk code(http://code.ascend4.org/viewvc/code/trunk/models/). | Below are few screenshots of ASCEND running in my system. The first image is for the above model that I've written and the second is for "vessel.a4c" which is present at the models directory of ascend trunk code(http://code.ascend4.org/viewvc/code/trunk/models/). | ||
* | *[[File:ascend-1.png|ascend-1.png]] | ||
*[[File:ascend-2.png|ascend-2.png]] | |||
Revision as of 00:46, 6 April 2012
I am a Computer Science and Engineering student at "International Institute of Information Technology, Hyderabad"(IIITH) interested in GUI development for applications. Currently, I am involved in developing the PyGTK GUI of ASCEND.
ASCEND experience
Below is the first ASCEND model I've written. The below code models a system of linear equations with four variables(specified as solver_var) although one of them has a fixed value.
REQUIRE "system.a4l"; MODEL my_model; (* variable *) x,y,z,d IS_A solver_var; (* specifications *) d = 1.0; (* equation *) x+y+z = 6*d; x+y+2*z = 5; 5*x + 2*y - 3*z = 0; END my_model;
Hoping to write more complex models involving constructs, loops, METHODS and other aspects of the ASCEND modelling environment. Below are few screenshots of ASCEND running in my system. The first image is for the above model that I've written and the second is for "vessel.a4c" which is present at the models directory of ascend trunk code(http://code.ascend4.org/viewvc/code/trunk/models/).

