//건축물의 피난ㆍ방화구조 등의 기준에 관한 규칙 9조 (피난계단 및 특별피난계단의 구조) 2항 2호 다목
check(REFB_9_2_3){
KS
}
KS {
getObjectProperty(Stair.effectiveWidth)>= 0.9m
}
|
min_width = 0.9
min_width_label = 'Minimum Stair Width'
def Check():
for stair in SELECT('stair'):
dist = stair.SELECT('clear width')
width = dist.UNIT('m').NUMBER()
if width < min_width:
dist.ERROR('Stair Clear Width : ' + str(width) + 'm')
else:
dist.SUCCESS('Stair Clear Width : ' + str(width) + 'm')
|