欢迎来到天天文库
浏览记录
ID:57068205
大小:82.50 KB
页数:8页
时间:2020-07-31
《沈阳工业大学实验报告(计算机程序设计类).doc》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、实验报告课程名称:MATLABProgramming实验项目:PositionandVelocityofaBall专业班级:通信工程1501班姓名:刘文亚学号:150404116实验室号:信息楼220实验组号:16实验时间:2017年5月18日批阅时间:指导教师:刘笑楠成绩:沈阳工业大学实验报告(适用计算机程序设计类)专业班级:通信工程1501班学号:150404116姓名:刘文亚实验名称:PositionandVelocityofaBall1.实验目的:(1)MasteringmethodsforcreatingandinitializingvariablesinMATLAB.
2、includingassignmentstatements,shortcutexpressions,built-infunctions,keyboardinput.(2)Understandthedifferencebetweenarraymultiplicationandmatrixmultiplication.(3)Learnhowtodrawandicons,colors,etc.2.实验内容:PositionandVelocityofaBallIfastationaryballisreleasedataheighth0abovethesurfaceoftheEarthwi
3、thaverticalvelocityv0,thepositionandvelocityoftheballasafunctionoftimewillbegivenbytheequationsWheregistheaccelerationduetogravity(-9.81m/s^2),histheheightabovethesurfaceoftheEarth(assuningnoairfriction),andvistheverticalcomponentofvelocity.WriteaMATLABprogramthatpromptsauserfortheinitialheig
4、htoftheballinmeterandvelocityoftheballinmeterspersecond,andplotstheheightandvelocityasafunctionoftime.Besuretoincludeproperlabelsinyourplots.3.实验方案(程序设计说明)[包括算法设计思路,必要的流程图,界面设计说明、使用模块及变量的说明等。](1)确定输入变量h0,v0,t1。h0是开始高度,v0是开始速度,t1为时间。(2)由公式计算在时间变化的情况下,hv的变化情况并得到多组数据(3)由数据画出h,v与t的关系曲线4.实验步骤或程序(经
5、调试后正确的源程序)(填写主要步骤与程序代码等。见附件A)5.程序运行结果6.出现的问题及解决方法附件A沈阳工业大学实验报告(适用计算机程序设计类)专业班级:通信工程1501班学号:150404116姓名:刘文亚实验步骤或程序:(可加附页)4.实验步骤或程序(经调试后正确的源程序)(1)创建程序%Scriptfile:calc_heightandvelocity.m%%Purpose:%Tocalculateandplottheheightandvelocityasafunctionoftime.%%Recordofrevisions:%DateProgrammerDescrip
6、tionofchange%===================================%17/05/18liuwenyaOriginalcode%%Definevariables:%h0--AheightabovethesurfaceoftheEarth%v0--Averticalvelocityinthebegining%t1--Time%g--Theaccelerationduetogravity(-9.81m/s^2)h0=input('enterdate:')v0=input('enterdate:')t1=input('enterdate:')%g--Thea
7、ccelerationduetogravity(-9.81m/s^2)g=-9.81%t--Incrementsat0.1andendsatt1t=0:0.1:t1%Figureoutaheightabovethesurfaceinthefinalh=(g.*t.^2)./2+v0.*t+h0%Figureoutaverticalvelocityinthefinalv=-g.*t+v0%Plottheheightandvelocityasafunctionoftimeplot(t
此文档下载收益归作者所有