You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The floorspan is not used by the building module. In the next release this will be fixed. A temporary workaround is to alter the code in Hgebouw.py.
Change:
if "vloerOverspanning" in Gebouw:
vloerOverspanning = np.array(Vloer["vloerOverspanning"]);
var_vloerOverspanning = np.array(Vloer["var_vloerOverspanning"]);
else:
vloerOverspanning = [];
into:
if "vloerOverspanning" in Vloer:
vloerOverspanning = np.array(Vloer["vloerOverspanning"]);
if "var_vloerOverspanning" in Vloer:
var_vloerOverspanning = np.array(Vloer["var_vloerOverspanning"]);
else:
var_vloerOverspanning=[]
else:
vloerOverspanning = [];
The text was updated successfully, but these errors were encountered:
The floorspan is not used by the building module. In the next release this will be fixed. A temporary workaround is to alter the code in Hgebouw.py.
Change:
into:
The text was updated successfully, but these errors were encountered: