close
Warning:
Can't synchronize with repository "(default)" (/var/svn/tolp does not appear to be a Subversion repository.). Look in the Trac log for more information.
- Timestamp:
-
Sep 15, 2009, 7:56:49 AM (16 years ago)
- Author:
-
Víctor de Buen Remiro
- Comment:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v1
|
v2
|
|
45 | 45 | $BEGIN |
46 | 46 | |
47 | | $ModuleType: primary |
| 47 | $ModuleType : primary; |
48 | 48 | |
49 | 49 | Model.Name = "..."; |
… |
… |
|
70 | 70 | ///////////////////////////////////////////////////////////////////////////// |
71 | 71 | |
72 | | $Output {'Matrix or VMatrix expresion'}; |
| 72 | $Output : {'Matrix or VMatrix expresion'}; |
73 | 73 | |
74 | | $Input {'Matrix or VMatrix expresion'}; |
| 74 | $Input : {'Matrix or VMatrix expresion'}; |
75 | 75 | |
76 | 76 | |
… |
… |
|
98 | 98 | ///////////////////////////////////////////////////////////////////////////// |
99 | 99 | |
100 | | $NonLinearFilters: {'Set of NameBlock's expresion'}; |
| 100 | $NonLinearFilters : {'Set of NameBlock's expresion'}; |
101 | 101 | |
102 | 102 | $END |
… |
… |
|
109 | 109 | 1. Es posible, aunque no obligatorio por compatibilidad hacia atrás, especificar el tipo de módulo en la cabecera del archivo:[[BR]] |
110 | 110 | {{{ |
111 | | $ModuleType: mixture |
| 111 | $ModuleType : mixture; |
112 | 112 | }}} |
113 | 113 | 1. Es necesario marcar de alguna manera las variables que han sido definidas en otros módulos previos, si es que las hay. Esto podría solucionarse mediante la sintaxis similar a la actual pero sustituyendo el valor inicial por la palabra reservada $Extern: [[BR]] |
… |
… |
|
127 | 127 | Se indicará al principio del módulo máster mediante la sintaxis |
128 | 128 | {{{ |
129 | | $Generator monophase; |
| 129 | $Generator : monophase; |
130 | 130 | }}} |
131 | 131 | |
… |
… |
|
149 | 149 | |
150 | 150 | {{{ |
151 | | $Generator sequential; |
| 151 | $Generator : sequential; |
152 | 152 | }}} |
153 | 153 | |
… |
… |
|
155 | 155 | |
156 | 156 | {{{ |
157 | | $Generator parallel; |
| 157 | $Generator : parallel; |
158 | 158 | }}} |
159 | 159 | |
… |
… |
|
173 | 173 | $BEGIN |
174 | 174 | |
| 175 | $ModuleType: master; |
| 176 | |
175 | 177 | Model.Name = "..."; |
176 | 178 | Model.Description = "..."; |
… |
… |
|
179 | 181 | Session.Authors = "..."; |
180 | 182 | |
181 | | $ModuleType: master; |
182 | 183 | |
183 | | $Generator { monophase, sequential or parallel } ; |
| 184 | $Generator : { monophase, sequential or parallel } ; |
184 | 185 | |
185 | | $ModuleChild <primary, mixture or master>: "file_relative_path.bsr"; |
| 186 | $ModuleChild (<primary, mixture or master>) : "file_relative_path.bsr"; |
186 | 187 | ... |
187 | | $ModuleChild <primary, mixture or master>: "file_relative_path.bsr"; |
| 188 | $ModuleChild (<primary, mixture or master>) : "file_relative_path.bsr"; |
188 | 189 | |
189 | 190 | $END |