|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0580 ] | Institute of Acoustics (UK) |
---|---|
Organisation name | Institute of Acoustics (UK) |
Short name or acronym | Institute of Acoustics (UK) |
Organisation type | Center |
Activity type | Speech technology |
Address | 77A St Peter's Street |
Postal Code | AL1 3BN |
City | St Albans, Hertfordshire |
Country | United Kingdom |
Phone | + +44 172 784 8195 |
Fax | + +44 172 785 0553 |
ioa_(on)_ioa.org.uk | |
Organisation URL | http://www.ioa.org.uk |
Logo | Description |
![]() |
The United Kingdom Institute of Acoustics was formed in 1974 through the amalgamation of the Acoustics Group of the Institute of Physics and the British Acoustical Society, and is the premier organisation in the United Kingdom concerned with acoustics. The Institute has representation in many major research, educational, planning and industrial establishments covering all aspects of acoustics including aerodynamic noise, environmental, industrial and architectural acoustics, audiology, building acoustics, hearing, electroacoustics, infrasonics, ultrasonics, noise, physical acoustics, speech, transportation noise, underwater acoustics and vibration. |
Contact | |
Name | Mr. Roy Bratby |
Function | Chief Executive |
Department | |
roy.bratby_(on)_ioa.org.uk | |
Phone | + |
Fax | + |
![]() |
Last update: 2002-04-10 12:32:58 #!/usr/bin/ksh # cntr.cgi -- # version 0 DOC=$DOCUMENT_ROOT$DOCUMENT_URI VSTART=28-08-2008 WRONGLOG=${DOCUMENT_ROOT}/cntr.txt echo Content-type:text/html echo case $DOC in *experts*) CDIR=${DOCUMENT_ROOT}/cntex ;; *orgs*) CDIR=${DOCUMENT_ROOT}/cntor ;; *) WRONG=yes ;; esac CFILE=${DOC##*/} case ${CFILE} in [0-9][0-9][0-9][0-9].html) WRONG=no ;; *) WRONG=yes ;; esac [ $WRONG = yes ] && { echo "$(date) $REMOTE_ADDR ${DOC}" >> $WRONGLOG exit } CCNT=${CDIR}/${CFILE%.html}.txt CLCK=${CDIR}/${CFILE%.html}.lck [ -s $CCNT ] && COUNT=$(head -1 $CCNT) COUNT=$(( ${COUNT:-0} + 1 )) [ -f $CLCK ] || { touch $CLCK echo $COUNT > $CCNT rm -f $CLCK } echo " Visits since $VSTART: $COUNT" |