Python: Pressure Value Calculation Program Under Sea Water Dependent on Depth

I am a 4th year engineering student who has just started the Python Program and aims to extract a resource called 'Python and Automotive' (beginner level) by combining some formulas that he has learned in Automotive Engineering with Python. Of course, I will not be limited to Automotive only and will try to create original codes and programs using basic engineering knowledge and formulas.

You can find the Python code of the pressure value calculation program that affects the depth under seawater below. All explanations about the program are included in the visuals and code.

Example: The pressure value affecting people at sea level (0 meters) is 101325 Pascal. If we want to dive 10 meters below the sea, this value is 199425 Pascal. So it is about 2 times. The world diving record is 333.35 meters. The pressure value affecting at this depth is 3371488.5 Pascal. To better understand this depth, which is about 33.27 times the standard atmospheric pressure, I recommend that you try to dive only 2 meters underwater. :)


Programın Python Kodu

print("""****************************
Pressure value calculation program affecting under seawater depending on the depth
****************************
P=Pressure(Pa)
P0=Standard Atmospheric Pressure(Pa)=101325Pa = 1BAR
D=Density of Sea Water(kg/m3)~=1000kg/m3
G=Gravitational Acceleration(m/s2)=9.81m/s2
H=Depth(m)
****************************

""")
while True:
P0 = 101325
D= 1000
G= 9.81
H= float(input("Enter the depth value in meters:"))

P= P0 + (D * G * H )
print("Affecting Pressure value (Pa):",P)

#for i in range(1,30): #This code prints pressure values up to 30 meters on the screen.
#P = P0 + (D * G * i)
#print("Pressure values (Pa):", P)

Python: Deniz Suyu Altında Derinliğe Bağlı Olarak Etki Eden Basınç Değeri Hesaplama Programı

Python Programına henüz yeni başlamış olan ve başlar başlamaz Otomotiv Mühendisliği'nde öğrenmiş olduğu bazı formülleri Python ile birleştirerek 'Python ve Otomotiv' adlı (başlangıç düzeyinde) bir kaynak çıkarmayı hedefleyen 4. sınıf mühendislik öğrencisiyim. Elbette yalnızca Otomotiv ile sınırlı kalmayacak ve temel mühendislik bilgi ve formüllerini kullanarak özgün kodlar ve programlar çıkarmaya çabalayacağım. 

Deniz suyu altında derinliğe bağlı olarak etki eden basınç değeri hesaplama programının Python koduna aşağıdan ulaşabilirsiniz. Program ile ilgili tüm açıklamalar görsellerde ve kod içerisinde yer almaktadır. 

Örnek: Deniz seviyesinde(0 metre) insanlara etki eden basınç değeri 101325 Pascaldır. Denizin 10 metre altına dalmak istersek bu değer 199425 Pascaldır. Yani yaklaşık 2 katıdır. Dünya dalış rekoru 333.35 metredir. Bu derinlikte etki eden basınç değeri ise 3371488.5 Pascaldır. Standart atmosfer basıncının yaklaşık 33.27 katı olan bu derinliği daha iyi anlamak için yalnızca 2 metre su altına dalmayı denemenizi tavsiye ediyorum. :) 



Programın Python Kodu

print("""****************************
Deniz suyu altında derinliğe bağlı olarak etki eden basınç değeri hesaplama programı
****************************
P=Basınç(Pa)
P0=Açık Hava Basıncı(Pa)=101325Pa = 1BAR
D=Deniz Suyunun Yoğunluğu(kg/m3)~=1000kg/m3
G=Yer çekimi ivmesi(m/s2)=9.81m/s2
H=Derinlik(m)
****************************
BY
""")
while True:
P0 = 101325
D= 1000
G= 9.81
H= float(input("Derinlik değerini metre cinsinden giriniz:"))

P= P0 + (D * G * H )
print("Etki eden Basınç değeri(Pa):",P)

#for i in range(1,30): #30 Metreye kadar basınç değerlerini ekrana yazdırır.
#P = P0 + (D * G * i)
#print("Etki eden Basınç değerleri(Pa):", P)





Python: Motor/Silindir Hacmi Hesaplama Programı

Python Programına henüz yeni başlamış olan ve başlar başlamaz Otomotiv Mühendisliği'nde öğrenmiş olduğu bazı formülleri Python ile birleştirerek 'Python ve Otomotiv' adlı (başlangıç düzeyinde) bir kaynak çıkarmayı hedefleyen 4. sınıf mühendislik öğrencisiyim. Elbette yalnızca Otomotiv ile sınırlı kalmayacak ve temel mühendislik bilgi ve formüllerini kullanarak özgün kodlar ve programlar çıkarmaya çabalayacağım. 

Motor/Silindir Hacmi Hesaplama Programının Python koduna aşağıdan ulaşabilirsiniz. Program ile ilgili tüm açıklamalar görsellerde ve kod içerisinde yer almaktadır. 

İşlem 1:Kurs Boyu 5.3 cm, silindir çapı 8 cm olan 6 silindirlik F1 motorunun silindir hacmi değeri:

Formula 1 Motoru(Değerlere bu linkten ulaşabilirsiniz.)



İşlem 2 :Kurs Boyu 5.3 cm, silindir hacmi 1598.44 cm3 olan 6 silindirlik F1 motorunun silindir çapı değeri:


İşlem 3:Silindir çapı 8 cm, silindir hacmi 1598.44 cm3 olan 6 silindirlik F1 motorunun kurs boyu değeri:


Programın Python Kodu

print("""********************
Motor/Silindir Hacmi Hesaplama

V=Tek bir silindirin strok hacmi(cm3 = cc)
D=Silindirin Çapı (cm)
L=Kurs boyu(cm)

********************
Lütfen Yapmak İstediğiniz İşlemi Seçiniz:

1-Kurs boyu ve silindir çapını girerek silindir hacmini hesaplama

2-Silindir hacmi ve kurs Boyunu girerek silindir çapını hesaplama

3-Silindir hacmi ve silindir çapını girerek kurs boyunu hesaplama

*******BY*************
""")
import math

while True:
İşlem = input("İşlemi seçiniz:")
Silindir_Sayısı = int(input("Toplam Silindir Sayısı Değerini Giriniz:"))
if (İşlem == "1"):
D = float(input("Silindir Çapı Değerini Giriniz:"))
L = float(input("Kurs Boyu Değerini Giriniz:"))
V = (math.pi * D ** 2) * L * 0.25 * Silindir_Sayısı
print("Toplam Strok Hacmi Değeri:",V,"cc")
elif (İşlem == "2"):
V = float(input("Toplam Strok Hacmi Değerini Giriniz:"))
L = float(input("Kurs Boyu Değerini Giriniz:"))
D = ((V / (L * 0.25 * Silindir_Sayısı * math.pi))) ** 0.5
print("Silindir Çapı Değeri:", D, "cm")
elif (İşlem == "3"):
V = float(input("Toplam Strok Hacmi Değerini Giriniz:"))
D = float(input("Silindir Çapı Değerini Giriniz:"))
L = (((4 * V ) / (math.pi * D ** 2) / Silindir_Sayısı))
print("Kurs Boyu Değeri:", L, "cm")














Python: Engine / Cylinder Volume Calculation Program

I am a 4th year engineering student who has just started the Python Program and aims to extract a resource called 'Python and Automotive' (beginner level) by combining some formulas that he has learned in Automotive Engineering with Python. Of course, I will not be limited to Automotive only and will try to create original codes and programs using basic engineering knowledge and formulas.

You can find the Python code of the Engine/Cylinder Volume Calculation Program below. All explanations about the program are included in the pictures and code.

Process 1: The cylinder volume value of the 6-cylinder F1 engine with a stroke length of 5.3 cm and a cylinder diameter of 8 cm:

Formula 1 Motoru(You can see the values with this link.)


Process 2: The cylinder diameter value of the 6-cylinder F1 engine with a stroke length of 5.3 cm and a cylinder volume of 1598.44 cm3:


Process 3: The stroke length of the 6-cylinder F1 engine with a cylinder diameter of 8 cm and a cylinder volume of 1598.44 cm3:



Program's Python Code

print("""********************
Engine / Cylinder Volume Calculation

V=Stroke volume of a single cylinder(cm3 = cc)
D=Diameter of the cylinder(cm)
L=Stroke length(cm)

********************
Please Select What You Want to Do:

1-Calculating the cylinder volume by entering the stroke length and the cylinder diameter

2-Calculating the cylinder diameter by entering the cylinder volume and the stroke length

3-Calculating the stroke length by entering the cylinder volume and the cylinder diameter

*******BY*************
""")
import math

while True:
Operation = input("Select the Operation:")
Number_of_Cylinders = int(input("Please Enter the Total Number of Cylinders Value:"))
if (Operation == "1"):
D = float(input("Please Enter the Cylinder Diameter Value:"))
L = float(input("Please Enter the Stroke Length Value:"))
V = (math.pi * D ** 2) * L * 0.25 * Number_of_Cylinders
print("Total Stroke Volume Value:",V,"cc")
elif (Operation == "2"):
V = float(input("Please Enter the Total Stroke Volume Value:"))
L = float(input("Please Enter the Stroke Length Value:"))
D = ((V / (L * 0.25 * Number_of_Cylinders * math.pi))) ** 0.5
print("Cylinder Diameter Value:", D, "cm")
elif (Operation == "3"):
V = float(input("Please Enter the Total Stroke Volume Value:"))
D = float(input("Please Enter the Cylinder Diameter Value:"))
L = (((4 * V ) / (math.pi * D ** 2) / Number_of_Cylinders))
print("Stroke Length Value:", L, "cm")


Python: Fuel Economy Calculation Program

I just started the Python Program, and as soon as I started, I aim to create an entry-level resource called 'Python and Automotive' by combining some of the formulas we have learned in Automotive Engineering with Python. Of course, I will not be limited to Automotive only and will try to create original codes and programs using basic engineering knowledge and formulas.

You can find the Python code of the Fuel Economy Calculation Program below. All explanations about the program are included in the pictures and code.

Process 1: Example: If the distance you travel with 50 liters of fuel is 1300 km, the average fuel consumption:


Process 2: Example: The fuel volume to be consumed by a vehicle traveling 750 km with an average fuel consumption of 5 L / 100 km:



Process 3: Example: The way you can get with a vehicle with 40 liters of fuel and 5 L / 100km fuel consumption:




Program's Python Code
print("""
************************************
Fuel Economy Calculator

FE=Fuel Economy,(L/100km)
FVC=Fuel Volume Consumed,(L)
RT=Road Taken,(km)
************************************
Please Select What You Want to Do:

1-Calculating Fuel Economy(L/100 km)

2-Calculating the Volume of Fuel Consumed(L)

3-Calculating the distance that can be taken(km)

************************************
Barış YILDIRIM
""")


while True:
Operation = input("Select the Operation:")

if (Operation == "1"):
FVC = float(input("Please enter the volume of fuel consumed value(L):"))
RT = float(input("Please enter the road taken value(km):"))
FE = (FVC * 100) / RT
print("Fuel Economy:",FE,"L/100 km")

elif (Operation == "2"):
FE = float(input("Please enter Fuel Economy value(L/100 km):"))
RT = float(input("Please enter the road taken value(km):"))

FVC = (FE * RT) / 100

print("Fuel Volume Consumed:",FVC,"L")

elif (Operation == "3"):
FVC = float(input("Please enter the volume of fuel consumed value(L):"))
FE = float(input("Please enter Fuel Economy value(L/100 km):"))
RT = (FVC * 100) / FE

print("The distance that can be taken:",RT,"km")













Python: Yakıt Ekonomisi Hesaplama Programı

Python Programına henüz yeni başlamış olan ve başlar başlamaz Otomotiv Mühendisliği'nde öğrenmiş olduğu bazı formülleri Python ile birleştirerek 'Python ve Otomotiv' adlı (başlangıç düzeyinde) bir kaynak çıkarmayı hedefleyen 4. sınıf mühendislik öğrencisiyim. Elbette yalnızca Otomotiv ile sınırlı kalmayacak ve temel mühendislik bilgi ve formüllerini kullanarak özgün kodlar ve programlar çıkarmaya çabalayacağım. 

Yakıt Ekonomisi Hesaplama Programının Python koduna aşağıdan ulaşabilirsiniz. Program ile ilgili tüm açıklamalar görsellerde ve kod içerisinde yer almaktadır. 

İşlem 1: Örnek: 50 Litre yakıt ile aldığınız yol 1300 km ise yakıt tüketimi değeri:



İşlem 2 : Örnek: 5 L/100km yakıt tüketimi değeri ile 750 km yol alan bir aracın tüketeceği yakıt hacmi:


İşlem 3: 40 Litre Yakıt ve  5 L/100km yakıt tüketimine sahip bir araçla alabileceğiniz yol:


Programın Python Kodu


print("""************************************
----Yakıt Ekonomisi Hesaplama----

YE=Yakıt Ekonomisi,(L/100km)
TYH=Tüketilen Yakıt Hacmi,(L)
KEY=Kat Edilen Yol,(km)
************************************
Lütfen Yapmak İstediğiniz İşlemi Seçiniz:

1-Yakıt Ekonomisi Hesaplama(L/100 km)

2-Tüketilen Yakıt Hacmini Hesaplama(L)

3-Kat Edilebilecek Yolu Hesaplama(km)

************************************
Barış YILDIRIM
""")


while True:
İşlem = input("İşlemi seçiniz:")

if (İşlem == "1"):
TYH = float(input("Tüketilen yakıt hacmini giriniz(L):"))
KEY = float(input("Kat edilen yolu giriniz(km):"))
YE = (TYH * 100) / KEY
print("Yakıt ekonomisi:",YE,"L/100 km")

elif (İşlem == "2"):
YE = float(input("Yakıt Ekonomisi değerini giriniz:"))
KEY = float(input("Kat edilen yolu giriniz(km):"))

TYH = (YE * KEY) / 100

print("Tüketilen Yakıt Hacmi:",TYH,"L")

elif (İşlem == "3"):
TYH = float(input("Tüketilen yakıt hacmini giriniz(L):"))
YE = float(input("Yakıt Ekonomisi değerini giriniz:"))
KEY = (TYH * 100) / YE

print("Kat Edilebilecek Yol:",KEY,"km")