|
1
|
25298
|
건축물의 피난ㆍ방화구조 등의 기준에 관한 규칙 제 17조 2 항
②영 제51조의 규정에 의하여 환기를 위하여 거실에 설치하는 창문등의 면적은 그 거실의 바닥면적의 20분의 1 이상이어야 한다. 다만, 기계환기장치 및 중앙관리방식의 공기조화설비를 설치하는 경우에는 그러하지 아니하다.
|
//건축물의 피난ㆍ방화구조 등의 기준에 관한 규칙 17조 (채광 및 환기를 위한 창문등) 2항
check(REFB_17_2){
IF !CS THEN KS
}
CS{
AirConditioningSystem myAirConditioningSystem{
isObjectProperty(AirConditioningSystem.isCentralControl)
}
VentilatorEquipment myVentilatorEquipemnt{
isObjectProperty(VentilatorEquipment.isMechanical)=TRUE
}
hasElement(Room, myVentilatorEquipemnt)= TRUE
OR hasElement(Room, myAirConditioningSystem) = TRUE
}
KS{
Window myWindow{
hasElement(Room, Window) = TRUE
}
getElementArea(myWindow) >= getFloorArea(Room)*0.05
}
|
Python Code 변환 예정
|
|
Modify
|