首页 > 其他分享 >RME40002 Mechatronics Systems Design – Portfolio Tasks Description

RME40002 Mechatronics Systems Design – Portfolio Tasks Description

时间:2024-09-26 12:12:57浏览次数:1  
标签:RME40002 Tasks Description Design task Mechatronics Portfolio your block

RME40002 Mechatronics Systems Design – Portfolio Tasks DescriptionSchool of Science, Computing and Engineering Technologies RME40002 Mechatronics Systems Design

Portfolio Tasks Description

Semester 2, 2024 Page 1 of 21RME40002 Mechatronics Systems Design – Portfolio Tasks DescriptionPage 2 of 21

Instructions

  1. The portfolio is individual assessment. You must complete the tasks by your own.Read the RME40002 Assessment Criteria document in Canvas for details.
  1. You could get feedback from your tutor in class on your solution prior to thesubmission due date.
  1. Use the Portfolio Template provided in Canvas for your submission.
  2. You do not need to copy the task questions into your portfolio, but clearly labelthe task number you are answering.
  1. For MATLAB questions, include all source codes and commands as text in theportfolio. If a question asks you to plot or display something to the screen, alsoinclude the screenshots of plot and screen output your code generates. Includeresults and sufficient comments if required.
  1. For LabVIEW questions, provide screenshots of both front panel and block diagramwith sufficient resolution for readability.
  1. For non-programming questions, you may type in your answers or scan yourhandwritten answers to include in the portfolio.
  1. You should submit two separate portfoliosfor the tasks required in this document.Each portfolio must be a single electronic file in PDF format or Word document.
  1. The file name and deadline of your portfolio submission requirement:

First Portfolio – Answers to tasks from Week 1 to 4

File name

[Your student ID]-[PF1]

For example, 12345678-PF1.pdf

Submission deadline

Sunday, September 1, 2024 by 23.59pm

Second Portfolio – Answers to tasks from Week 5 to 8

File name

[Your student ID]-[PF2]

For example, 12345678-PF2.pdf

Submission deadline

Sunday, September 29, 2024 by 23.59pm

 

Penalty will be applied for late submission (see Unit Outline for details).

  1. The only way to submit your portfolio for assessment is uploading through

Canvas>>Assignment>>Portfolio Submission. Submissions by using other

methods such as through Email would not be accepted.

  1. Submissions failing to satisfy the above requirements would NOT be assessed!
  2. You also need to keep a record of the source codes of your solution. You may be

asked to provide the source codes during the assessment period.RME40002 Mechatronics Systems Design – Portfolio Tasks Description

Week 1

1.1 LabVIEW Basics – Data types, math calculation, and display

1.1.1 Data types

This task is designed to help students get started with LabVIEW, which also helps to

familiarize the common data types.

  1. 1) Start a new file in the LabVIEW and save it as Week1p1p1.vi
  2. 2) Select Window>>Show Block Diagram (Ctrl+E)
  3. 3) Create controllers-indicator pairs for different variables such as
  4. Name (strings),
  5. Age (doubles),
  6. LED (Booleans),
  7. Exam results (array)
  8. A cluster that contains all variables above, bundle them, then unbundle and

show with a cluster indicator containing Name, Age and LED three items

only.

  1. 4) Organize components in your front panel and block diagram for readability
  2. 5) Provide screenshots of both the front panel and block diagram you have

designed in the portfolio report. Your results may be like below.

Page 3 of 21RME40002 Mechatronics Systems Design – Portfolio Tasks Description

Page 4 of 21

1.1.2 Math calculation

This task practices how to program a math expression and calculate its result.

Calculate the value of y according to the following expression by using the blocks of

numeric palette, formula node and mathscript, respectively.

标签:RME40002,Tasks,Description,Design,task,Mechatronics,Portfolio,your,block
From: https://www.cnblogs.com/wx--codinghelp/p/18433202

相关文章

  • freeRTOS源码解析4--tasks.c 5
    4.2.13继续任务--vTaskResume接口:voidvTaskResume(TaskHandle_txTaskToResume)形参1:xTaskToResume,想要继续的任务handle;首先是vTaskResume调用的一个内部函数:staticBaseType_tprvTaskIsTaskSuspended(constTaskHandle_txTask),用于检查任务是否是挂起状态,只有挂起的......
  • COMPX123 Hash Map Algorithm Description
    COMPX123 Assignment3S22024This assignment is due on September 22 and should be submitted on Grade- scope. Allsubmittedworkmust bedoneindividuallywithoutconsultingsomeone else’s solutions in accordancewith theUniversity’s......
  • Basics of using bash, and shell tools for covering several of the most common ta
    Basicsofusingbash,andshelltoolsforcoveringseveralofthemostcommontasksIntroduction‍Mostshellshavetheirownscriptinglanguagewithvariables,controlflowanditsownsyntax.‍Shellscriptingoptimizedforperformingshell-relatedta......
  • Basics of using bash, and shell tools for covering several of the most common ta
    Basicsofusingbash,andshelltoolsforcoveringseveralofthemostcommontasksIntroduction‍Mostshellshavetheirownscriptinglanguagewithvariables,controlflowanditsownsyntax.‍Shellscriptingoptimizedforperformingshell-relatedta......
  • Basics of using bash, and shell tools for covering several of the most common ta
    Basicsofusingbash,andshelltoolsforcoveringseveralofthemostcommontasksIntroduction‍Mostshellshavetheirownscriptinglanguagewithvariables,controlflowanditsownsyntax.‍Shellscriptingoptimizedforperformingshell-relatedta......
  • Basics of using bash, and shell tools for covering several of the most common ta
    Basicsofusingbash,andshelltoolsforcoveringseveralofthemostcommontasksIntroduction‍Mostshellshavetheirownscriptinglanguagewithvariables,controlflowanditsownsyntax.‍Shellscriptingoptimizedforperformingshell-relatedta......
  • Basics of using bash, and shell tools for covering several of the most common ta
    Basicsofusingbash,andshelltoolsforcoveringseveralofthemostcommontasksIntroduction‍Mostshellshavetheirownscriptinglanguagewithvariables,controlflowanditsownsyntax.‍Shellscriptingoptimizedforperformingshell-relatedta......
  • Tasks
    【构造思路】有序化问题,按b从大到小考虑,构造当前的合法方案中包容性最强的方案,动态判断首先,对于最大的b,让r=l就好了,需不需要让r稍大一点,来让它避免被其他区间覆盖?不可能有这种情况其次,对于所有的b-1,你需要为所有的b都找到一个覆盖它的区间,并且所有的b-1之间都不会相互覆盖以此......
  • freeRTOS源码解析4--tasks.c 4
    4.2.9周期任务用的延迟--xTaskDelayUntil接口:BaseType_txTaskDelayUntil(TickType_t*constpxPreviousWakeTime,constTickType_txTimeIncrement)形参1:pxPreviousWakeTime,上一次唤醒时间,第一次需要用接口xTaskGetTickCount()获取;形参2:xTimeIncrement,想要延迟的时间。......
  • ECOM 2001 Term Project Description
    ECOM 2001 TermProjectDescriptionDue 30Septemberat 9:00AMAWSTIntroductionThe aim of thisproject is toprepare, evaluate and analyse stockmarket data and torecommend an optimalportfo- lioconsistingof two stocks. Youhavebeen......