Skip to content
View emrahuzucar355's full-sized avatar

Highlights

  • Pro

Block or report emrahuzucar355

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
emrahuzucar355/README.md

import numpy as np import matplotlib.pyplot as plt

Elektroliz Verimliliği Modeli

def electrolysis_efficiency(voltage, current_density): """ Elektroliz işlemi için verimliliği hesaplar. :param voltage: Elektroliz sırasında kullanılan voltaj (V) :param current_density: Elektrot yüzeyine uygulanan akım yoğunluğu (A/cm²) :return: Verimlilik değeri (0-1 arasında) """ theoretical_voltage = 1.23 # Teorik minimum voltaj (V) efficiency = (2 * theoretical_voltage) / voltage efficiency -= current_density / 1000 # Akım yoğunluğundan kaynaklanan kayıplar return max(0, efficiency) # Verimlilik negatif olamaz

Test ve Görselleştirme

voltages = np.linspace(1.5, 3.0, 50) # Voltaj değerleri current_density = 500 # Sabit akım yoğunluğu (A/cm²)

efficiencies = [electrolysis_efficiency(v, current_density) for v in voltages]

Grafik

plt.figure(figsize=(8, 6)) plt.plot(voltages, efficiencies, label=f"Akım Yoğunluğu: {current_density} A/cm²", color="blue") plt.title("Elektroliz Verimliliği") plt.xlabel("Voltaj (V)") plt.ylabel("Verimlilik") plt.ylim(0, 1.2) # Verimlilik %120'yi aşamaz plt.grid() plt.legend() plt.show()

Örnek Testler

print("Test Sonuçları:") for v in [1.5, 2.0, 2.5]: efficiency = electrolysis_efficiency(v, current_density) print(f"Voltaj: {v} V, Akım Yoğunluğu: {current_density} A/cm² -> Verimlilik: {efficiency:.2f}")

Pinned Loading

  1. cccl cccl Public archive

    Forked from NVIDIA/cccl

    CUDA Core Compute Libraries

    C++ 1

  2. emrahuzucar355 emrahuzucar355 Public template

    Deniz suyu yakıt projesi Sustainable energy solution: Developing hydrogen fuel from seawater for space propulsion and radiation shielding.”

    1

  3. Uzucar- Uzucar- Public

    Deniz suyu

    C++

  4. antontarasenko/awesome-economics antontarasenko/awesome-economics Public

    A curated collection of links for economists

    1.4k 198