Farhan Primatondi Harahap

From ccitonlinewiki
Revision as of 10:35, 9 June 2023 by Primaxfarhan (talk | contribs) (Case Study : Design & Optimization Pressurized Hydrogen Storage)
Jump to: navigation, search

My name is Farhan Primatondi Harahap, some of my friends call me Farhan/Tondi. But i prefer to be called Tondi. In my daily life, I simply enjoy the beauty and pleasures that God gave to me ;)

Resume Pertemuan 1 - 26/05/2023

Numerical Methods Mahasiswa diharapkan daat berinteraksi dengan dosen lebih lanjut dalam perkuliahan Mata Kuliah Metode Numerik. Mahasiswa dapat mempelajari metode numerik di Google, sehingga mahasiswa dapat belajar mandiri dan merupakan progress dalam pembelajaran tidak hanya belajar dalam kelas, karena jika hanya di kelas tidak cukup untuk menjawa ujian, karena ujiannya menggunakan metode dia yang membuat soal dia yang menjawab, ini merupakan teknologi yang maju, konten Metode Numerik.

Case study, mengkonversi energi, memecah air, bisa dituliskan menggunakan karya tulis ilmiah ini juga merupakan PKM (Program Kreatifitas Mahasiswa). ChatGPT juga merupakan hasil dari metode numerik. Dapat mendesain 1 liter tabung hidrogen untuk dicampurkan bahan bakar motor. consciousness juga merupakan bahasan yang dibahas pada pertemuan pertama seperti pertanyaan soal (x+1)(x-1)/(x-1) = 2 yang menimbulkan beberapa jawaban oleh karena itu kita harus menggunakan otak kita secara sadar untuk menemukan solusi dari soal tersebut. Oleh karena itu bisa disimpulkan adanya keterkaitan ilmu matematika terhadap conciusness atau kesadaran kita terhadap realitas.

Case Study : Design & Optimization Pressurized Hydrogen Storage

A pressurized hydrogen storage is a specially designed container for storing hydrogen under high pressure. The storage is designed to withstand higher pressure than the surrounding atmospheric pressure. The main purpose of a pressurized hydrogen storage is to safely and efficiently store and transport hydrogen. Pressurized hydrogen storage are commonly used in applications such as hydrogen storage and transportation for industrial, transportation, and energy storage purposes. The storage are equipped with filling and discharge valves to safely control the flow of hydrogen in and out of the storage. Safety is a crucial factor in the design and use of pressurized hydrogen storage. These storage must meet safety standards and undergo extensive testing to ensure structural reliability and resistance to high pressure.

Hydrogen Storage Spesification : It can accommodate 1 liter of hydrogen, And the pressure inside the storage is 8 bars. And the maximum cost for manufacturing the hydrogen storage is Rp500.000.

How to make a perfect Hydrogen Storage?

To design of pressurized hydrogen storage involves several steps, including Design and Engineering, Material selection, Fabrication, Safety. These are the steps to obtain a Pressurized Hydrogen Storage :

Design and Engineering: Developing the design specifications and engineering calculations for the hydrogen cylinder, considering factors such as capacity, pressure requirements, material selection, and safety considerations. Factors such as shape, volume, and thickness of the tank walls. Cylindrical shape are often used for pressurized gas storage. lets assume to design 1 liter capacity of pressurized hydrogen storage we need to have 300mm height with radius around of 50mm of cylindrical storage.

Material Selection: The choice of material for the storage vessel is critical to ensure safety, weight, and cost considerations. Sourcing and procuring the appropriate materials for the hydrogen cylinder, such as high-strength alloys, carbon fiber composites, or other suitable materials. Material selection is also in accordance with the existing budget.

Manufacturing Techniques: Utilizing manufacturing techniques like filament winding, bladder molding, or other suitable methods to create the desired shape and structure of the hydrogen cylinder. Performing machining operations, such as drilling or threading, and applying finishing treatments, such as cleaning, polishing, or coating, to achieve the desired final specifications.

Safety systems: Integrate safety features such as pressure relief valves, burst discs, or automatic shut-off systems to prevent overpressure or other emergency events. Adding a cover or outer shield to protect the tank from physical damage and external environment that might affect the performance of the tank. Hydrogen storage systems can be complex, and it is important to consult with engineers in the field to ensure the design and optimization process is carried out safely and effectively.

Installation & Operational : Install the storage tank in the intended location, ensuring proper connections and integration with other systems if applicable. Develop guidelines for the safe operation, maintenance, and inspection of the storage tank to ensure its continued performance and integrity.

Finally, for the manufacture of pressurized hydrogen storage, of course you have to think about the initial cost, which is no more than Rp500.000 . Therefore, we must minimize costs on several factors, such as material selection or manufacturing, but sometimes this will cause expensive maintenance costs and security. reduce. so we have to think consciously in this case.

Dari uraian diatas pemilihan bahan material, bentuk, dan sistemnya, saya berpikir bahwa pilihan bahan yang paling memungkinkan untuk dipakai adalah sistem wadah tangki dengan material kuat untuk menyimpan gas hidrogen bertekanan.

Dengan requirement sebagai berikut :

1. 1 Liter of Hydrogen 2. 8 Bar of pressure 3. Max cost of 500.000,00 IDR

Here's a simplified example of how you could approach the optimization process

Tabung1.png In the picture above is an example of the final planning of a Pressurized Hydrogen Storage cost within Rp 500,000.

To create a pressured hydrogen storage, there are certainly several materials involved in its construction. Therefore, we must choose wisely in selecting materials that are suitable for building pressured hydrogen storage according to our budget costs.

determining the proper design for the allocated cost, the analysis of the optimal surface area with respect to the volume is carried out by numerical methods. Using a simple python program:

import numpy as np
from scipy.optimize import minimize

def objective(x):
  radius, height = x
  surface_area = 2 * np.pi * radius * (radius + height)
  return surface_area

def volume_constraint(x):
  radius, height = x
  volume = np.pi * radius**2 * height
  return volume - 1000

x0 = [2.0, 5.0]
bounds = [(0, None), (0, None)]
constraint = {'type': 'eq', 'fun': volume_constraint}
problem = minimize(objective, x0, bounds=bounds, constraints=constraint)

optimized_radius = problem.x[0]
optimized_height = problem.x[1]
optimized_surface_area = problem.fun

print("Optimization Results:")
print(f"Optimized Radius: {optimized_radius:.2f} cm")
print(f"Optimized Height: {optimized_height:.2f} cm")
print(f"Optimized Surface Area: {optimized_surface_area:.2f} cm^2")

after running the program, the final outputs are: Optimization Results: Optimized Radius: 5.42 cm Optimized Height: 10.84 cm Optimized Surface Area: 553.58 cm^2

In this program, we can determine a list of storage options with their characteristics such as capacity, pressure, and cost. By selecting the appropriate material, we then iterate through these options and evaluate whether they meet the target pressure and capacity requirements while considering cost constraints. The appropriate selection that meets all criteria is considered the best choice among all materials.

Resume Pertemuan 2