Questions tagged [process-control]

Process Control defines the boundaries within which a team works to deliver a quality product at an optimal pace.

Process Control is traditionally an engineering discipline that deals with keeping the output of a specific process within the optimal limits.

In Software as well, process control is applied in a similar sense to make sure that all the energies are applied towards achieving the same goal or successful delivery of quality software. Process Control, in software, would mean that we define the boundaries within which we work and the results are acceptable. The requirement specifications, design documents, number of test cases, UAT, Code Reviews all come under process control.

43 questions
0
votes
0 answers

AI categorical prediction for time variant data

I'm currently trying to use a sensor to measure a process's consistency. The sensor output varies wildly in its actual reading but displays features that are statistically different across three categories [dark, appropriate, light], with dark and…
0
votes
0 answers

Standardized tails of pearson curves

I am working on process capability analysis for non normal data, and i need standardized tails of pearson curves which are used in clement's method to approximate the Upper and lower percentiles based on the values of kurtosis and…
0
votes
0 answers

Discrete event simulation with process control? (Regulation)

I am experiencing a problem with a process simulation tool. I am modelling the production of certain products (Read: Chem. Process) and the simulation tool I am using is event based simulation. The process I am modelling is a continous process, and…
0
votes
0 answers

Process Control in C with Custom Commands

Okay so I have this assignment that requires me to build a parallel shell tool called PELL. It provides users of pell with the ability to execute commands, execute multistep processes connected by pipes, and execute independent processes. Input: …
RasecCesar
  • 33
  • 5
0
votes
1 answer

Parameter or argument in function

Why inventory[dragon_loot[n]] == inventory[added_items[n]], in following codes? def display_inventory(inventory): print('Inventory:') items = 0 for k, v in inventory.items(): print(str(v) + ' ' + str(k)) items += v …
Tuto
  • 67
  • 5
0
votes
2 answers

Using raspberry pi to connect to OPC server

I'm pretty new to working with servers/clients and all that, which is why I'm having trouble communicating to a server with my Raspberry Pi. Basically, I have an OLE Process Control (OPC) server and client with a bunch of tags on it that have…
0
votes
2 answers

Web-based or PC based for process control application?

I want to create a process control application. Events update the database and that should be reflected on the GUI. Although I personally prefer Linux, the hard fact it that 100% of the potential customers I can imagine run Windows. Ok, for Windows…
Mawg says reinstate Monica
  • 38,334
  • 103
  • 306
  • 551
0
votes
1 answer

bash script, control processes with stdin/stdout

Please help to advise how to use bash to catch the sub-process's stdout and send character to sub-process's stdin. For example, use bash to control 10 videos convert by ffmpeg process, bash code needs to watch each ffmpeg process's stdout then…
Yehudi
  • 189
  • 1
  • 1
  • 11
0
votes
3 answers

Context Switch questions: What part of the OS is involved in managing the Context Switch?

I was asked to anwer these questions about the OS context switch, the question is pretty tricky and I cannot find any answer in my textbook: How many PCBs exist in a system at a particular time? What are two situations that could cause a Context…
0
votes
1 answer

PCNTL not enabled in php even after compiling

I just compiled my PHP with --enable-pcntl, but when I try to access the process control functions in PHP, I get: Fatal error: Call to undefined function pcntl_fork() Am I missing something? My apache is not compiled with prefork. Is that required…
Rohit Chopra
  • 2,791
  • 4
  • 28
  • 33
-1
votes
1 answer

Program crashed for calling execvp to compile a program with error?

I use execvp to compile a program with error. But then error message pop on my terminal screen which should not happen because if execvp fails, it will only let child return with exit status. I do not understand why my terminal will actually show…
kluo
  • 131
  • 1
  • 10
-2
votes
2 answers

the unexpected output of fork() when redirected to file.txt

I am working on process control in linux operating system using c. the fork() function really confuse me . what I know : when fork() is called 1) whatever the code just after fork() , is copied to the child process. 2) we…
user2670535
  • 129
  • 1
  • 2
  • 6
-3
votes
1 answer

Designing a water tank factory process in LabVIEW

I am currently designing a factory process in LabVIEW. I have a tank filled with water. I want to transfer 80% from it to one tank and after that the remaining 20% into another tank. How can I do that in LabVIEW?
1 2
3