//소화기구 및 자동 소화장치의 화재안전기준(nfsc 101) 4조 (설치기준) 1항 7호
Check(NFSC101_4_1_7){
IF CS THEN KS
}
CS{
Space mySpace{
getSpaceUsage() = "Kitchen"
}
}
KS{
AutomaticFireExtinguishingEquipment myAutomaticFireExtinguishingEquipment{
isObjectProperty(AutomaticFireExtinguishingEquipment.isKitchenType) = TRUE
}
hasSpace(mySpace,myAutomaticFireExtinguishingEquipment) = TRUE
getResult(NFSC101_4_1_7_3)=TRUE
}
|
Python Code 변환 예정
|