首页
网站开发
桌面应用
管理软件
微信开发
App开发
嵌入式软件
工具软件
数据采集与分析
其他
首页
>
> 详细
EEE6207程序辅导、programming语言辅导、讲解C/C++编程 讲解留学生Processing|解析Haskell程序
项目预算:
开发周期:
发布时间:
要求地区:
EEE6207 – Assignment – 2020/21
P. Rockett
12th December 2020
Note
This assignment will almost certainly require you to do some searching to identify suitable
methods of solving the problem(s). The Linux API—the system to be used here—contains so
many functions that it is impossible to learn all the details. Therefore, real systems programming
frequently involves looking through the documentation. However, by this stage in the
course, you should understand enough about operating systems to narrow your search down
to the relevant OS features.
1 Introduction
Computers are increasingly being used in control applications. Consider the case of a computerbased
controller where the system generates an updated control input every 10-15 minutes—in other
words, this is a real-time controller, but the time scale is not computationally very demanding. Such
systems are common in, for example, chemical engineering where the characteristic response time of
a physically massive chemical reactor is very slow due to inertia.
Looking at the simple example program below, the main program comprises an infinite loop
(since control is ongoing). The value of the input to the control variable u is determined by a simple
function called control function that takes the time index t as an input. Notice that in this trivial
example, the printf statement mimics sending the value of u to the plant at which point the process
sleeps for some period equal to the update time for the controller—maybe 10-15 minutes might be
used in practice for a large, slowly-responding plant1
.
// Example controller program -- pir
#include
#include
#include
#include
int control_function(const unsigned k, double* u)
{
*(u) = sin((double)k / 50.0); // Calculate input to plant
return 0;
} // control_function()
1More elegantly, the process should calculate the absolute time in the future when the next control output needs to be
calculated, and set an alarm for this time. In this way, if the calculation of the control signal takes a significant amount of
time, the sampling interval is held truly constant. But the simple sleeping solution is adequate here.
1
int main()
{
unsigned t = 0;
double u;
while(1)
{
if(control_function(t, &u) == -1)
{
printf("control_function failed\n");
exit(-1);
}
printf("%lf @ %u\n", u, t); // Mimics applying controller input u
to plant
t++; // Increment time index
sleep(1); // Sampling time... maybe 10-15 minutes in practice
}
return 0; // Should never reach here!
} // main())
Note: The control function here is trivial. . . in fact, it’s not really a controller at all! This
assignment is not about control rather the effective implementation of computer control by exploiting
operating system concepts.
In practice, it is often necessary to update the control function function to accommodate
changes to the plant characteristics, modifications to the plant operating protocols, etc. The simplest
way of doing this would be to stop the controller program, replace it with an updated program, and
restart the program. But stopping the controller is undesirable—the (brief) loss of control can cause
product loss or deviations. Also, some industrial processes are unstable so removing control—even
momentarily—can have bad consequences. Finally, the control program may be running on a small
embedded computer that does not even have a terminal so any updates need to be made remotely.
©P.Rockett, 2020 2
The Assignment Part 1: What is required is a means of updating the controller function without
stopping the controller program. Thus the first part of the task is to modify the above C program
to:
1. Change the function called within the infinite loop to some a completely arbitrary
function; the function prototype, however, should remain unchanged. As a demonstration,
you can use something like a function almost identical to the existing
control function but one that calculates u = 2.0 * sin((double)k / 20.0)
although this is just a simple example—in practice, the new function could be absolutely
anything.
2. The controller program should only make this change when instructed to do so by an
external command; having the controller program read a user input with a scanf instruction
or similar is not an acceptable way of initiating the update—the controller may
be running on an embedded computer with no terminal.
3. To conform to good programming practice, your solution should include appropriate
error checking and all possible recovery mechanisms. For example, if your procedure
to substitute a new controller function goes wrong for some reason, the existing
function should continue to be used so that the plant is still under control. This may
no longer be optimal, but it is better than the control of an exothermic chemical process
ceasing at 4am on a Sunday morning!
Assignment Part 2: Unless you are very lucky, the output of the new control function will not
be equal to the output of the old control function at the point of switchover. This may result
in the plant being subjected to an abrupt step input, which is highly undesirable for a number
of reasons. It is therefore normal when switching between controllers to avoid such a step (or
‘bump’) in the control inputs by implementing so-called bumpless control. Instead of changing
control algorithms abruptly, the action of the new controller is gradually introduced by using
a system input of:
u = λunew + (1 − λ)uold
where the value of λ is gradually increased from 0 to 1 over some number of time steps—say,
10—and thereafter the old controller’s output is ignored. This has the effect of ‘fading in’ the
action of the new controller and ‘fading out’ the old one to achieve a bumpless transition.
Further modify the above program to implement a bumpless transition when you introduce
the new control function; demonstrate that you have achieved this with a suitable plot of
controller outputs covering the switchover between controllers clearly indicating the point at
which the new control function was made active.
(Strictly, bumpless control is not really an operating system topic so this section just ‘tidies
up’ the program; for that reason, it attracts a fairly low proportion of the marks.)
©P.Rockett, 2020 3
Report Submission
• This assignment will contribute 25% to the overall module mark. (You will need to pass each
of the three assessment elements, of which this is the first, to successfully pass the course.)
• The report should comprise up to 4 pages of A4 submitted via the EEE6207 course page on
Blackboard by 8
th February 2021.
• You should discuss the design alternatives and trade-offs you have considered, and justify your
final choice. These reasons might include, for example, that your preferred solution was simpler
to code (and therefore less likely to contain bugs). Or maybe that your solution makes it
possible to also do x, y and z.
• The report should include your code—or at least sufficient of it to fully demonstrate your implementation,
as well as evidence that it actually works. (A screen grab of the terminal output
may be adequate.)
• Part 1 will be worth 80% of the total marks—45% of which will be awarded for the design and
discussion of design alternatives, and the remaining 35% for describing and demonstrating a
working program.
• Part 2 will be worth 20% of the report mark awarded for describing and demonstrating a program
that implements bumpless transition between controllers.
• On the subject of code, wud U. rite th:E Boddiy OF /ˆthe ripport lYke thiSS? No? So why
would you submit a program written like this? See the interesting article on Technical Debt
(https://www.parkersoftware.com/blog/what-is-technical-debt-and-what
-should-you-do-about-it/). That students frequently submit difficult-to-follow code that
is totally devoid of comments is probably understandable—‘success’ in a programming assignment
is seen as getting the program to work. End of story. But a properly presented program
makes it clear to me what you have done, how you have done it, and therefore makes it easy for
me to award you marks! If you force me to work through contorted logic with variables named
‘d’ , ‘dd’, ‘ddd’, etc.
2
, I may fail to grasp your ingenious, working solution to the problem, and
award a low mark because I cannot understand what you have done. Core principle: always
help the examiner to award you marks.
2
I once had a colleague—now no longer in the department—who would write Fortran programs in which the first
variable was named d’ (for data). If he needed a second variable, he would call it ‘dd’. A third variable would be called
‘ddd’. And so on. I really wish I was making this story up. . .
©P.Rockett, 2020 4
软件开发、广告设计客服
QQ:99515681
邮箱:99515681@qq.com
工作时间:8:00-23:00
微信:codinghelp
热点项目
更多
代做ceng0013 design of a pro...
2024-11-13
代做mech4880 refrigeration a...
2024-11-13
代做mcd1350: media studies a...
2024-11-13
代写fint b338f (autumn 2024)...
2024-11-13
代做engd3000 design of tunab...
2024-11-13
代做n1611 financial economet...
2024-11-13
代做econ 2331: economic and ...
2024-11-13
代做cs770/870 assignment 8代...
2024-11-13
代写amath 481/581 autumn qua...
2024-11-13
代做ccc8013 the process of s...
2024-11-13
代写csit040 – modern comput...
2024-11-13
代写econ 2070: introduc2on t...
2024-11-13
代写cct260, project 2 person...
2024-11-13
热点标签
mktg2509
csci 2600
38170
lng302
csse3010
phas3226
77938
arch1162
engn4536/engn6536
acx5903
comp151101
phl245
cse12
comp9312
stat3016/6016
phas0038
comp2140
6qqmb312
xjco3011
rest0005
ematm0051
5qqmn219
lubs5062m
eee8155
cege0100
eap033
artd1109
mat246
etc3430
ecmm462
mis102
inft6800
ddes9903
comp6521
comp9517
comp3331/9331
comp4337
comp6008
comp9414
bu.231.790.81
man00150m
csb352h
math1041
eengm4100
isys1002
08
6057cem
mktg3504
mthm036
mtrx1701
mth3241
eeee3086
cmp-7038b
cmp-7000a
ints4010
econ2151
infs5710
fins5516
fin3309
fins5510
gsoe9340
math2007
math2036
soee5010
mark3088
infs3605
elec9714
comp2271
ma214
comp2211
infs3604
600426
sit254
acct3091
bbt405
msin0116
com107/com113
mark5826
sit120
comp9021
eco2101
eeen40700
cs253
ece3114
ecmm447
chns3000
math377
itd102
comp9444
comp(2041|9044)
econ0060
econ7230
mgt001371
ecs-323
cs6250
mgdi60012
mdia2012
comm221001
comm5000
ma1008
engl642
econ241
com333
math367
mis201
nbs-7041x
meek16104
econ2003
comm1190
mbas902
comp-1027
dpst1091
comp7315
eppd1033
m06
ee3025
msci231
bb113/bbs1063
fc709
comp3425
comp9417
econ42915
cb9101
math1102e
chme0017
fc307
mkt60104
5522usst
litr1-uc6201.200
ee1102
cosc2803
math39512
omp9727
int2067/int5051
bsb151
mgt253
fc021
babs2202
mis2002s
phya21
18-213
cege0012
mdia1002
math38032
mech5125
07
cisc102
mgx3110
cs240
11175
fin3020s
eco3420
ictten622
comp9727
cpt111
de114102d
mgm320h5s
bafi1019
math21112
efim20036
mn-3503
fins5568
110.807
bcpm000028
info6030
bma0092
bcpm0054
math20212
ce335
cs365
cenv6141
ftec5580
math2010
ec3450
comm1170
ecmt1010
csci-ua.0480-003
econ12-200
ib3960
ectb60h3f
cs247—assignment
tk3163
ics3u
ib3j80
comp20008
comp9334
eppd1063
acct2343
cct109
isys1055/3412
math350-real
math2014
eec180
stat141b
econ2101
msinm014/msing014/msing014b
fit2004
comp643
bu1002
cm2030
联系我们
- QQ: 9951568
© 2021
www.rj363.com
软件定制开发网!