Difference between revisions of "Juan Andre (Metode numerik)"

From ccitonlinewiki
Jump to: navigation, search
(REPORT progress Case Study Optimization of Hydrogen Storage)
(REPORT progress Case Study Optimization of Hydrogen Storage)
Line 77: Line 77:
 
radius (r)  :7.3 cm
 
radius (r)  :7.3 cm
  
next step we got to trial and error
 
  
assume we using 4130 steel
+
    R = 7.3e-2
 
+
    P = 800000
tensile strength for 4130 steel is
+
    t = 4e-2
460 MPa
+
    check=[]
 
+
    while t < 100:
So the calculation is :
+
      hoop = (P * R)/(t)
 
+
      t += 1
t = PD / ()
+
      check.append((hoop,t))
t = (8 bar) * (5.64 cm) / (2 * 460 MPa)
+
      if hoop > 310e9:
t ≈ 0.049 cm
+
          break
 
+
    value=max(check)
we repeat this
+
    print(value)
 
 
Aluminum Sheet 6061
 
 
 
tensile strength for 4130 steel is
 
276 MPa
 
 
 
t = PD / ()
 
t = (8 bar) * (5.64 cm) / (2 * 460 MPa)
 

Revision as of 03:28, 6 June 2023

Nama: Juan Andre Mendaun Karapa

NPM: 2106728130

Hobi: Tidur


Saya adalah mahasiswa FTUI angkatan 2021 dari jurusan Teknik mesin dan saya adalah salah satu ciptaan terbaik dari Tuhan yang Maha Esa karena pada prinsipnya Tuhan yang Maha Esa itu mendesain manusia dengan sebaik baiknya makhluk.


Saya masuk Teknik Mesin karena terlempar dari jurusan utama saya yaitu kedokteran.

Tugas hydrogen storage Optimization

Hydrogen storage optimization involves maximizing the efficiency and capacity of hydrogen storage systems.We can solve that with :


1.Understand your storage requirements: Determine the specific needs for hydrogen storage, such as the required capacity, pressure, and temperature range. Consider the intended application and any constraints or limitations.


2.Choose the appropriate storage method: Evaluate different hydrogen storage methods, such as compressed gas, liquid hydrogen, metal hydrides, or chemical hydrides. Each method has its advantages and disadvantages in terms of capacity, energy density, safety, and cost.


3.Optimize storage system design: Consider factors such as storage vessel material, insulation, and pressure containment. Design the storage system to minimize leaks, ensure safety, and maximize capacity. Employ advanced materials and manufacturing techniques to enhance storage efficiency.


4.Optimize operating conditions: Explore the optimal pressure and temperature ranges for hydrogen storage based on the chosen storage method. Higher pressures and lower temperatures generally improve storage capacity, but they may have cost and safety implications. Conduct experiments or simulations to find the best operating conditions.


5.Improve storage materials: Research and develop new materials with higher hydrogen storage capacities and improved kinetics. For example, metal-organic frameworks (MOFs) and carbon-based materials like graphene have shown promise in enhancing hydrogen storage efficiency. Collaborate with researchers and experts in the field to explore cutting-edge materials.


6.Implement storage system monitoring and control: Install sensors and monitoring systems to ensure safe and efficient operation of the hydrogen storage system. Use real-time data to optimize storage conditions and detect any anomalies or leaks promptly.


7.Consider system integration: Account for the integration of hydrogen storage into larger systems, such as fuel cell vehicles or renewable energy storage systems. Optimize the interface between the storage system and the end-use application to maximize overall efficiency.


8.Conduct thorough safety assessments: Hydrogen storage optimization must prioritize safety. Perform rigorous safety assessments, including risk analysis, to identify potential hazards and implement appropriate safety measures. Adhere to industry standards and regulations to ensure safe storage and handling practices.


9.Continuously improve through research and development: Stay updated with advancements in hydrogen storage technologies and materials. Collaborate with researchers, universities, and industry experts to leverage their knowledge and expertise. Invest in research and development to continuously optimize and innovate hydrogen storage systems.

REPORT progress Case Study Optimization of Hydrogen Storage

Requirements : Designing hydrogen storage at 8 bar with capacity of 1 liter and budget of Rp 500.000

Design variables : Geometry size, material thickness to strength, material selection

price : not exceeding Rp 500.000

Objectives : Smallest surface area, thinnest material and withstand 8 bar pressure.

   import math
   pi=3.14
   check=[]
   for R in range (1,100):
       height = 1000/(pi*R**2)
       area_surface=((2*pi*R) * height) + ((pi*R**2)*2)
       check.append((area_surface,height))
       smallest_R=min(check)
   print(smallest_R)

the output is the smallest area surface : ( area surface,height) in cm

   (557.0, 12.738853503184714)

with calculation on the basic area of surface formula using variable that we already know we got : r=7.3 cm

in summary we got

area surface : 557.0 cm

height  : 12.73,and

radius (r)  :7.3 cm


   R = 7.3e-2
   P = 800000
   t = 4e-2
   check=[]
   while t < 100:
     hoop = (P * R)/(t)
     t += 1
     check.append((hoop,t))
     if hoop > 310e9:
         break
   value=max(check)
   print(value)