source: trunk/sample/miscellaneous/sample_arrays2.mso @ 289

Last change on this file since 289 was 176, checked in by Argimiro Resende Secchi, 17 years ago

Fix some new language syntax.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 1.3 KB
Line 
1#*-------------------------------------------------------------------
2* EMSO Model Library (EML) Copyright (C) 2004 - 2007 ALSOC.
3*
4* This LIBRARY is free software; you can distribute it and/or modify
5* it under the therms of the ALSOC FREE LICENSE as available at
6* http://www.enq.ufrgs.br/alsoc.
7*
8* EMSO Copyright (C) 2004 - 2007 ALSOC, original code
9* from http://www.rps.eng.br Copyright (C) 2002-2004.
10* All rights reserved.
11*
12* EMSO is distributed under the therms of the ALSOC LICENSE as
13* available at http://www.enq.ufrgs.br/alsoc.
14*
15*----------------------------------------------------------------------
16* Author: Rafael de Pelegrini Soares
17* $Id: sample_arrays2.mso 176 2007-03-04 04:56:54Z arge $
18*--------------------------------------------------------------------*#
19
20
21Model Arrays
22        PARAMETERS
23        Dimension  as Integer(Brief="Integer dimension", Default=3);
24        Scalar as Real(Default=1);
25
26        VARIABLES
27        Var1(Dimension,Dimension) as Real(Default=1);
28        Var2(Dimension,Dimension) as Real(Default=1);
29
30        EQUATIONS
31
32        diff(Var1(1,1))*'s' = Var2(1,2);
33       
34        for i in [2 : Dimension-1]
35                diff(Var1(1,i))*'s' = Var2(1,i-1)+Var2(1,i+1);
36        end
37
38        diff(Var1(1,Dimension))*'s' = Var2(1,Dimension);
39        diff(Var1(2:Dimension,:))*'s' = Scalar*Var2(2:Dimension,:);
40
41        exp(Scalar)*Var2 = sin(time*'rad/s');
42end
43
44FlowSheet SampleArrays
45
46        DEVICES
47        dev1 as Arrays;
48
49        INITIAL
50        dev1.Var1 = -1;
51
52        OPTIONS
53        TimeStep = 0.1;
54        TimeEnd = 2*3.1415;
55end
Note: See TracBrowser for help on using the repository browser.