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.

Changes between Version 1 and Version 2 of Ticket #745


Ignore:
Timestamp:
Sep 15, 2009, 7:56:49 AM (16 years ago)
Author:
Víctor de Buen Remiro
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #745 – Description

    v1 v2  
    4545$BEGIN
    4646
    47 $ModuleType: primary
     47$ModuleType : primary;
    4848
    4949Model.Name = "...";
     
    7070/////////////////////////////////////////////////////////////////////////////
    7171
    72 $Output {'Matrix or VMatrix expresion'};
     72$Output : {'Matrix or VMatrix expresion'};
    7373
    74 $Input {'Matrix or VMatrix expresion'};
     74$Input : {'Matrix or VMatrix expresion'};
    7575
    7676
     
    9898/////////////////////////////////////////////////////////////////////////////
    9999
    100 $NonLinearFilters: {'Set of NameBlock's expresion'};
     100$NonLinearFilters : {'Set of NameBlock's expresion'};
    101101
    102102$END
     
    109109 1. Es posible, aunque no obligatorio por compatibilidad hacia atrás, especificar el tipo de módulo en la cabecera del archivo:[[BR]]
    110110{{{
    111 $ModuleType: mixture
     111$ModuleType : mixture;
    112112}}}
    113113 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]]
     
    127127Se indicará al principio del módulo máster mediante la sintaxis
    128128{{{
    129 $Generator monophase;
     129$Generator : monophase;
    130130}}}
    131131
     
    149149
    150150{{{
    151 $Generator sequential;
     151$Generator : sequential;
    152152}}}
    153153
     
    155155
    156156{{{
    157 $Generator parallel;
     157$Generator : parallel;
    158158}}}
    159159
     
    173173$BEGIN
    174174
     175$ModuleType: master;
     176
    175177Model.Name = "...";
    176178Model.Description = "...";
     
    179181Session.Authors = "...";
    180182
    181 $ModuleType: master;
    182183
    183 $Generator { monophase, sequential or parallel } ;
     184$Generator : { monophase, sequential or parallel } ;
    184185
    185 $ModuleChild <primary, mixture or master>: "file_relative_path.bsr";
     186$ModuleChild (<primary, mixture or master>) : "file_relative_path.bsr";
    186187...
    187 $ModuleChild <primary, mixture or master>: "file_relative_path.bsr";
     188$ModuleChild (<primary, mixture or master>) : "file_relative_path.bsr";
    188189
    189190$END