当前位置:首页 > 文章列表 > 数据库 > MySQL > EEE6207

EEE6207

来源:SegmentFault 2023-01-20 14:10:38 0浏览 收藏

有志者,事竟成!如果你在学习数据库,那么本文《EEE6207》,就很适合你!文章讲解的知识点主要包括MySQL,若是你对本文感兴趣,或者是想搞懂其中某个知识点,就请你继续往下看吧~

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.co...
    -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
    WX:codehelp

以上就是本文的全部内容了,是否有顺利帮助你解决问题?若是能给你带来学习上的帮助,请大家多多支持golang学习网!更多关于数据库的相关知识,也可关注golang学习网公众号。

版本声明
本文转载于:SegmentFault 如有侵犯,请联系study_golang@163.com删除
怎么做 HDFS 的原地平滑缩容?怎么做 HDFS 的原地平滑缩容?
上一篇
怎么做 HDFS 的原地平滑缩容?
MySQL Shell无法拉起MGR集群解决办法
下一篇
MySQL Shell无法拉起MGR集群解决办法
查看更多
最新文章
查看更多
课程推荐
  • 前端进阶之JavaScript设计模式
    前端进阶之JavaScript设计模式
    设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
    542次学习
  • GO语言核心编程课程
    GO语言核心编程课程
    本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
    508次学习
  • 简单聊聊mysql8与网络通信
    简单聊聊mysql8与网络通信
    如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
    497次学习
  • JavaScript正则表达式基础与实战
    JavaScript正则表达式基础与实战
    在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
    487次学习
  • 从零制作响应式网站—Grid布局
    从零制作响应式网站—Grid布局
    本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
    484次学习
查看更多
AI推荐
  • 茅茅虫AIGC检测:精准识别AI生成内容,保障学术诚信
    茅茅虫AIGC检测
    茅茅虫AIGC检测,湖南茅茅虫科技有限公司倾力打造,运用NLP技术精准识别AI生成文本,提供论文、专著等学术文本的AIGC检测服务。支持多种格式,生成可视化报告,保障您的学术诚信和内容质量。
    18次使用
  • 赛林匹克平台:科技赛事聚合,赋能AI、算力、量子计算创新
    赛林匹克平台(Challympics)
    探索赛林匹克平台Challympics,一个聚焦人工智能、算力算法、量子计算等前沿技术的赛事聚合平台。连接产学研用,助力科技创新与产业升级。
    50次使用
  • SEO  笔格AIPPT:AI智能PPT制作,免费生成,高效演示
    笔格AIPPT
    SEO 笔格AIPPT是135编辑器推出的AI智能PPT制作平台,依托DeepSeek大模型,实现智能大纲生成、一键PPT生成、AI文字优化、图像生成等功能。免费试用,提升PPT制作效率,适用于商务演示、教育培训等多种场景。
    57次使用
  • 稿定PPT:在线AI演示设计,高效PPT制作工具
    稿定PPT
    告别PPT制作难题!稿定PPT提供海量模板、AI智能生成、在线协作,助您轻松制作专业演示文稿。职场办公、教育学习、企业服务全覆盖,降本增效,释放创意!
    53次使用
  • Suno苏诺中文版:AI音乐创作平台,人人都是音乐家
    Suno苏诺中文版
    探索Suno苏诺中文版,一款颠覆传统音乐创作的AI平台。无需专业技能,轻松创作个性化音乐。智能词曲生成、风格迁移、海量音效,释放您的音乐灵感!
    57次使用
微信登录更方便
  • 密码登录
  • 注册账号
登录即同意 用户协议隐私政策
返回登录
  • 重置密码