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 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: