B

@B_chavarria

Ef Term Tesis2

Python
3 months ago
import matplotlib.pyplot as plt import numpy as np # Datos parametros = ['Longitud de\nla tubería', 'Ancho de\nla cara', 'Diámetro de\nla tubería', 'Flujo másico\ndel HTF'] ef_inicial = [0.5520, 0.5071, 0.7305, 0.5625] ef_final = [0.5535, 0.5529, 0.7291, 0.5526]

Ef Elec Tesis2

Python
3 months ago
import matplotlib.pyplot as plt import numpy as np # Datos parametros = ['Longitud de\nla tubería', 'Ancho de\nla cara', 'Diámetro de\nla tubería', 'Flujo másico\ndel HTF'] ef_inicial = [0.1801, 0.1946, 0.1612, 0.1606] ef_final = [0.1787, 0.1794, 0.1590, 0.1799]

Pot Term Tesis2

Python
3 months ago
import matplotlib.pyplot as plt import numpy as np # Datos parametros = ['Longitud de\nla tubería', 'Ancho de\nla cara', 'Diámetro de\nla tubería', 'Flujo másico\ndel HTF'] pot_inicial = [3.71, 4.868, 7.013, 5.40] pot_final = [6.908, 5.308, 6.999, 5.305]

Pot Elec Tesis2

Python
3 months ago
import matplotlib.pyplot as plt import numpy as np # Datos actualizados parametros = ['Longitud de\nla tubería', 'Ancho de\nla cara', 'Diámetro de\nla tubería', 'Flujo másico\ndel HTF'] pot_inicial = [1.212, 1.868, 1.548, 1.542] pot_final = [2.229, 1.723, 1.526, 1.727]

Modelo explicito propuesto probado para alta concentración

Fortran
4 months ago
program explicit_model_IV_improved implicit none ! --- Definicion de variables --- integer :: k, num_puntos double precision :: q, k_boltz, beta, alpha double precision :: G, G_ref, CR_PTC, T, T_cell, T_ref double precision :: Voc_ref, Isc_ref, Jsc_ref, APV double precision :: Vt, n_min, n_max, coef, n double precision :: Voc, Isc, I0

Modelo explicito sencillo para validación de Li con referencia de SC-3GA-1

Fortran
4 months ago
program explicit_model_IV implicit none ! --- Variables originales --- integer :: ii, max_iter double precision :: q, k_boltz, beta, alpha ! Renombro k a k_boltz para evitar conflicto con iterador k double precision :: G, G_ref, CR_PTC, T, T_cell, T_ref double precision :: Voc_ref, Isc_ref, Jsc_ref, APV double precision :: Vt, n_min, n_max, coef, n double precision :: Voc, Isc, I0, IL

Replica grafica Ficha Técnica SC-3GA-1 con modelo explicito propuesto

Fortran
4 months ago
! ============================================================================== ! PROGRAMA: Simulacion Celda GaAs - Salida Monitor + MPPT ! MODELO: Explicito (Benghanem & Alamri) ! AUTOR: Generado por Gemini ! ============================================================================== PROGRAM Model_GaAs_Monitor IMPLICIT NONE ! --- Definicion de precision ---

Los tres subprograms - Iteracion global (Ajuste para Li)

Fortran
4 months ago
program main_ET_PTC_HTF implicit none ! ======= Constantes físicas y de geometría ======= Double Precision :: G_GHI, u_Air, rho_Water Double Precision :: R_conv_PTC, R_conv_PV, R_conv_abs Double Precision :: R_cond_PV, R_cond_sub, R_cond_abs Double Precision :: C_p_HTF Double Precision :: G_DNI Double Precision :: T_a, T_sky, T_PVi, T_in_HTF

Los tres subprograms - Iteracion global (P_PVi/T_PV)

Fortran
4 months ago
program main_ET_PTC_HTF implicit none ! ======= Constantes físicas y de geometría ======= Double Precision :: G_GHI, u_Air, rho_Water Double Precision :: R_conv_PTC, R_conv_PV, R_conv_abs Double Precision :: R_cond_PV, R_cond_sub, R_cond_abs Double Precision :: C_p_HTF Double Precision :: G_DNI Double Precision :: T_a, T_sky, T_PVi, T_in_HTF

Tesis2 Diam SRC-PVT - Eff

Python
5 months ago
import matplotlib.pyplot as plt import numpy as np # Datos de diámetro, eficiencia eléctrica y térmica (actualizados) diameter = [0.015, 0.03, 0.045, 0.06, 0.075, 0.09] electric_efficiency = [0.1612, 0.1609, 0.1605, 0.16, 0.1595, 0.159] thermal_efficiency = [0.7305, 0.7303, 0.73, 0.7297, 0.7294, 0.7291] # Tamaños de letra personalizables title_fontsize = 22

Tesis2 Diam SRC-PVT - Pot

Python
5 months ago
import matplotlib.pyplot as plt # Datos de diámetro, potencia eléctrica y térmica (actualizados) diameters = [0.015, 0.03, 0.045, 0.06, 0.075, 0.09] electric_power = [1.548, 1.545, 1.54, 1.536, 1.531, 1.526] thermal_power = [7.013, 7.011, 7.008, 7.005, 7.002, 6.999] # Tamaños de letra personalizables title_fontsize = 22 axis_label_fontsize = 20

Tesis2 Diam SRC-PVT - Temp

Python
5 months ago
import matplotlib.pyplot as plt # Nuevos datos de diámetro y temperatura diameters = [0.015, 0.03, 0.045, 0.06, 0.075, 0.09] pv_temp = [81.96, 82.74, 83.85, 85.08, 86.34, 87.61] absorber_temp = [81.79, 82.59, 83.7, 84.93, 86.2, 87.48] htf_inlet_temp = [81.17, 81.16, 81.16, 81.15, 81.15, 81.14] # Configuración del tamaño de la figura fig, ax = plt.subplots(figsize=(12, 8))

Tesis2 Anch SRC-PVT - Eff

Python
5 months ago
import matplotlib.pyplot as plt # Datos actualizados de ancho, eficiencia eléctrica y térmica width = [0.03, 0.06, 0.09, 0.12] electric_efficiency = [0.1946, 0.1872, 0.1827, 0.1794] thermal_efficiency = [0.5071, 0.5249, 0.5396, 0.5529] # Tamaños de letra personalizables title_fontsize = 22 axis_label_fontsize = 20

Tesis2 Anch SRC-PVT - Pot

Python
5 months ago
import matplotlib.pyplot as plt # Datos de ancho, potencia eléctrica y térmica (actualizados) widths = [0.03, 0.06, 0.09, 0.12] electric_power = [1.868, 1.797, 1.754, 1.723] thermal_power = [4.868, 5.039, 5.18, 5.308] # Tamaños de letra personalizables title_fontsize = 22 axis_label_fontsize = 20

Tesis2 Anch SRC-PVT - Temp

Python
5 months ago
import matplotlib.pyplot as plt # Datos actualizados de ancho y temperaturas (sin sub Temp) widths = [0.03, 0.06, 0.09, 0.12] pv_temp = [78.91, 78.87, 79.13, 79.71] absorber_temp = [77.83, 78.27, 78.67, 79.34] htf_temp = [77.75, 78.02, 78.25, 78.45] # Configuración del tamaño de la figura fig, ax = plt.subplots(figsize=(12, 8))

Tesis2 Long SRC-PVT - Eff

Python
5 months ago
import matplotlib.pyplot as plt # Datos actualizados de longitud, eficiencia eléctrica y térmica longitud = [7, 8, 9, 10, 11, 12, 13] electric_efficiency = [0.1801, 0.1799, 0.1797, 0.1794, 0.1792, 0.1790, 0.1787] thermal_efficiency = [0.5520, 0.5524, 0.5527, 0.5529, 0.5531, 0.5533, 0.5535] # Tamaños de letra personalizables title_fontsize = 22 axis_label_fontsize = 20

Tesis2 Long SRC-PVT - Pot

Python
5 months ago
import matplotlib.pyplot as plt # Datos actualizados lengths = [7, 8, 9, 10, 11, 12, 13] electric_power = [1.21, 1.382, 1.552, 1.723, 1.892, 2.062, 2.23] thermal_power = [3.71, 4.242, 4.775, 5.308, 5.841, 6.375, 6.908] # Tamaños de letra personalizables title_fontsize = 22 axis_label_fontsize = 20

Tesis2 Long SRC-PVT - Temp

Python
5 months ago
import matplotlib.pyplot as plt # Datos de longitud y temperatura lengths = [7, 8, 9, 10, 11, 12, 13] pv_temp = [77.74, 78.36, 79.02, 79.71, 80.42, 81.15, 81.9] absorber_temp = [77.37, 78.00, 78.66, 79.34, 80.05, 80.78, 81.53] htf_temp = [75.91, 76.75, 77.60, 78.45, 79.30, 80.15, 81.00] # Crear figura fig, ax = plt.subplots(figsize=(12, 8))

Gemini - Explicito

Fortran
5 months ago
PROGRAM ModeloExplicitoPV IMPLICIT NONE ! --- Declaración de Variables --- ! Parámetros del módulo (Datos de entrada) REAL :: Isc, Voc, Im, Vm ! Constantes del modelo REAL :: C1, C2

Mod Explicito (1353 W/m2) 2

Fortran
6 months ago
program explicit_model_IV implicit none integer :: ii, max_iter double precision :: q, k, beta, alpha double precision :: G, G_ref, CR_PTC, T, T_cell, T_ref double precision :: Voc_ref, Isc_ref, Jsc_ref, APV double precision :: Vt, n_min, n_max, coef, n double precision :: Voc, Isc, I0, IL, V, I double precision :: Vmp, Imp, Pmp, P, MPPT