51{
52 int i;
53 int nbshell, nbvolu, nbtruss, nbbeam, nbspring, nbrbm, nbrbs, nbmass, nb2n, nbused;
54 int nbstruct, nb2nds, nbrb, nbelt, nball;
55 int node_flying=0;
56 int node_rbm_struct=0;
57 int node_mass_elt=0;
58 int node_mass_flying=0;
59 int node_truss_elt=0;
60 int node_beam_elt=0;
61 int node_spring_elt=0;
62 int node_rbs_elt=0;
63
65 {
66
68
69
71
72
74
75
77
78
80
81
83
84
86
87
89
90
92
93
95
96 nbstruct = nbshell + nbvolu;
97 nb2nds = nbtruss + nbbeam + nb2n;
98 nbrb = nbrbm + nbrbs;
99 nbelt = nbstruct + nb2nds + nbspring + nbrb;
100 nball = nbelt + nbmass + nbused;
101
102 if (nball == 0)
103 {
106
107 node_flying++;
108 }
109
110 if ((nbrbm == 1) && ((nbstruct + nb2nds + nbspring + nbrbs) != 0))
111 {
114
115 node_rbm_struct++;
116 }
117
118 if ((nbmass == 1) && (nbelt == 0))
119 {
122
123 node_mass_elt++;
124 }
125
126 if ((nbmass == 1) && (nball == 1))
127 {
130
131 node_mass_flying++;
132 }
133
134 if ((nbtruss == 1) && (nbelt == 1))
135 {
138
139 node_truss_elt++;
140 }
141
142 if ((nbbeam == 1) && (nbelt == 1))
143 {
146
147 node_beam_elt++;
148 }
149
150 if ((nbspring == 1) && (nbelt == 1))
151 {
154
155 node_spring_elt++;
156 }
157
158 if ((nbrbs == 1) && (nbelt == 1))
159 {
161 if ( nbmass == 1)
162 {
164 }
165 else
166 {
168 }
169
170 node_rbs_elt++;
171 }
172
173 }
174
177
180
183
186
189
192
195
198
199}
void analyse_stack_int(int i)
void analyse_call_check(int id)
void analyse_call_error(int type, int id, int mode)