SlideShare ist ein Scribd-Unternehmen logo
1 von 7
Downloaden Sie, um offline zu lesen
IT-215
         System Software
          Project Report

   Submitted on: 16th April 2012



     Simulation of
manufacture of Sulphuric
         Acid

  Guided By: Prof. Sanjay Chaudhary
   Mentored By: Anadi Chaturvedi




                      Submitted By:
                      Prashant Pandey (201001067)
                      Swena Gupta     (201001104)
Goal
To simulate process automation for a manufacturing plant

Problem Statement
Assume that there is a manufacturing plant, which
manufactures finished products based on processing on raw
materials. There are few machines in the plant. Each
machine inputs raw materials, performs processing and
produces semi-finished product, which is supplied as input
or raw material to another machine. Thus, there is a chain of
machines which are involved in the process inputting raw
materials or semi-finished product and produces semi-
finished product. Finally finished product will be the final
output. Each machine is to be simulated as a process. Various
processes can be initiated independently of each other and
executed in background. Each process may take input from a
specific named pipe and write output as a processed semi-
finished product on some other named pipe. Define the
sequence of actions among 5-7 such machines, define the
flow input and output among them. One machine should be
identified as a machine, which generates finished product,
i.e. gray cloth. Each machine operates under certain
environmental conditions, i.e. machine should be operated
within the range of temperature. If temperature level of any
of the machine is more than the upper limit then it should


                               1
generate signal and send it to the main controlling machine,
which will inform all other machines to stop operations.


Concepts Used
     • Multiple Threading
     • Mutual Exclusion and Condition Variables
     • Inter Process Communication using Pipes
     • Signal Handling and Processing
     • Accessing System time.


Programming Language
C Language inclusive of concepts of Shell Programming.


      used
Tools used
gcc compiler.


Header Files Used
1)     #include <stdio.h>
       This header file contains declarations used in most input
       and output and is typically included in all C programs.
       eg. printf() etc.
2)     #include <stdlib.h>
       This header file contains Utility functions.
       eg. exit() etc.


                                 2
3)    # include <pthread.h>
      This header file defines the threads and its functions.
      eg. pthread_create() etc.
4)    #include <signal.h>
      To catch the various signals implemented in our
      program, we have included <signal.h> because it
      contains sigaction as a structure.
5)     #include <string.h>
      This header file contains String functions.
      eg. strlen()
6)     #include <time.h>
      This header file contains implementation of date and
      time manipulation operations.


Test Programs
a)
time_t now;
time (&now);
printf ("nn%snn", ctime (&now));
//the above code snippet has been used to access system time.
b)
act.sa_handler = catchint;
sigfillset(&(act.sa_mask));
sigaction(SIGINT , &act, NULL);
sigaction(SIGUSR1 , &act, NULL);
void catchint(int signo) // handler for sigaction

                                       3
{
      if(signo==SIGINT)
      printf("nn'Ctrl+C' pressed...Interrupt generated and
ignored!!!nn");
      if(signo==SIGQUIT)
      .
      .
      .
      .
}
// The above code snippet is used to call signals at various
activities of user such as pressing Ctrl+C to generate SIGINT
etc. and to handle them using catchint function.
c)
if(pthread_create(&control_thread, NULL, control_machine, (void *)
quantity)!=0)
{
      printf("Failed to create a threadn");
      exit(1);
}
      pthread_join(control_thread, NULL);


// The above part of program is used to create threads and to
join them
d)
pipe (p);
write (p[1], write_msg, 60);
read(p[0], read_msg, 60);
// the above statements are used to declare and do read-write
operation on a named pipe.
                                        4
e)
pthread_mutex_lock (&count_lock);
while (taskid >= COUNT)
{
     pthread_cond_wait (&count_cond, &count_lock);
}
pthread_cond_broadcast (&count_cond);
pthread_mutex_unlock (&count_lock);


//the above statements are used to put mutual exclusion
amongst all the threads and to make all other threads wait
while one thread is executing.


Assumptions
1.    The Initial & Favourable specifications of machines are
pre-defined as stated in program (while we run the
program, it displays on the console).


2.   According to the code made by us, the specifications has
been set, so that if the required amount is > 3 litres, all the 5
stage proccess machines gets overheated & production of 4th
lts onwards acid needs to cool each machine. This has been
shown appropriately while production of 4th litre and
onwards acid production.




                                    5
3.     This has been done deliberately to introduce and
show the concept of temperature in our machine automated
manufacturing-plant system.


4.     Following SIGNALS have been handled in our program
         a. SIGINT : signal called for handling Ctrl+C.
         b. SIGQUIT : signal called for handling Ctrl+
         c. SIGALRM : signal called for production of next litre
of acid.
         d. SIGWINCH: signal called when output terminal
window size is changed.
         e. SIGTSTP : signal called for handling Ctrl+Z.
         f. SIGUSR1 : signal called if the user enters invalid
input.


List of Programs

     • final_manufacture.c

Log Files
     • log_for_3_litres_prodn
     • log_for_6_litres_prodn
     • log_for_9_litres_prodn
     • log_for_wrong_user_input
     • log_with_all_signals_handled_6_litres


                                  6

Weitere ähnliche Inhalte

Was ist angesagt?

3 operators-expressions-and-statements-120712073351-phpapp01
3 operators-expressions-and-statements-120712073351-phpapp013 operators-expressions-and-statements-120712073351-phpapp01
3 operators-expressions-and-statements-120712073351-phpapp01
Abdul Samee
 

Was ist angesagt? (17)

How c program execute in c program
How c program execute in c program How c program execute in c program
How c program execute in c program
 
C++20 features
C++20 features C++20 features
C++20 features
 
20BCE1734.pdf
20BCE1734.pdf20BCE1734.pdf
20BCE1734.pdf
 
Programming in C
Programming in CProgramming in C
Programming in C
 
Removal Of Recursion
Removal Of RecursionRemoval Of Recursion
Removal Of Recursion
 
Signal
SignalSignal
Signal
 
Assignment no 5
Assignment no 5Assignment no 5
Assignment no 5
 
03. operators and-expressions
03. operators and-expressions03. operators and-expressions
03. operators and-expressions
 
3 operators-expressions-and-statements-120712073351-phpapp01
3 operators-expressions-and-statements-120712073351-phpapp013 operators-expressions-and-statements-120712073351-phpapp01
3 operators-expressions-and-statements-120712073351-phpapp01
 
OOPS using C++
OOPS using C++OOPS using C++
OOPS using C++
 
Loops in c
Loops in cLoops in c
Loops in c
 
Synapse india dotnet development overloading operater part 3
Synapse india dotnet development overloading operater part 3Synapse india dotnet development overloading operater part 3
Synapse india dotnet development overloading operater part 3
 
My first program in c, hello world !
My first program in c, hello world !My first program in c, hello world !
My first program in c, hello world !
 
[CCC'21] Evaluation of Work Stealing Algorithms
[CCC'21] Evaluation of Work Stealing Algorithms[CCC'21] Evaluation of Work Stealing Algorithms
[CCC'21] Evaluation of Work Stealing Algorithms
 
1 introduction to c program
1 introduction to c program1 introduction to c program
1 introduction to c program
 
Tail Recursion in data structure
Tail Recursion in data structureTail Recursion in data structure
Tail Recursion in data structure
 
C program to write c program without using main function
C program to write c program without using main functionC program to write c program without using main function
C program to write c program without using main function
 

Andere mochten auch (9)

Современные материалы для пассивного дома
Современные материалы для пассивного домаСовременные материалы для пассивного дома
Современные материалы для пассивного дома
 
Sweet life
Sweet lifeSweet life
Sweet life
 
Lab report 201001067_201001104
Lab report 201001067_201001104Lab report 201001067_201001104
Lab report 201001067_201001104
 
Lab report 201001067_201001104
Lab report 201001067_201001104Lab report 201001067_201001104
Lab report 201001067_201001104
 
Incorporating multimedia in differentiated instruction
Incorporating multimedia in differentiated instructionIncorporating multimedia in differentiated instruction
Incorporating multimedia in differentiated instruction
 
CakePHP3使ってみて
CakePHP3使ってみてCakePHP3使ってみて
CakePHP3使ってみて
 
умный дом презентация
умный дом презентацияумный дом презентация
умный дом презентация
 
Manual epson
Manual epsonManual epson
Manual epson
 
применение солнечной энергии для теплоснабжения объектов
применение солнечной энергии для теплоснабжения объектовприменение солнечной энергии для теплоснабжения объектов
применение солнечной энергии для теплоснабжения объектов
 

Ähnlich wie Lab report 201001067_201001104

Write a program in C or C++ which simulates CPU scheduling in an opera.pdf
Write a program in C or C++ which simulates CPU scheduling in an opera.pdfWrite a program in C or C++ which simulates CPU scheduling in an opera.pdf
Write a program in C or C++ which simulates CPU scheduling in an opera.pdf
sravi07
 
Programming Assignment #2CSci 430 Spring 2019Dates.docx
Programming Assignment #2CSci 430 Spring 2019Dates.docxProgramming Assignment #2CSci 430 Spring 2019Dates.docx
Programming Assignment #2CSci 430 Spring 2019Dates.docx
stilliegeorgiana
 
Programming Assignment #2CSci 430 Spring 2019Dates.docx
Programming Assignment #2CSci 430 Spring 2019Dates.docxProgramming Assignment #2CSci 430 Spring 2019Dates.docx
Programming Assignment #2CSci 430 Spring 2019Dates.docx
denneymargareta
 
Help Needed!UNIX Shell and History Feature This project consists.pdf
Help Needed!UNIX Shell and History Feature This project consists.pdfHelp Needed!UNIX Shell and History Feature This project consists.pdf
Help Needed!UNIX Shell and History Feature This project consists.pdf
mohdjakirfb
 
System Calls.pptxnsjsnssbhsbbebdbdbshshsbshsbbs
System Calls.pptxnsjsnssbhsbbebdbdbshshsbshsbbsSystem Calls.pptxnsjsnssbhsbbebdbdbshshsbshsbbs
System Calls.pptxnsjsnssbhsbbebdbdbshshsbshsbbs
ashukiller7
 
15LLP108_Demo4_LedBlinking.pdf1. Introduction In D.docx
15LLP108_Demo4_LedBlinking.pdf1. Introduction In D.docx15LLP108_Demo4_LedBlinking.pdf1. Introduction In D.docx
15LLP108_Demo4_LedBlinking.pdf1. Introduction In D.docx
felicidaddinwoodie
 

Ähnlich wie Lab report 201001067_201001104 (20)

Os lab final
Os lab finalOs lab final
Os lab final
 
Linux_C_LabBasics.ppt
Linux_C_LabBasics.pptLinux_C_LabBasics.ppt
Linux_C_LabBasics.ppt
 
Write a program in C or C++ which simulates CPU scheduling in an opera.pdf
Write a program in C or C++ which simulates CPU scheduling in an opera.pdfWrite a program in C or C++ which simulates CPU scheduling in an opera.pdf
Write a program in C or C++ which simulates CPU scheduling in an opera.pdf
 
Introduction to MPI
Introduction to MPIIntroduction to MPI
Introduction to MPI
 
Programming Assignment #2CSci 430 Spring 2019Dates.docx
Programming Assignment #2CSci 430 Spring 2019Dates.docxProgramming Assignment #2CSci 430 Spring 2019Dates.docx
Programming Assignment #2CSci 430 Spring 2019Dates.docx
 
Programming Assignment #2CSci 430 Spring 2019Dates.docx
Programming Assignment #2CSci 430 Spring 2019Dates.docxProgramming Assignment #2CSci 430 Spring 2019Dates.docx
Programming Assignment #2CSci 430 Spring 2019Dates.docx
 
Raspberry pi Part 6
Raspberry pi Part 6Raspberry pi Part 6
Raspberry pi Part 6
 
Activity 5
Activity 5Activity 5
Activity 5
 
Flow based programming in golang
Flow based programming in golangFlow based programming in golang
Flow based programming in golang
 
Help Needed!UNIX Shell and History Feature This project consists.pdf
Help Needed!UNIX Shell and History Feature This project consists.pdfHelp Needed!UNIX Shell and History Feature This project consists.pdf
Help Needed!UNIX Shell and History Feature This project consists.pdf
 
Parallel programming using MPI
Parallel programming using MPIParallel programming using MPI
Parallel programming using MPI
 
Implementing of classical synchronization problem by using semaphores
Implementing of classical synchronization problem by using semaphoresImplementing of classical synchronization problem by using semaphores
Implementing of classical synchronization problem by using semaphores
 
System Calls.pptxnsjsnssbhsbbebdbdbshshsbshsbbs
System Calls.pptxnsjsnssbhsbbebdbdbshshsbshsbbsSystem Calls.pptxnsjsnssbhsbbebdbdbshshsbshsbbs
System Calls.pptxnsjsnssbhsbbebdbdbshshsbshsbbs
 
System programmin practical file
System programmin practical fileSystem programmin practical file
System programmin practical file
 
LP-Unit3.docx
LP-Unit3.docxLP-Unit3.docx
LP-Unit3.docx
 
15LLP108_Demo4_LedBlinking.pdf1. Introduction In D.docx
15LLP108_Demo4_LedBlinking.pdf1. Introduction In D.docx15LLP108_Demo4_LedBlinking.pdf1. Introduction In D.docx
15LLP108_Demo4_LedBlinking.pdf1. Introduction In D.docx
 
Parallel computing(2)
Parallel computing(2)Parallel computing(2)
Parallel computing(2)
 
Global Interpreter Lock: Episode I - Break the Seal
Global Interpreter Lock: Episode I - Break the SealGlobal Interpreter Lock: Episode I - Break the Seal
Global Interpreter Lock: Episode I - Break the Seal
 
C++ basics
C++ basicsC++ basics
C++ basics
 
Oleksandr Smoktal "Parallel Seismic Data Processing Using OpenMP"
Oleksandr Smoktal "Parallel Seismic Data Processing Using OpenMP"Oleksandr Smoktal "Parallel Seismic Data Processing Using OpenMP"
Oleksandr Smoktal "Parallel Seismic Data Processing Using OpenMP"
 

Kürzlich hochgeladen

Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 

Kürzlich hochgeladen (20)

DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontology
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 

Lab report 201001067_201001104

  • 1. IT-215 System Software Project Report Submitted on: 16th April 2012 Simulation of manufacture of Sulphuric Acid Guided By: Prof. Sanjay Chaudhary Mentored By: Anadi Chaturvedi Submitted By: Prashant Pandey (201001067) Swena Gupta (201001104)
  • 2. Goal To simulate process automation for a manufacturing plant Problem Statement Assume that there is a manufacturing plant, which manufactures finished products based on processing on raw materials. There are few machines in the plant. Each machine inputs raw materials, performs processing and produces semi-finished product, which is supplied as input or raw material to another machine. Thus, there is a chain of machines which are involved in the process inputting raw materials or semi-finished product and produces semi- finished product. Finally finished product will be the final output. Each machine is to be simulated as a process. Various processes can be initiated independently of each other and executed in background. Each process may take input from a specific named pipe and write output as a processed semi- finished product on some other named pipe. Define the sequence of actions among 5-7 such machines, define the flow input and output among them. One machine should be identified as a machine, which generates finished product, i.e. gray cloth. Each machine operates under certain environmental conditions, i.e. machine should be operated within the range of temperature. If temperature level of any of the machine is more than the upper limit then it should 1
  • 3. generate signal and send it to the main controlling machine, which will inform all other machines to stop operations. Concepts Used • Multiple Threading • Mutual Exclusion and Condition Variables • Inter Process Communication using Pipes • Signal Handling and Processing • Accessing System time. Programming Language C Language inclusive of concepts of Shell Programming. used Tools used gcc compiler. Header Files Used 1) #include <stdio.h> This header file contains declarations used in most input and output and is typically included in all C programs. eg. printf() etc. 2) #include <stdlib.h> This header file contains Utility functions. eg. exit() etc. 2
  • 4. 3) # include <pthread.h> This header file defines the threads and its functions. eg. pthread_create() etc. 4) #include <signal.h> To catch the various signals implemented in our program, we have included <signal.h> because it contains sigaction as a structure. 5) #include <string.h> This header file contains String functions. eg. strlen() 6) #include <time.h> This header file contains implementation of date and time manipulation operations. Test Programs a) time_t now; time (&now); printf ("nn%snn", ctime (&now)); //the above code snippet has been used to access system time. b) act.sa_handler = catchint; sigfillset(&(act.sa_mask)); sigaction(SIGINT , &act, NULL); sigaction(SIGUSR1 , &act, NULL); void catchint(int signo) // handler for sigaction 3
  • 5. { if(signo==SIGINT) printf("nn'Ctrl+C' pressed...Interrupt generated and ignored!!!nn"); if(signo==SIGQUIT) . . . . } // The above code snippet is used to call signals at various activities of user such as pressing Ctrl+C to generate SIGINT etc. and to handle them using catchint function. c) if(pthread_create(&control_thread, NULL, control_machine, (void *) quantity)!=0) { printf("Failed to create a threadn"); exit(1); } pthread_join(control_thread, NULL); // The above part of program is used to create threads and to join them d) pipe (p); write (p[1], write_msg, 60); read(p[0], read_msg, 60); // the above statements are used to declare and do read-write operation on a named pipe. 4
  • 6. e) pthread_mutex_lock (&count_lock); while (taskid >= COUNT) { pthread_cond_wait (&count_cond, &count_lock); } pthread_cond_broadcast (&count_cond); pthread_mutex_unlock (&count_lock); //the above statements are used to put mutual exclusion amongst all the threads and to make all other threads wait while one thread is executing. Assumptions 1. The Initial & Favourable specifications of machines are pre-defined as stated in program (while we run the program, it displays on the console). 2. According to the code made by us, the specifications has been set, so that if the required amount is > 3 litres, all the 5 stage proccess machines gets overheated & production of 4th lts onwards acid needs to cool each machine. This has been shown appropriately while production of 4th litre and onwards acid production. 5
  • 7. 3. This has been done deliberately to introduce and show the concept of temperature in our machine automated manufacturing-plant system. 4. Following SIGNALS have been handled in our program a. SIGINT : signal called for handling Ctrl+C. b. SIGQUIT : signal called for handling Ctrl+ c. SIGALRM : signal called for production of next litre of acid. d. SIGWINCH: signal called when output terminal window size is changed. e. SIGTSTP : signal called for handling Ctrl+Z. f. SIGUSR1 : signal called if the user enters invalid input. List of Programs • final_manufacture.c Log Files • log_for_3_litres_prodn • log_for_6_litres_prodn • log_for_9_litres_prodn • log_for_wrong_user_input • log_with_all_signals_handled_6_litres 6