Muhammad Raihan Malawat

From ccitonlinewiki
Jump to: navigation, search

INTRODUCTION


My name is Muhammad Raihan Malawat, I was born in Jakarta on 5th August 2003.

RESUME PERKULIAHAN


Pada pertemuan per tanggal 26 Mei 2023 kami telah membahas mengenai apa itu arti dari consciousness dimana pada dasarnya hal tersebut merupakan fundamental yang dimiliki oleh setiap manusia. Jika kita berkaca dari segi kaidah kebahasaan, consciousness atau kesadaran memiliki arti mengerti akan suatu hal yang sedang dialami atau dirasakan oleh suatu objek. Jika kita ambil pertanyaan apakah mungkin arti kata ‘ kesadaran ‘ itu dapat mempengaruhi kerangka berpikir bahwa sebuah bentuk persamaan matematika dapat menghasilkan sebuah nilai yang tidak absolut? Sementara kita tahu bahwa Matematika sering dikenal dengan ilmu mutlak? Hal tersebut jelas menimbulkan kontradiksi, namun karena sifat dari kesadaran berdasarkan tata bahasa adalah bersifat ‘ individu ‘ hal tersebut menimbulkan banyaknya kombinasi jawaban dari berbagai ‘ kesadaran ‘ para matematikawan dalam mencari solusi sehingga menghasilkan banyak jawaban, Srinivasa Ramanujan merupakan salah satu orang yang membantah bahwa nilai dari 1+2+3+… = ∞, dimana ia menyatakan bahwa solusi dari nilai tersebut adalah -1/12, lantas apakah dia salah? Tidak, karena itu merupakan ‘ kesadaran ‘ yang memang hanya dia yang mengetahui nilai kebenarannya. Namun dia memiliki argumen yang kuat, sehingga solusi tersebut dapat dibuktikan dengan matematika dan menjadi salah satu kontradiksi dalam dunia matematika. Sama halnya dengan nilai solusi dari 0/0.


WEEK 1 - Progress


Considering the budget constraint of Rp500,000, it is important to acknowledge that building a hydrogen tank within this budget will be extremely challenging. Hydrogen storage systems require specialized materials and safety features to ensure proper containment and handling of the gas. It is unlikely that a safe and functional hydrogen tank can be constructed within this budget limitation.

However, if you still want to explore a low-cost option with a significantly reduced capacity and without compromising safety, you can consider using a smaller-scale hydrogen storage solution. Here's a simplified approach:

Materials needed:

Airtight container: Look for a small, sturdy container made of metal or high-density polyethylene (HDPE) that can withstand pressure. You may repurpose a suitable container that is hydrogen-compatible or consider using a small high-pressure gas cylinder specifically designed for low-pressure hydrogen storage. Pressure relief valve: Obtain a pressure relief valve suitable for hydrogen applications. This valve helps maintain safe pressure levels within the tank. Tubing and fittings: Acquire high-pressure tubing and fittings compatible with hydrogen to connect the tank to a hydrogen source or device. Sealing material: To ensure airtightness, you'll need a suitable sealing material like Teflon tape or thread sealant. Wrenches and pliers: These tools will be required for tightening and connecting various components. Steps to follow:

Research and safety: Before starting the project, thoroughly research hydrogen safety measures, handling procedures, and local regulations. Ensure you have a well-ventilated workspace and follow safety protocols at all times.

Container selection: Look for a small container that can withstand pressure. Repurpose an existing hydrogen-compatible container or consider using a small high-pressure gas cylinder designed for low-pressure hydrogen storage.

Valve installation: Apply a sealing material, such as Teflon tape or thread sealant, to the threads of the container's opening. Install the pressure relief valve tightly, ensuring it is compatible with hydrogen.

Tubing connection: Attach the high-pressure tubing to the valve outlet using suitable fittings. Ensure the connections are secure and leak-free.

Testing: Perform a leak test by pressurizing the tank with a small amount of hydrogen gas (if available). Apply soapy water to all connections and look for any bubbles indicating leaks. If bubbles appear, turn off the gas supply and fix the connections before proceeding.

Safety precautions: Ensure the tank is stored in a well-ventilated area away from heat sources or open flames. Consider placing the tank in a secondary containment system to mitigate potential risks.

Remember, this approach assumes a significantly reduced capacity and a basic setup. It's important to consult with experts or professionals in the field to ensure safety and compliance with local regulations when working with hydrogen.


NUMERICAL METHOD : HYDROGEN TUBE DESIGN


#include <iostream>
#include <cmath>
// Muhammad Raihan Malawat - 2106706874
const double PI = 3.14159;

double calculateVolume(double radius, double length)
{
    return PI * pow(radius, 2) * length;
}

int main()
{
    const double targetVolume = 1000.0;  // 1 liter = 1000 cubic centimeters
    const double pressureLimit = 8.0;   // bar

    double area;
    double mostIdealRadius = 0.0;
    double mostIdealLength = 0.0;
    double closestVolume = 0.0;

    for (double radius = 0.1; radius <= 10.0; radius += 0.1)
    {
        for (double length = 0.1; length <= 100.0; length += 0.1)
        {
            double volume = calculateVolume(radius, length);
            double pressure = pressureLimit * targetVolume / volume;

            if (pressure <= pressureLimit && (closestVolume == 0.0 || fabs(targetVolume - volume) < fabs(targetVolume - closestVolume)))
            {
                mostIdealRadius = radius;
                mostIdealLength = length;
                closestVolume = volume;
            }
        }
    }
    area = 2*PI*mostIdealRadius*mostIdealLength;
    
    std::cout << "Area of The Tube:" << area << "cm^2" << std::endl;

    std::cout << "Most ideal radius: " << mostIdealRadius << " cm" << std::endl;
    std::cout << "Most ideal length: " << mostIdealLength << " cm" << std::endl;
    std::cout << "Corresponding volume: " << closestVolume << " cc" << std::endl;

    return 0;
}

Didapat output sebesar,

Screenshot 2023-06-15 103507.png

Dimana nilai tersebut nantinya akan diakumulasikan untuk mencari nilai dari harga yang diperlukan. Dengan menggunakan material dasar Mild Steel guna mendapatkan hasil yang maksimal dari segi harga dan kekuatan, didapat data sebagai berikut.

Screenshot 2023-06-15 104108.png

Dimana nilai tersebut masih memenuhi allowance cost sebesar Rp 500.000,00


Strength of Hydrogen Tube Calculation


Malawat1.png

Dengan mengambil material SS440, didapat gradasi stress dengan metode von misses seperti yang terlihat pada gambar di atas.

Dimana seperti yang terlihat, nilai maksimum terhadap Von Misses Stress didapat hasil sebesar 0.87 Mpa dimana nilai tersebut masih masuk ke dalam batas aman karena batas maksimum dari Yield Strength SS440 yaitu sebesar 1230Mpa. Sehingga dapat disimpulkan tabung hidrogen sudah dapat diproduksi.

My Consciousness in Numerical Method and Designing an Optimum Hydrogen Tube