Question:
SINGLE LOOP AND MULTIPLE LOOP CONTROL.?
star of 2morrow
2009-07-10 05:45:33 UTC
PLZ explain...
SINGLE LOOP AND MULTIPLE LOOP CONTROL.
Six answers:
?
2009-07-10 19:35:27 UTC
I assume you are talking control systems and not programming.



Single loop means you use one feedback signal which is directly influenced by the controlling medium.



Multiple loop control means you use multiple feedbacks in a cascade form to influence your controlling medium. This is more rare and is only required in specific situations.



Example:

If you are controlling a valve which adds hot water to cold water to control the outlet temperature.



Single loop: You vary the valve to directly control the outlet temperature. The control loop only uses the temperature as a control factor.



Multiple Loop: You vary the valve to control the hot water flow. However the flow set point is controlled by a loop which uses the outlet temperature to determine the appropriate hot water flow. This example could be required to be multiple loop if for example, you can calculate the needed hot water flow, and only want to trim on the outlet temperature.



Bottom line: In multiple loop, the process requires you to control an intermediate parameter whose set point is controlled based on the actual process value.
?
2016-11-10 09:49:44 UTC
Single Loop Controller
2016-04-02 16:38:10 UTC
You do know that you can reference the checkbox directly from the form, right? Assuming that the GenerateMember property of the checkbox is set to true, you can just do: If control.CheckBox1.Checked Then ... But if you really want to loop through all the controls on the user control: For Each c As Control In control.Controls   If TypeOf c Is CheckBox Then     If CType(c, CheckBox).Checked Then       MsgBox(c.Text)     End If   End If Next
2015-08-06 10:54:20 UTC
This Site Might Help You.



RE:

SINGLE LOOP AND MULTIPLE LOOP CONTROL.?

PLZ explain...

SINGLE LOOP AND MULTIPLE LOOP CONTROL.
william
2014-12-08 03:45:22 UTC
tricky situation. look onto yahoo and bing. just that could help!
king
2009-07-10 12:32:50 UTC
AI or C language?


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...