Induction furnace control system

4.1 CODING :

#include<iostream.h>
#include<stdio.h>
#include<conio.h>
#define port 0x0378
void draw_screen();
void main()
{
long double ch;
ch = 0;
clrscr();
outportb(port,0);
draw_screen();
while(ch<=1)
{
gotoxy(55,20);
cin>>ch;
if(ch==0)
{
outportb(port,0);
gotoxy(25,7);
cout<<“System is presently in off state”;
}
else if(ch==1)
{
outportb(port,1);
gotoxy(25,7);
cout<<“System is presently in on state “;
}
}
clrscr();
}
void draw_screen()
{
int i;
for(i=2;i<80;i++)
{
gotoxy(i,1);
putch(char(205)); //Í
gotoxy(i,24);
putch(char(205)); //Í
}
for(i=2;i<24;i++)
{
gotoxy(1,i);
putch(char(186)); //º
gotoxy(80,i);
putch(char(186)); //º
}
gotoxy(1,1);
putch(char(201)); //É
gotoxy(80,1);
putch(char(187)); //»
gotoxy(80,24);
putch(char(188)); //¼
gotoxy(1,24);
putch(char(200)); //È
gotoxy(1,5);
putch(char(199)); //Ç
gotoxy(80,5);
putch(char(182)); //¶
for(i=2;i<80;i++)
{
gotoxy(i,5);
putch(char(196));  //Ä
}
for(i=2;i<30;i++)
{
gotoxy(i,12);
putch(char(196)); //Ä
gotoxy(i,16);
putch(char(196)); //Ä
}
for(i=13;i<24;i++)
{
gotoxy(30,i);
putch(char(179)); //³
gotoxy(11,i);
putch(char(179)); //³
}
gotoxy(11,12);
putch(char(194)); //Â
gotoxy(11,24);
putch(char(207)); //Ï
gotoxy(11,16);
putch(char(197)); //Å
gotoxy(1,12);
putch(char(199)); //Ç
gotoxy(30,12);
putch(char(191)); //¿
gotoxy(1,16);
putch(char(199)); //Ç
gotoxy(30,16);
putch(char(180)); //´
gotoxy(30,24);
putch(char(207)); //Ï
gotoxy(53,19);
putch(char(201)); //É
for(i=0;i<3;i++)
{
putch(char(205)); //Í
}
putch(char(187)); //»
gotoxy(53,20);
putch(char(186)); //º
cout<<” 0 “;
putch(char(186)); //º
gotoxy(53,21);
putch(char(200)); //È
for(i=0;i<3;i++)
{
putch(char(205)); //Í
}
putch(char(188)); //¼
gotoxy(20,3);
cout<<“ARTIFICIAL INTELLIGENCE FOR BLAST FURNACE”;
gotoxy(25,7);
cout<<“System is presently in Off state”;
gotoxy(5,10);
cout<<“You can”;
gotoxy(5,14);
cout<<“Press”;
gotoxy(13,14);
cout<<“to”;
gotoxy(7,18);
cout<<“0”;
gotoxy(7,20);
cout<<“1”;
gotoxy(7,22);
cout<<“2”;
gotoxy(13,18);
cout<<“Turn System off”;
gotoxy(13,20);
cout<<“Turn system on”;
gotoxy(13,22);
cout<<“Exit”;
}

Editorial Team
Editorial Team

We are a group of young techies trying to provide the best study material for all Electronic and Computer science students. We are publishing Microcontroller projects, Basic Electronics, Digital Electronics, Computer projects and also c/c++, java programs.

3 thoughts on “Induction furnace control system

  1. Some very fascinating factors however i think your analysis and bias leaves rather a lot to be desired. Then of course, that’s just my opinion. Have an amazing day undoubtedly a thought-frightening post.

Leave a Reply

Your email address will not be published. Required fields are marked *

Get the latest updates on your inbox

Be the first to receive the latest updates from Codesdoc by signing up to our email subscription.

    StudentProjects.in