|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2705 ] | Institute of Engineering Cybernetics (IEC) |
---|---|
Organisation name | Institute of Engineering Cybernetics (IEC) |
Short name or acronym | Institute of Engineering Cybernetics (IEC) |
Organisation type | Center |
Activity type | Speech technology |
Address | Surganova, 6 |
Postal Code | 220012 |
City | Minsk |
Country | Belarus |
Phone | + +375 172 68 50 74 |
Fax | + +375 172 31 84 03 |
Organisation URL | http://itk1.bas-net.by/iec.html |
Logo | Description |
![]() |
The Institute of Engineering Cybernetics (IEC) of the Academy of Sciences of Belarus was founded in 1965 on the base of some cybernetic laboratories of the Institute of Mathematics and Computers. For more than 30 years the IEC made a significant contribution to the development of fundamental and applied research in the field of Computer Aided Design (CAD), image processing, intelligent processes modeling. The IEC employees have published 128 monographs, more than 340 brochures, 170 collected volumes of articles, about 4000 articles, reports, preprints. Main Objectives: + Carrying out fundamental and applied research in the fields of cybernetics, informatics, computer science, applied mathematics, computer aided design and some other closed fields + Cooperating with industrial research centers and enterprises in solving technical problems faced by the production sector in the field of computer aided design, computer aided production engineering, new products testing, software and hardware development + Participating in the preparation of long term plans for research and development in Belarus. The IEC plays an important part in the formulation of national policies in the above mentioned fields + Preparation and training of high-qualified research staff capable to tackle the scientific and technological problems |
Member of elsnet | Contact |
Name | Mr. Vyatcheslav S. Tanaev |
Function | Director |
Department | National Academy of Sciences of Belarus |
tanaev_(on)_newman.bas-net.by | |
Phone | + +375 172 84 21 75 |
Fax | + +375 172 84 21 75 |
![]() |
Last update: 2002-05-10 12:24:52 #!/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" |