-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchfem.m
301 lines (291 loc) · 8.34 KB
/
archfem.m
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
% ========================================================
% Herramienta realizada por estudiantes en el curso
% Metodos Computacionales Aplicados al Calculo Estructural
%
% v1.0 Noviembre de 2014 - Analisis lineal de vigas curvas - MC/YR/FV
% v2.0 Noviembre de 2015 - Implementacion de cargas puntuales - MC
% v3.0 Noviembre de 2017 - Analisis no lineal de arcos - MC
%
% Mihdi Caballero / Yessica Rodriguez / Francisco Vidovich
% Enviar dudas y sugerencias a [email protected]
% Introduccion al programa y eleccion de tipo de problema
%
% Cerramos todo lo anterior abierto y borramos todas las variables existentes
%
close all, clc, clear all
disp(' ===========================================================================')
disp(' ===========================================================================')
disp(' ______ ______ ______ __ __ ______ ______ __ __ ')
disp(' /\ __ \ /\ == \ /\ ___\ /\ \_\ \ /\ ___\/\ ___\ /\ `-./ \ ')
disp(' \ \ __ \\ \ __< \ \ \____\ \ __ \\ \ __\\ \ __\ \ \ \-./\ \ ')
disp(' \ \_\ \_\\ \_\ \_\\ \_____\\ \_\ \_\\ \_\ \ \____ \\ \_\ \ \_\ ')
disp(' \/_/\/_/ \/_/ /_/ \/_____/ \/_/\/_/ \/_/ \/_____/ \/_/ \/_/ ')
disp('')
disp(' ===========================================================================')
disp(' ===========================================================================')
disp('')
disp(' Choose language Elija idioma')
disp(' 1 = English 2 = Espanol')
try
Language = input(' ans: ') ;
while length(Language) == 0 || (Language ~= 1 & Language ~= 2)
disp(" That's not an anavailable option, choose again. \n Esa no es una opcion disponible, elija de nuevo")
Language = input(' ans: ') ;
end
%
catch
disp(" The option entered is not correct, try again. \n La opcion ingresada no es correcta, pruebe de nuevo.")
Language = input(' ans: ') ;
while length(Language) == 0 || (Language ~= 1 & Language ~= 2)
disp(" That's not an anavailable option, choose again. \n Esa no es una opcion disponible, elija de nuevo")
Language = input(' ans: ') ;
end
%
end
%
if Language == 1
%
disp(' ===========================================================================')
disp(' ========================== ARCHES ANALYSIS PROGRAM ========================')
disp(' ===========================================================================')
%
printf('\n Choose which type of arch would you like to analyze: \n\n')
disp(' 1 = Circular arch ')
disp(' , - , ')
disp(' , " " , ')
disp(' , , ')
disp(' , , ')
disp(' ^ ^ ')
disp('')
disp(' 2 = Parabolic arch')
disp(' , - , ')
disp(' ," ", ')
disp(' , , ')
disp(' , , ')
disp(' , , ')
disp(' ^ ^ ')
disp('')
disp(' 3 = Catenary arch')
disp(' ,-, ')
disp(' ," ", ')
disp(' , , ')
disp(' , , ')
disp(' , , ')
disp(' ^ ^ ')
disp('')
%
try
tipo = input(' Type: ') ;
while length(tipo) == 0 || (tipo ~= 1 & tipo ~= 2 & tipo ~= 3)
disp(" That's not an anavailable option, choose again")
tipo = input(' Type: ') ;
end
%
catch
disp(' The option entered is not correct, try again')
tipo = input(' Type: ') ;
while length(tipo) == 0 || (tipo ~= 1 & tipo ~= 2 & tipo ~= 3)
disp(" That's not an anavailable option, choose again")
tipo = input(' Type: ') ;
end
%
end
if tipo == 1
disp('')
disp(' Select type of analysis')
disp(' 1: Linear static analysis')
disp(' 2: Nonlinear static analysis'); analysis = input(' Type: ') ;
if analysis == 2
disp(' Set imperfection case (1: yes 0:no):')
addimperfection = input('');
end
disp('')
disp(' Edit the input values for a circular arch.')
disp(' If you have already entered the input values, saved the file and wish')
disp(' to continue, press Enter.') ; input('') ;
cd Source
pre_circular
if ap_error == 1
cd ..
return
end
if nod_error == 1
cd ..
return
end
if analysis == 1
Process
else
setini
process_NL
end
cd posProcess
ploteos
output
cd ..
cd ..
elseif tipo ==2
disp('')
disp(' Edit the input values for this type of arch.')
disp(' If you have already entered the input values, saved the file and wish')
disp(' to continue, press Enter.') ; input('') ;
cd Source
cd preProcess
pre_parabolico
cd ..
if ap_error == 1
cd ..
return
end
if nod_error == 1
cd ..
return
end
Process
cd posProcess
ploteos
output
cd ..
cd ..
else
disp('')
disp(' Edit the input values for this type of arch.')
disp(' If you have already entered the input values, saved the file and wish')
disp(' to continue, press Enter.') ; input('') ;
cd Source
cd preProcess
pre_catenaria
cd ..
if ap_error == 1
cd ..
return
end
if nod_error == 1
cd ..
return
end
Process
cd posProcess
ploteos
output
cd ..
cd ..
end
elseif Language == 2
%
disp(' ===========================================================================')
disp(' ======================= PROGRAMA DE ANALISIS DE ARCOS =====================')
disp(' ===========================================================================')
%
printf('\n Elija que tipo de arco quiere estudiar: \n\n')
disp(' 1 = Arco con forma circular ')
disp(' , - , ')
disp(' , " " , ')
disp(' , , ')
disp(' , , ')
disp(' ^ ^ ')
disp('')
disp(' 2 = Arco con forma parabolica')
disp(' , - , ')
disp(' ," ", ')
disp(' , , ')
disp(' , , ')
disp(' , , ')
disp(' ^ ^ ')
disp('')
disp(' 3 = Arco con forma catenaria')
disp(' ,-, ')
disp(' ," ", ')
disp(' , , ')
disp(' , , ')
disp(' , , ')
disp(' ^ ^ ')
disp('')
%
try
tipo = input(' Tipo: ') ;
while length(tipo) == 0 || (tipo ~= 1 & tipo ~= 2 & tipo ~= 3)
disp(' Esa no es una opcion disponible, elija de nuevo')
tipo = input(' Tipo: ') ;
end
%
catch
disp(' La opcion ingresada no es correcta, pruebe de nuevo')
tipo = input(' Tipo: ') ;
while length(tipo) == 0 || (tipo ~= 1 & tipo ~= 2 & tipo ~= 3)
disp(' Esa no es una opcion disponible, elija de nuevo')
tipo = input(' Tipo: ') ;
end
%
end
if tipo == 1
disp('')
disp(' Edite los valores de entrada para este tipo de arco.')
disp(' Si ya ha ingresado los datos de entrada, guardado el archivo y desea')
disp(' continuar, oprima Enter.') ; input('') ;
cd Source
cd preProcess
pre_circular
cd ..
if ap_error == 1
cd ..
return
end
if nod_error == 1
cd ..
return
end
Process
cd posProcess
ploteos
output
cd ..
cd ..
elseif tipo ==2
disp('')
disp(' Edite los valores de entrada para este tipo de arco.')
disp(' Si ya ha ingresado los datos de entrada, guardado el archivo y desea')
disp(' continuar, oprima Enter.') ; input('') ;
cd Source
cd preProcess
pre_parabolico
cd ..
if ap_error == 1
cd ..
return
end
if nod_error == 1
cd ..
return
end
Process
cd posProcess
ploteos
output
cd ..
cd ..
else
disp('')
disp(' Edite los valores de entrada para este tipo de arco.')
disp(' Si ya ha ingresado los datos de entrada, guardado el archivo y desea')
disp(' continuar, oprima Enter.') ; input('') ;
cd Source
cd preProcess
pre_catenaria
cd ..
if ap_error == 1
cd ..
return
end
if nod_error == 1
cd ..
return
end
Process
cd posProcess
ploteos
output
cd ..
cd ..
end
end