-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
verify whether hZone is filled in #1338
Comments
A quick idea. At component level we can check the following: If an internal wall component is horizontal you would expect that the connecting hFloor values are not equal. This could prompt a warning to check the hFloor input. |
To check if things 'add up' on building level you will need to have information about the building as a whole that is not available so would require a user input. But, at some point, it might be better to just NOT have a default value for the hFloor and just require this input in all models. Older models will be 'broken', but only to the extend that they require 1 additional parameter per zone which can then be just hFloor=0. |
It could indeed be a good idea to not add a default value for |
That's also a good idea! |
The way I see it, there only arise problems when zones have an inconsistent |
It is more robust to assert only for ceiling/floors. In buildings with split levels or spaces that are double-heighted two neighbouring spaces can easily have different absolute floor heights. |
But are the equations also correct in this case? Note also that I changed the implementation yesterday in my pull request. So that may affect the answer to that question :p What I mean is: we assumed that the window is at half the zone height. If zones have different heights, then the window is at different heights in both zones too. So that's not correct I think. |
I will need to check the changed implementation then. The default value was indeed to put it at half of the zone height but this was overridable I think. In most cases the default value is a 'most likely' parameter, placing the window in the middle of the zone is the assumption of minimum stack-effect. Anyway, the window position will most likely be only dependent on the zone it is connected to? For a typical appartment or typical office floor , the hFloor and hZone will be equal. For special/untypical cases, the default value will be off a bit, but I think that is fine and up to the modeler to recognize when intervention to the default values are necessary. |
For a window, yes, but for a cavity in an And the user probably doesn't know how to set |
Just to be sure, in which branch do I need to check? #1327? |
Ok, I pinpointed the issue of the internal cavities and different heights in the current implementation. I'm figuring out a solution. |
I propose to add two parameters similar to what we have in the window component that positions the bottom of the cavity (/doormodel) relative the the absolute floor height. -> href,cav,A and href,cav,B With this new parameter all kinds of cavities can be modelled. The proposed default (picture on the right) would then be that this cavity is a door starting at the lowest possible height. This is the either 0 or the difference between the absolute floor heights. Practically after adding the new parameters. hA and hB of the door model need to become (hzoneA/2-href,cav,A) and (hzoneB/2-href,cav,B) respectively. |
A check/assert could then be that: hfloorA+href,cav,A and hfloorB+href,cav,B should be the same. |
This one Mathadon#2 :) |
is used when
TwoZone
is used. When the parameter is not filled in, non-physical results will be generated. We should somehow verify that the parameter has been filled in correctly.A first approach would be to throw a warning if the default value has not been changed. But ideally we can verify whether the values 'add up'. @kldjonge have you looked into such an approach in the past?
I propose to handle this issue separately from the pending merge requests.
The text was updated successfully, but these errors were encountered: