Question

In a certain chemical processing plant a liquid chemical element is used in a manufacturing process Said chemical element is

0 0
Add a comment Improve this question Transcribed image text
Answer #1

| |

| |

| |

|________|= A goes hight when it falls below 25 % and there are three tanks B and C

The solution is (A&B)||(B&C)||(C&A) which lights up when atleast 2 tanks goes below 25 % of the value

To implement in arduino. the code is given below with a b c as input pins 10, 11 and 12 and 13 as output pin

void setup() {
  
pinMode(10, INPUT);

pinMode(11, INPUT);

pinMode(12, INPUT);

pinMode(13, OUTPUT);
}

// the loop function runs over and over again forever
void loop() {

boolean a = digitalRead(10);

boolean b = digitalRead(11);

boolean c = digitalRead(12);

if( a&b)||(b&c)||(c&&a){

  digitalWrite(13, HIGH); // turn the LED on (HIGH is the voltage level)

}
}

Add a comment
Know the answer?
Add Answer to:
In a certain chemical processing plant a liquid chemical element is used in a manufacturing process Said chemical el...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Four large tanks at a chemical plant contain different liquids being bested. Liquid-level sensors are used...

    Four large tanks at a chemical plant contain different liquids being bested. Liquid-level sensors are used to detect whenever the level in thanks A and B rises. Above a predetermined level Temperature sensor in tanks C and D detect when the temperature in these drops below a prescribed temperature limit. Assume that the liquid-level sensor outputs(A and B)are LOW (0) when the level is satisfactory and HIGH(1)when the level is too high. Also, the temperature-sensor outputs (C and D)are LOW(0)when...

  • 1. In an oil treatment plant, four different qualities of oils are stored in four tanks A, B, C and D. A level sens...

    1. In an oil treatment plant, four different qualities of oils are stored in four tanks A, B, C and D. A level sensor in each tank produces a high voltage when the level of oil in the tank falls w a specified point. Design and implement a circuit using CMOS transistors that monitors The level of any two tank drops below the specified point The level of any one tank drops below the specified point The level of any...

  • 10. Problem 12.38 from the textbook (Statement: In a chemical processing plant a liquid is pumped...

    10. Problem 12.38 from the textbook (Statement: In a chemical processing plant a liquid is pumped from an open tank, through a 0.1-m-diameter vertical pipe, and into another open tank as shown in the figure (a). A valve is located in the pipe, and the minor loss coefficient for the valve as a function of the valve setting is shown in figure (b). The pump head capacity relationship is given by the equation ha =52.0-1.01x10?Q? with ha in meters when...

  • I need Summary of this Paper i dont need long summary i need What methodology they used , what is the purpose of this p...

    I need Summary of this Paper i dont need long summary i need What methodology they used , what is the purpose of this paper and some conclusions and contributes of this paper. I need this for my Finishing Project so i need this ASAP please ( IN 1-2-3 HOURS PLEASE !!!) Budgetary Policy and Economic Growth Errol D'Souza The share of capital expenditures in government expenditures has been slipping and the tax reforms have not yet improved the income...

  • 10. Write a one-page summary of the attached paper? INTRODUCTION Many problems can develop in activated...

    10. Write a one-page summary of the attached paper? INTRODUCTION Many problems can develop in activated sludge operation that adversely affect effluent quality with origins in the engineering, hydraulic and microbiological components of the process. The real "heart" of the activated sludge system is the development and maintenance of a mixed microbial culture (activated sludge) that treats wastewater and which can be managed. One definition of a wastewater treatment plant operator is a "bug farmer", one who controls the aeration...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT