Python Programs
Python Programs
import math
# function for finding roots
def findRoots(a, b, c):
dis_form = b * b - 4 * a * c
sqrt_val = math.sqrt(abs(dis_form))
if dis_form > 0:
print(" real and different roots ")
print((-b + sqrt_val) / (2 * a))
print((-b - sqrt_val) / (2 * a))
elif dis_form == 0:
print(" real and same roots")
print(-b / (2 * a))
else:
print("Complex Roots")
print(- b / (2 * a), " + i", sqrt_val)
print(- b / (2 * a), " - i", sqrt_val)
a = int(input('Enter a:'))
b = int(input('Enter b:'))
c = int(input('Enter c:'))
# If a is 0, then incorrect equation
if a == 0:
print("Input correct quadratic equation")
else:
findRoots(a, b, c)
OUTPUT:
1
PROGRAM-2
Compare the efficiency of Carnot Cycle whose source and sink temperature are
given in degree celcius with a heat engine whose source and sink enthalphy are
given.
OUTPUT:
2
PROGRAM-3
Program to draw an equation represented as Y = Z*X pow a + C
OUTPUT:
3
PROGRAM-5
Create numpy 3d-array.
import numpy as np
# create numpy 3d-array
rows_a = int(input("Enter the Number of rows for the first matrix: " ))
column_a = int(input("Enter the Number of Columns for the first matrix: "))
print("Enter the elements of First Matrix:")
matrix_a= [[int(input()) for i in range(column_a)] for i in range(rows_a)]
print("First Matrix is: ")
for n in matrix_a:
print(n)
# finding eigenvalues and eigenvectors
w,v2=np.linalg.eig(matrix_a)
# printing eigen values
print("Printing the Eigen values of the given square array:\n", w)
# printing eigen vectors
print("Printing Right eigen vectors of the given square array:\n", v2)
OUTPUT:
4
Program-6
Plane Stresses Program.
import math
sigma_x = float(input("Stress in x dir = "))
sigma_y = float(input("Stress in y dir = "))
tau_xy = float(input("Shear stress = "))
theta = int(input("Plane angle = "))
print("Results:")
print(["theta","sigmaN","TAU","sigmaR"])
for theta in range(1,45):
sigma_n = ((sigma_x+sigma_y) + (sigma_x-sigma_y)*(math.cos(math.radians(2*theta)))) / 2 + (tau_xy*
(math.sin(math.radians(2*theta))))
shear_stress = ((sigma_x-sigma_y)*(math.sin(math.radians(2*theta)))) / 2 - (tau_xy*
(math.cos(math.radians(2*theta))))
res_stress = math.sqrt((sigma_n ** 2) + (shear_stress ** 2))
sigma_1 = ((sigma_x + sigma_y) + math.sqrt((sigma_x - sigma_y) ** 2 + 4 * (tau_xy ** 2))) / 2
sigma_2 = ((sigma_x + sigma_y) - math.sqrt((sigma_x - sigma_y) ** 2 + 4 * (tau_xy ** 2))) / 2
if tau_xy==0:
tau_max=((sigma_x-sigma_y)/2)
print("Maximum Shear Stress = ", end =" ")
print (tau_max)
else:
tau_max=((sigma_1-sigma_2)/2)
print("Maximum Shear Stress = ", end =" ")
print (tau_max)
list=[theta,round(sigma_n,2),round(shear_stress,2),round(res_stress,2)]
print(list)
print("sigma1","sigma2","taumax")
print(sigma_1,sigma_2,tau_max)
#complete...........
print("Normal stress = ", end = " ")
print(sigma_n)
print("Shear Stress = ", end = " ")
print(shear_stress)
print("Resultant Stress = ", end = " ")
print(res_stress)
print("Major Principal Stress = ", end = " ")
print(sigma_1)
sigma_2 = ((sigma_x+sigma_y) - math.sqrt((sigma_x-sigma_y)**2 + 4*(tau_xy**2))) / 2
print("Minor Principal Stress = ", end = " ")
print(sigma_2)
5
OUTPUT:
6
Program-7
Program to draw and calculate the stresses using Mohr Circle Diagram.
def mohcircle():
import numpy as np
import matplotlib.pyplot as plt
import math
sigma_x = float(input('sigma_x = '))
sigma_y = float(input('sigma_y = '))
tau_xy = float(input('tau_xy = '))
u = input('stress unit = ')
w = float(input("Angle( in degrees) of plane's axis from x axis(+ve counter clockwise), theta = "))
theta = math.radians(w)
R = np.sqrt(0.25 * (sigma_x - sigma_y) ** 2 + (tau_xy) ** 2)
sigma_avg = (sigma_x + sigma_y) / 2
Psi = np.linspace(0, 2 * np.pi, 360)
x = sigma_avg + R * np.cos(Psi)
y = R * (np.sin(Psi))
Phi1 = math.degrees(0.5 * math.atan(2 * tau_xy / (sigma_x - sigma_y)))
Phi2 = Phi1 + 90
sigma_theta1 = sigma_avg + R * np.cos(2 * np.radians(Phi1) + 2 * theta)
sigma_theta2 = sigma_avg + R * np.cos(2 * np.radians(Phi1) + 2 * theta + np.pi)
tau_theta = R * np.sin(2 * np.radians(Phi1) + 2 * theta)
print(f'''
Radius, R = v(0.25*(sigma_x-sigma_y)^2 + tau_xy^2)
= v(0.25*({sigma_x}-{sigma_y})^2 + {tau_xy}^2) ={R} {u}
Average Stress,(acts at the Center of Mohr's Circle)
= sigma_avg = (sigma_x + sigma_y)/2 = ({sigma_x} + {sigma_y})/2 = {sigma_avg} {u}
Principal Stresses
sigma_1 = sigma_avg + R = {sigma_avg} + {R} = {sigma_avg + R} {u}
sigma_2 = sigma_avg - R = {sigma_avg} - {R} = {sigma_avg - R} {u}
Angle Phi1 it makes with x-axis,
Phi1 = 0.5(atan(2*tau_xy/(sigma_x - sigma_y)) = 0.5 * atan(2*{tau_xy}/({sigma_x} - {sigma_y})) =
{Phi1}
degrees
Angle sigma_2 makes with x-axis = Phi2 = Phi1 + 90 = {Phi2} degrees
Maximum Shear Stress = tau_max = R = {R} {u}
It occurs at, a = Phi1 + 45 = {Phi1 + 45} degrees
Stresses at a plane with axis at theta anticlockwise from x axis,
sigma_theta1 = sigma_avg + R* Cos(2Phi1 + 2theta) = {sigma_avg} + {R}* Cos({2 * Phi1 + 2 * theta})
= {sigma_theta1}, {u}
sigma_theta2 = sigma_avg + R* Cos(2Phi1 + 2theta + pi) =
{sigma_theta2} {u}
tau_theta = R*Sin(2*Phi1 + 2*theta) = {R * np.sin(2 * np.radians(Phi1) + 2 * theta)} {u}
''')
plt.plot(x, y)
plt.plot([sigma_avg - R - 10, sigma_avg + R + 10], [0, 0], linestyle='--', color='black')
plt.plot([sigma_avg, sigma_avg], [-R - 10, R + 10], linestyle='--', color='black')
plt.plot([sigma_x, sigma_y], [tau_xy, -tau_xy], [sigma_x, sigma_x], [0, tau_xy], [sigma_y, sigma_y], [0, -
tau_xy],
7
linestyle='-', color='brown')
plt.plot([sigma_theta1, sigma_theta2], [tau_theta, -tau_theta], [sigma_theta1, sigma_theta1], [0, tau_theta],
[sigma_theta2, sigma_theta2], [0, -tau_theta], linestyle='--', color='red')
plt.xlabel('sigma_ (MPa)')
plt.ylabel('tau_ (MPa)')
plt.title("Mohr's Circle")
plt.show()
mohcircle()
v = input('Exit? y/n ')
while v == "n":
mohcircle()
v = input('Exit? y/n ')
exit()
OUTPUT:
8
Program-8
Program to Calculate the Bending Stresses.
print("BENDING STRESSES IN BEAMS")
print("ENTER THE BEAM TYPE. THE CALCULATIONS ARE FOR SIMPLY SUPPORTED
DETERMINATE BEAMS ONLY")
l = float(input("Enter the length of the beam in meters : "))
z=int(input("Enter 1 for Simply supported beam with central point load and 2 for simply supported beam
with uniform UDL along its length "))
if z ==1:
W = float(input("Enter the magnitude of point load in N: "))
M = W*l/4
else:
w = float(input("Enter the magnitude of UDL in N/m :"))
M = w*l*l/8
print("Enter the cross section type")
t=int(input("Enter 1 for rectangular section and 2 for circular section : "))
if t == 1:
b=float(input("Enter the width of the section in mm :"))
d=float(input("Enter the depth of the section in mm: "))
Ir=(b*d*d*d)/12
yr=d/2
print("Moment of Inertia about netutral axis: ",Ir)
print("Distance of Outermost layer from Neutral axis :",yr)
sigma = M*yr/Ir
print("Bending Stresses in newton per meter square :",sigma*pow(10,9))
else:
dc=float(input("Enter the diameter in mm: "))
Ic=(3.14*(dc**4)/64)
yc=dc/2
print("Moment of Inertia about netutral axis: ",Ic)
print("Distance of Outermost layer from Neutral axis :",yc)
sigma = M*yc/Ic
print("Bending Stresses in newton per meter square :",sigma*pow(10,9))
OUTPUT:
9
Program-10
Program to calculate the Deflection of Beams of Standard Cases.
OUTPUT:
10
Program-11
Program to Calculate the Eulers Crippling Load for Long Column.
l=float(input("Enter the length of the column in meters:"))
e=float(input("Enter modulus of elasticity in Newton per meter square:"))
cs=float(input("Enter the crushing stress in Newton per meter square:"))
a=float(input("Enter the value of Rankine constant:"))
print("Enter 1 for Rectangular cross section")
print("Enter 2 for circular cross section")
s=int(input("Enter choice for Cross section:"))
if s==1:
b=float(input("Enter the width in mm:"))
d=float(input("Enter the depth in mm:"))
I=(b*d*d*d)/12
A=b*d
c=I/A
K=pow(c,0.5)
elif s==2:
d=float(input("Enter the diamter in mm:"))
I=(3.14*d*d*d*d)/64
A= (3.14*d*d)/4
c=I/A
K=pow(c,0.5)
print("Enter 1 for both ends hinged column")
print("Enter 2 for one end fixed and other free")
print("Enter 3 for both ends fixed")
print("Enter 4 for one end fixed and other hinged")
z=int(input("Enter the choice for type of column:"))
if z==1:
le=l
Pcr=(3.14*3.14*e*I*pow(10,-12))/(le*le)
Pc= cs*A*pow(10,-6)
Pr=(cs*A*pow(10,-6))/(1+a*pow(le/K,2)*pow(10,6))
elif z==2:
le=2*l
Pcr=(3.14*e*I*pow(10,-12))/(le*le)
Pc=cs*A*pow(10,-6)
Pr=(cs*A*pow(10,-6))/(1+a*pow(le/K,2)*pow(10,6))
elif z==3:
le=l/2
Pcr=(3.14*e*I*pow(10,-12))/(le*le)
Pc=cs*A*pow(10,-6)
Pr=(cs*A*pow(10,-6))/(1+a*pow(le/K,2)*pow(10,6))
elif z==4:
le=l/1.414
Pcr=(3.14*e*I*pow(10,-12))/(le*le)
Pc=cs*A*pow(10,-6)
Pr=(cs*A*pow(10,-6))/(1+a*pow(le/K,2))
12
Program-12
Thin Cylinders Program.
13
OUTPUT:
14
PROGRAM-4
class Data:
self.x = x
self.y = y
# Function to calculate
# the inverse interpolation
def inv_interpolate(d: list, n: int,
x=0
for i in range(n):
# Calculate each term
# of the given formula
xi = d[i].x
for j in range(n):
if j != i:
xi = (xi * (y - d[j].y) /
(d[i].y - d[j].y))
x += xi
return x
# Driver Code
15
if __name__ == "__main__":
# Sample dataset of 4 points
# Here we find the value
# of x when y = 4.5
d = [Data(2.27, 2.3),
Data(3.25, 2.95),
Data(3.5, 3.5),
Data(4.6, 5.1)]
# Size of dataset
n=4
# Sample y value
y = 4.5
# Using the Inverse Interpolation
# function to find the
OUTPUT:
16