Skip to content

Commit

Permalink
Merge pull request #10 from NREL/defaults-standardization
Browse files Browse the repository at this point in the history
Defaults standardization
  • Loading branch information
atpham88 authored Oct 4, 2024
2 parents a80110e + a81324f commit fb3d8f5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/inputs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -58,19 +58,19 @@ Base.@kwdef mutable struct InputsStruct
##### These are the exact /GhpGhx POST names from the API #####
# Parameters
heat_pump_configuration::String = "WSHP" # "WSHP" or "WWHP"
borehole_depth_ft::Float64 = 400.0
ghx_header_depth_ft::Float64 = 4.0
borehole_depth_ft::Float64 = 443.0 # ResStock = 152m, ComStock and URBANopt = 135m = 443 ft
ghx_header_depth_ft::Float64 = 6.6 # ResStock, ComStock, and URBANopt value is 2m = 6.56168 ft
borehole_spacing_ft::Float64 = 20.0
borehole_diameter_inch::Float64 = 5.0
borehole_diameter_inch::Float64 = 6.0 # ResStock, ComStock, and URBANopt value is 6 inch
borehole_spacing_type::String = "rectangular" # "rectangular" or "hexagonal"
ghx_pipe_outer_diameter_inch::Float64 = 1.66
ghx_pipe_wall_thickness_inch::Float64 = 0.16
ghx_pipe_thermal_conductivity_btu_per_hr_ft_f::Float64 = 0.25
ghx_shank_space_inch::Float64 = 2.5
ghx_pipe_thermal_conductivity_btu_per_hr_ft_f::Float64 = 0.23 # ReStock, ComStock and URBANopt value is 0.4 W/m-K which is 0.23127039296 BTU/ft-F
ghx_shank_space_inch::Float64 = 1.27 # ResStock = 0.0246m = 0.97 inch, ComStock & URBANopt = 0.0323m = 1.27 inch. Goes with ComStock & URBANopt value
ground_thermal_conductivity_btu_per_hr_ft_f::Float64 = NaN # Default depends on climate zone
ground_mass_density_lb_per_ft3::Float64 = 162.3
ground_specific_heat_btu_per_lb_f::Float64 = 0.211
grout_thermal_conductivity_btu_per_hr_ft_f::Float64 = 1.0
grout_thermal_conductivity_btu_per_hr_ft_f::Float64 = 0.75 # ResStock, ComStock, URBANopt value = 1.3 W/m-K = 0.75 BTU/ft-F
ghx_fluid_specific_heat_btu_per_lb_f::Float64 = 1.0
ghx_fluid_mass_density_lb_per_ft3::Float64 = 62.4
ghx_fluid_thermal_conductivity_btu_per_hr_ft_f::Float64 = 0.34
Expand Down

0 comments on commit fb3d8f5

Please sign in to comment.