forked from niyatitotala/CE_Computational_Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.py
453 lines (333 loc) · 15.2 KB
/
index2.py
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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
<<<<<<< HEAD
"""
CE_Computational_Project
Important Variable List:(Ones not included are not important in the overall outlook of the project)
LengthOfBeam
SupportPositionCoordinates[]
NumberOfForces
NumberOfSupports
ForcesActing[]
ReactionForces[]
SumOfForces
MomentOfForces - (from origin)
Using the equation : [Coeff][Resultant] = [EqConstant]
[Resultant] = [CoeffInverse]*[EqConstant]
"""
# importing numpy(not now but can be considered with expansion of project)
import numpy as np
# Initial instructions & guidelines
print(
"NOTE : The origin of the axis is taken at the left end of the beam and all the distances are measured from the origin. \n For the load acting on the beam, downwards direction is considered positive."
)
# Input length of beam
LengthOfBeam = int(input("Enter the length of the beam : "))
# Input number of supports
NumberOfSupports = int(input("Enter the number of supports(1 or 2):"))
if NumberOfSupports == 1:
# No. of Forces Acting
NumberOfForces = int(input("Enter the number of forces acting on the beam : "))
# List Containing The coordinate and magnitude of acting forces respectively (2-D)
ForcesActing = []
for i in range(NumberOfForces):
# input of coordinate and magnitude of force acting
ForcesActingInput = input(
"Enter the value of coordinate and force acting on the bar respectively (with a space in between each values) : "
)
# converting the string of input into list with 2 items - coordinate & magnitude of force
ForcesActingInputList = ForcesActingInput.split(" ")
# Updating the list ForcesActing with recent input
ForcesActing.append(
(float(ForcesActingInputList[0]), float(ForcesActingInputList[1]))
)
# Initializing variable SumOfForces and calculating it
SumOfForces = 0.0
for i in range(0, len(ForcesActing)):
SumOfForces = SumOfForces + ForcesActing[i][1]
print(SumOfForces)
elif NumberOfSupports >= 2:
# Input Coordinates of Support
SupportPositionInput = input(
"Enter the coordinates of the support positions(Single Spacing between the inputs) : "
)
# Converting String of Coordinates into List
SupportPositionCoordinates = SupportPositionInput.split(" ")
# Converting data type from string to float in List
for i in range(0, len(SupportPositionCoordinates)):
SupportPositionCoordinates[i] = float(SupportPositionCoordinates[i])
# No. of Forces Acting
NumberOfForces = int(input("Enter the number of forces acting on the beam : "))
# List Containing The coordinate and magnitude of acting forces respectively (2-D)
ForcesActing = []
for i in range(NumberOfForces):
# input of coordinate and magnitude of force acting
ForcesActingInput = input(
"Enter the value of coordinate and force acting on the bar respectively (with a space in between each values) : "
)
# converting the string of input into list with 2 items - coordinate & magnitude of force
ForcesActingInputList = ForcesActingInput.split(" ")
# Updating the list ForcesActing with recent input
ForcesActing.append(
(float(ForcesActingInputList[0]), float(ForcesActingInputList[1]))
)
# Initializing variable SumOfForces and calculating it
SumOfForces = 0.0
for i in range(0, len(ForcesActing)):
SumOfForces = SumOfForces + ForcesActing[i][1]
# Initializing and calculating moment of forces from the origin
MomentOfForces = 0.0
for i in range(0, len(ForcesActing)):
MomentOfForces = MomentOfForces + ForcesActing[i][0] * ForcesActing[i][1]
print(SumOfForces)
print(MomentOfForces)
#SumOfMoments = MomentOfForces + SumOfConstantMoments
############################################################################
#[Coeff]
# c1 = 0.0
# c2 = 0.0
# d1 = 0.0
# d2 = 0.0
#If the unknowns are forces :
c1 = 1
# c2 = 1
d1 = SupportPositionCoordinates[0]
# d2 = SupportPositionCoordinates[1]
#ColumnToBeAdded = []
#Step 1
Coeff = np.array([[c1],[d1]])
#Step 2
for i in range(0, NumberOfSupports):
NewCoefficient = SupportPositionCoordinates[i]**3
Coeff = np.append(Coeff, [[NewCoefficient]], axis=0)
i = i+1
#Step 3
for j in range(1, NumberOfSupports):
ColumnToBeAdded = np.array([[c1], [SupportPositionCoordinates[j]]])
for i in range(0, NumberOfSupports):
if j < i:
NewCoefficient = (SupportPositionCoordinates[i]-SupportPositionCoordinates[j])**3
ColumnToBeAdded = np.append(ColumnToBeAdded, [[NewCoefficient]], axis=0)
elif j >= i :
NewCoefficient = 0
ColumnToBeAdded = np.append(ColumnToBeAdded, [[NewCoefficient]], axis=0)
i = i+1
Coeff = np.append(Coeff, ColumnToBeAdded, axis=1)
#Step 4
ColumnToBeAdded = np.array([[0], [0]])
for i in range(0, NumberOfSupports):
NewCoefficient = SupportPositionCoordinates[i]
ColumnToBeAdded = np.append(ColumnToBeAdded, [[NewCoefficient]], axis=0)
i = i +1
Coeff = np.append(Coeff, ColumnToBeAdded, axis=1)
#Step 5
ColumnToBeAdded = np.array([[0], [0]])
for i in range(0, NumberOfSupports):
NewCoefficient = 1
ColumnToBeAdded = np.append(ColumnToBeAdded, [[NewCoefficient]], axis=0)
i = i +1
Coeff = np.append(Coeff, ColumnToBeAdded, axis=1)
print(Coeff)
###############################################################################
# [EqConstant]
EqConstant = np.array([[SumOfForces], [MomentOfForces]])
#NewCoefficient = 0.0
#print(EqConstant)
#print(ForcesActing[0][0])
#print(ForcesActing[1][0])
#print(ForcesActing[2][0])
#print(ForcesActing[3][0])
for i in range(0, NumberOfSupports):
NewCoefficient = 0
var2 = 0
if SupportPositionCoordinates[i] > ForcesActing[var2][0]:
while SupportPositionCoordinates[i] > ForcesActing[var2][0]:
InstantaneousForceSum = ForcesActing[var2][1]*((SupportPositionCoordinates[i] - ForcesActing[var2][0])**3)
NewCoefficient = NewCoefficient + InstantaneousForceSum
var2 = var2 +1
if (var2 >= len(ForcesActing)):
break
else:
NewCoefficient = 0
EqConstant = np.append(EqConstant, [[NewCoefficient]], axis=0)
print(EqConstant)
##########################################################################################
# Initializing list of the Reaction Forces
#ReactionForces = []
CoeffInverse = np.linalg.inv(Coeff)
#print(CoeffInverse)
Resultant = np.dot(CoeffInverse,EqConstant)
print ("resultant array", str(Resultant))
'''
# Calculating Reaction Force for support 1
ReactionForce1 = (MomentOfForces - SupportPositionCoordinates[1] * SumOfForces) / (
SupportPositionCoordinates[0] - SupportPositionCoordinates[1]
)
# Initializing list of the Reaction Forces
ReactionForces = []
# Updating the Reaction Forces list with both the reaction forces
ReactionForces.append(ReactionForce1)
ReactionForces.append((SumOfForces - ReactionForce1))
# Test Run
else:
print("Error")
=======
"""
CE_Computational_Project
Important Variable List:(Ones not included are not important in the overall outlook of the project)
LengthOfBeam
SupportPositionCoordinates[]
NumberOfForces
NumberOfSupports
ForcesActing[]
ReactionForces[]
SumOfForces
MomentOfForces - (from origin)
Using the equation : [Coeff][Resultant] = [EqConstant]
[Resultant] = [CoeffInverse]*[EqConstant]
"""
# importing numpy(not now but can be considered with expansion of project)
import numpy as np
# Initial instructions & guidelines
print(
"NOTE : The origin of the axis is taken at the left end of the beam and all the distances are measured from the origin. \n For the load acting on the beam, downwards direction is considered positive."
)
# Input length of beam
LengthOfBeam = int(input("Enter the length of the beam : "))
# Input number of supports
NumberOfSupports = int(input("Enter the number of supports(1 or 2):"))
if NumberOfSupports == 1:
# No. of Forces Acting
NumberOfForces = int(input("Enter the number of forces acting on the beam : "))
# List Containing The coordinate and magnitude of acting forces respectively (2-D)
ForcesActing = []
for i in range(NumberOfForces):
# input of coordinate and magnitude of force acting
ForcesActingInput = input(
"Enter the value of coordinate and force acting on the bar respectively (with a space in between each values) : "
)
# converting the string of input into list with 2 items - coordinate & magnitude of force
ForcesActingInputList = ForcesActingInput.split(" ")
# Updating the list ForcesActing with recent input
ForcesActing.append(
(float(ForcesActingInputList[0]), float(ForcesActingInputList[1]))
)
# Initializing variable SumOfForces and calculating it
SumOfForces = 0.0
for i in range(0, len(ForcesActing)):
SumOfForces = SumOfForces + ForcesActing[i][1]
print(SumOfForces)
elif NumberOfSupports >= 2:
# Input Coordinates of Support
SupportPositionInput = input(
"Enter the coordinates of the support positions(Single Spacing between the inputs) : "
)
# Converting String of Coordinates into List
SupportPositionCoordinates = SupportPositionInput.split(" ")
# Converting data type from string to float in List
for i in range(0, len(SupportPositionCoordinates)):
SupportPositionCoordinates[i] = float(SupportPositionCoordinates[i])
# No. of Forces Acting
NumberOfForces = int(input("Enter the number of forces acting on the beam : "))
# List Containing The coordinate and magnitude of acting forces respectively (2-D)
ForcesActing = []
for i in range(NumberOfForces):
# input of coordinate and magnitude of force acting
ForcesActingInput = input(
"Enter the value of coordinate and force acting on the bar respectively (with a space in between each values) : "
)
# converting the string of input into list with 2 items - coordinate & magnitude of force
ForcesActingInputList = ForcesActingInput.split(" ")
# Updating the list ForcesActing with recent input
ForcesActing.append(
(float(ForcesActingInputList[0]), float(ForcesActingInputList[1]))
)
# Initializing variable SumOfForces and calculating it
SumOfForces = 0.0
for i in range(0, len(ForcesActing)):
SumOfForces = SumOfForces + ForcesActing[i][1]
# Initializing and calculating moment of forces from the origin
MomentOfForces = 0.0
for i in range(0, len(ForcesActing)):
MomentOfForces = MomentOfForces + ForcesActing[i][0] * ForcesActing[i][1]
print(SumOfForces)
print(MomentOfForces)
#SumOfMoments = MomentOfForces + SumOfConstantMoments
############################################################################
c1 = 0.0
c2 = 0.0
d1 = 0.0
d2 = 0.0
#If the unknowns are forces :
c1 = 1
c2 = 1
d1 = SupportPositionCoordinates[0]
d2 = SupportPositionCoordinates[1]
ColumnToBeAdded = []
Coeff = np.array([[c1],[d1]])
for i in range(0, NumberOfSupports):
NewCoefficient = SupportPositionCoordinates[i]**3
Coeff = np.vstack((Coeff, NewCoefficient))
i = i +1
for j in range(1, NumberOfSupports):
ColumnToBeAdded = np.array([c2], SupportPositionCoordinate[j])
for i in range(0, NumberOfSupports):
if j < i:
NewCoefficient = (SupportPositionCoordinates[j]-SupportPositionCoordinates[i])**3
ColumnToBeAdded = np.vstack((ColumnToBeAdded, NewCoefficient))
i = i +1
Coeff = np.column_stack((Coeff, ColumnToBeAdded))
#Last 2 Columns
ColumnToBeAdded = np.array([0],[0])
for i in range(0, NumberOfSupports):
NewCoefficient = SupportPositionCoordinates[i]
ColumnToBeAdded = np.vstack((ColumnToBeAdded, NewCoefficient))
i = i +1
Coeff = np.column_stack((Coeff, ColumnToBeAdded))
#Last column
ColumnToBeAdded = np.array([0],[0])
for i in range(0, NumberOfSupports):
NewCoefficient = 1
ColumnToBeAdded = np.vstack((ColumnToBeAdded, NewCoefficient))
i = i +1
Coeff = np.column_stack((Coeff, ColumnToBeAdded))
###############################################################################
#print(Coeff)
EqConstant = np.array([[SumOfForces], [MomentOfForces]])
NewCoefficient = 0.0
var1 = 0
for var1 in range(0, NumberOfSupports):
NewCoefficient = 0
var2 = 0
if SupportPositionCoordinates[var1] > ForcesActing[var2][0]:
while SupportPositionCoordinates[var1] > ForcesActing[var2][0]:
InstantaneousForceSum = ForcesActing[var2][1]*((SupportPositionCoordinates[var1] - ForcesActing[var2][0])**3)
NewCoefficient = NewCoefficient + InstantaneousForceSum
if (var2 < len(ForcesActing)):
var2 = var2 +1
else:
NewCoefficient = 0
NewColumn = np.array([NewCoefficient])
EqConstant = np.vstack((EqConstant, NewColumn))
var1 = var1 +1
print(EqConstant)
##########################################################################################
# Initializing list of the Reaction Forces
#ReactionForces = []
CoeffInverse = np.linalg.inv(Coeff)
#print(CoeffInverse)
Resultant = np.dot(CoeffInverse,EqConstant)
print ("resultant array", str(Resultant))
'''
# Calculating Reaction Force for support 1
ReactionForce1 = (MomentOfForces - SupportPositionCoordinates[1] * SumOfForces) / (
SupportPositionCoordinates[0] - SupportPositionCoordinates[1]
)
# Initializing list of the Reaction Forces
ReactionForces = []
# Updating the Reaction Forces list with both the reaction forces
ReactionForces.append(ReactionForce1)
ReactionForces.append((SumOfForces - ReactionForce1))
# Test Run
else:
print("Error")
>>>>>>> d8bde551757028d6bcdf80ecaa21dc8567a62647
5'''