#!/bin/sh
# compliance checker

building=$1
	
echo " Start of compliance checking..."
sleep 2
echo " Evaluating ${building}..."
sleep 2
echo " There are 2 zones"
echo " The 1st zone has:"
echo "   floor area of 14.5 m2"
echo "   external wall area of 28.0 m2"
echo "     the typical wall mass is  low"
echo "   internal wall area of 12.1 m2"
echo "     the typical interal wall mass is low"
echo "   no glazing was found "
sleep 1

echo " The ceiling construction is found to have a U value > 1.0"
sleep 1
echo " The external wall construction is found to have a U value > 1.0"
echo " No glazing was found  - assumed to be un-occupied."
sleep 1
echo " "
echo " "
echo " The 2nd zone has:"
echo "   floor area of 19.5 m2"
echo "   external wall area of 32.0 m2"
echo "     the typical wall mass is  meduim"
echo "   internal wall area of 22.1 m2"
echo "     the typical interal wall mass is low"
echo "   south glazing was found"
echo " "
sleep 1

echo " The ceiling construction is found to have a U value > 1.0"
sleep 1
echo " The external wall construction is acceptable."
echo " "
echo " Type in a CR when you have finished reviewing the results. "

read xb
exit 0
