File: standard_document.sci

package info (click to toggle)
scilab 2.4-1
  • links: PTS
  • area: non-free
  • in suites: potato, slink
  • size: 55,196 kB
  • ctags: 38,019
  • sloc: ansic: 231,970; fortran: 148,976; tcl: 7,099; makefile: 4,585; sh: 2,978; csh: 154; cpp: 101; asm: 39; sed: 5
file content (201 lines) | stat: -rw-r--r-- 5,318 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
function texte = standard_document(objet, k)
//
// standard_document - documentation d'un bloc Scicos
//
// Copyright INRIA
MODELE=3
GRAPHIQUE=2
MACRO=5
FONCTION=1
DEPENDANCE=12
TYPE=10
IDENTIFICATION=15
#ENTREES=2
$ENTREES=5
#SORTIES=3
$SORTIES=6
#ENTREES_EVT=4
#SORTIES_EVT=5
$ENTREES_EVT=7
$SORTIES_EVT=8
//liens
IDENTIFICATION_LIAISON=5
TYPE_COULEUR=7
OBJET_ORIGINE=8
OBJET_DESTINATION=9
//
type_objet = objet(1)
//
select type_objet

case 'Block' then
  //- Initialisations 

  modele = objet(MODELE)
      graphique = objet(GRAPHIQUE)
    macro = objet(MACRO)
  //
  fonction = modele(FONCTION)
  if prod(size(fonction)) > 1 then
    if fonction(2) == 0 then
      language = '0 (Scilab function type Scicos 2.2)'
    elseif fonction(2) == 1 then
      language = '1 (Fortran or C code)'
    elseif fonction(2) == 2 then
      language = '2 (C code)'
    elseif fonction(2) == 3 then
      language = '3 (Scilab function)'
    end
  else
    language = '0 (Scilab function type Scicos 2.2)'
  end
  //
  if modele(TYPE) == 'c' then
    typ = 'continuous'
  else
    typ = 'discrete'
  end
  //
  if modele(DEPENDANCE)(1) then
dependance_u = 'yes'
else
dependance_u = 'no'

end
if modele(DEPENDANCE)(2) then
dependance_t = 'yes'
else
dependance_t = 'no'
end
//
if size(modele) >= IDENTIFICATION then
  identification = modele(IDENTIFICATION)
else
  identification = emptystr()
end

//- Informations generales 
if modele(1)=='super'|modele(1)=='csuper' then
  texte = ['General Informations'; 
	'--------------------';' '
	'object type                : Super Block';   ..
	'Identification             : '+identification; ..
	'Object number in diagram   : '+string(k); ' ';  ..
	'Drawing function           : '+macro;' ']
else
  texte = ['General Informations'; 
         '--------------------';' '
	 'object type                : bloc standard';   ..
	 'Identification             : '+identification; ..
	 'Object number in diagram   : '+string(k); ' ';  ..
	 'Drawing function           : '+macro;           ..
	 'Simulation function        : '+fonction(1);     ..
	 'Simulation Function type   : '+language;' ';    ..
	 'Bloc type                  : '+typ;             ..
         'Direct feed through        : '+dependance_u;    ..
         'Time varying               : '+dependance_t]
  if cpr<>list() then
    cor = cpr(3)
    corinv = cpr(4)
    path=list()
    for kp=1:size(super_path,'*'),path(kp)=super_path(kp);end
    path($+1)=k
    ind=cor(path)
    if ind>0&ind<=size(corinv) then
      txt = ['Compiled structure Index   : '+string(cor(path)); ' ']
    else
      txt = ['Compiled structure Index   : suppressed'; ' ']
    end
  else
    txt = ['Compiled structure Index   : Not available';' ']
  end
  texte=[texte;txt]
end
//- Entrees / sorties 

tableau = ['Port type', 'Number', 'Size', 'Link'; '-', '-', '-', '-']
//- Entrees standard

for i = 1 : min(size(modele(#ENTREES),'*'),size(graphique($ENTREES),'*'))
  tableau = [tableau; 'Regular input', string(i),	..
	  string(modele(#ENTREES)(i)), string(graphique($ENTREES)(i))]
end

//- Sorties standard
for i = 1 : min(size(modele(#SORTIES),'*'),size(graphique($SORTIES),'*'))
  tableau = [tableau; 'Regular output', string(i),	..
	  string(modele(#SORTIES)(i)), string(graphique($SORTIES)(i))]
end
//- Entrees evenements 
for i = 1 : min(size(modele(#ENTREES_EVT),'*'),size(graphique($ENTREES_EVT),'*'))
  tableau = [tableau; 'Event input', string(i),	..
	  string(modele(#ENTREES_EVT)(i)), string(graphique($ENTREES_EVT)(i))]
end
//- Sorties evenements 
for i = 1 : min(size(modele(#SORTIES_EVT),'*'),size(graphique($ENTREES_EVT),'*'))
  tableau = [tableau; 'Event output', string(i),	..
	  string(modele(#SORTIES_EVT)(i)), string(graphique($SORTIES_EVT)(i))]
end
//
texte = [texte; 'Input / output'; 
                '--------------';
		' '
		 tabule(tableau); ' ']
//= Liaisons 
case 'Link' then
  //- Initialisation 
  identification = objet(IDENTIFICATION_LIAISON)
  if objet(TYPE_COULEUR)(2) == 1 then
    sous_type = 'Regular Link'
  else
    sous_type = 'Event link'
  end
  //- Informations generales 
  texte = ['General informations'; 
           '--------------------';' '
	  'Object type                : '+sous_type;
	  'Object Identification      : '+identification'; 
	  'Object number in diagram   : '+string(k); ' ']
  
  from=objet(OBJET_ORIGINE)
  if cpr<>list() then
    if sous_type == 'Regular Link' then 
      while %t
	if scs_m(from(1))(3)(1)=='lsplit' then
	  #link=scs_m(from(1))(2)(5)
	  from=scs_m(#link)(OBJET_ORIGINE)
	else
	  break
	end
      end

      cor = cpr(3)
      path=list()
      for kp=1:size(super_path,'*'),path(kp)=super_path(kp);end
      path($+1)=from(1)
      ind=cor(path)
      kl=cpr(2)('outlnk')(cpr(2)('outptr')(ind)+(from(2)-1))
      beg=cpr(2)('lnkptr')(kl)
      fin=cpr(2)('lnkptr')(kl+1)-1
      txt = ['Compiled link memory zone  : ['+..
		  string(beg)+','+string(fin)+']'; ' ']
    end
  else
    txt = ['Compiled link memory zone  : Not available';' ']
  end
  texte=[texte;txt]   
      
  //- Connexions 

  tableau = [' ', 'Block', 'Port' ; '-', '-', '-'; 
	  'From', string(objet(OBJET_ORIGINE)); 
	  'to', string(objet(OBJET_DESTINATION))]
  //
  texte = [texte; 
          'Connections'; 
          '-----------';' ' 
	  tabule(tableau); ' ']
  //
else
  texte=[]
end