Adding additional parameters in HB Vegetation Material

Hi all,

Hope you are doing great. I would like to ask how I can add additional parameters in the Vegetation Material node in HB for green roofs. In the HB Legacy, there is a notepad version of parameters which contain additional parameters. However, in the newer version of HB, the parameters are limited as shown.

Could you please help me with it?

Thank you so much!

Older version (above), newer version (below)


@chris could you please help me with it?

Thank you so much!

Hi @Usman ,

All of the properties of the EnergyPlus object are exposed here on the Ladybug Tools SDK object for EnergyMaterialVegetation. Just edit the code inside the component somewhere around these lines:

You can set properties after creating the material object like the following:

# create the material
mat = EnergyMaterialVegetation(
    name, _thickness_, _conductivity_, _density_, _spec_heat_, 'MediumRough',
    _soil_emiss_, soil_abs, None, _plant_height_, _leaf_area_ind_,
    _leaf_reflect_, _leaf_emiss_, _stomat_resist_
)
if _name_ is not None:
    mat.display_name = _name_

mat.sat_vol_moist_cont = 0.3
residual_vol_moist_cont = 0.01
init_vol_moist_cont = 0.1
1 Like

Thank you Chris for the help. It has solved my problem :slight_smile:

1 Like