题目内容 (请给出正确答案)
[判断题]

禁止在运行中清扫、擦拭机器的旋转和移动部分()

查看答案
如搜索结果不匹配,请 联系老师 获取答案
您可能会需要:
您的账号:,可能会需要:
您的账号:
发送账号密码至手机
发送
更多“禁止在运行中清扫、擦拭机器的旋转和移动部分()”相关的问题

第1题

禁止在运行中清扫、擦拭和润滑机器的旋转和移动的部分,可以把手伸入栅栏内。()

此题为判断题(对,错)。

点击查看答案

第2题

禁止在运行中清扫、擦拭和润滑机器的旋转和移动部分以及把手伸人栅栏内。()

此题为判断题(对,错)。

点击查看答案

第3题

禁止在运行中()机器的旋转和移动部分
A.清扫

B.擦拭

C.润滑

点击查看答案

第4题

禁止在运行中()机器的旋转和移动的部分,以及把手伸入栅栏内。
A、清扫

B、观察

C、擦拭

D、润滑

点击查看答案

第5题

依据华电《电力安全工作规程(热力和机械部分)》(2013年版),禁止在运行中清扫、擦拭设备的___的部分。

A、旋转

B、移动

C、静止

D、裸露

点击查看答案

第6题

禁止在运行中()旋转和移动部分,以及把手伸入栅栏内。
A、清扫

B、擦拭

C、润滑机器

D、停止

点击查看答案

第7题

《安规》(热力和机械部分)规定,禁止在运行中()机器的旋转和移动的部分,严禁将手伸入栅栏内。清拭运转中机器的固定部分时,严禁戴手套或将抹布缠在手上使用,只有在转动部分对工作人员没有危险时,方可允许用长嘴油壶或油枪往油盅和轴承里加油。
A.清扫

B.擦拭

C.润滑

D.目测

E.面对

点击查看答案

第8题

此题为判断题(对,错)。

点击查看答案

第9题

A.50

B.100

C.150

D.200

点击查看答案

第10题

本作业要求实现移动机器人的EKF 定位算法。请阅读附件...

本作业要求实现移动机器人的EKF 定位算法。请阅读附件作业说明,将下述代码保存为ekf_localization.m 文件,并填写?部分(填写后将?所在行前面的%去除),在Matlab中运行测试,上交填写?后的完整代码以及运行结果图。 ekf_localization.m 代码 function [] = ekf_localization() % Homework for ekf localization % Modified by YH on 09/09/2019, thanks to the original open source % Any questions please contact: zjuyinhuan@gmail.com close all; clear all; disp('EKF Start!') time = 0; global endTime; % [sec] endTime = 60; global dt; dt = 0.1; % [sec] removeStep = 5; nSteps = ceil((endTime - time)/dt); estimation.time=[]; estimation.u=[]; estimation.GPS=[]; estimation.xOdom=[]; estimation.xEkf=[]; estimation.xTruth=[]; % State Vector [x y yaw]' xEkf=[0 0 0]'; PxEkf = eye(3); % Ground True State xTruth=xEkf; % Odometry Only xOdom=xTruth; % Observation vector [x y yaw]' z=[0 0 0]'; % Simulation parameter global noiseQ noiseQ = diag([0.1 0 degreeToRadian(10)]).^2; %[Vx Vy yawrate] global noiseR noiseR = diag([0.5 0.5 degreeToRadian(5)]).^2;%[x y yaw] % Covariance Matrix for motion % convQ=? % Covariance Matrix for observation % convR=? % Other Intial % ? % Main loop for i=1 : nSteps time = time + dt; % Input u=robotControl(time); % Observation [z,xTruth,xOdom,u]=prepare(xTruth, xOdom, u); % ------ Kalman Filter -------- % Predict % ? % Update % xEkf=? % ----------------------------- % Simulation estimation estimation.time=[estimation.time; time]; estimation.xTruth=[estimation.xTruth; xTruth']; estimation.xOdom=[estimation.xOdom; xOdom']; estimation.xEkf=[estimation.xEkf;xEkf']; estimation.GPS=[estimation.GPS; z']; estimation.u=[estimation.u; u']; % Plot in real time % Animation (remove some flames) if rem(i,removeStep)==0 %hold off; plot(estimation.GPS(:,1),estimation.GPS(:,2),'*m', 'MarkerSize', 5);hold on; plot(estimation.xOdom(:,1),estimation.xOdom(:,2),'.k', 'MarkerSize', 10);hold on; plot(estimation.xEkf(:,1),estimation.xEkf(:,2),'.r','MarkerSize', 10);hold on; plot(estimation.xTruth(:,1),estimation.xTruth(:,2),'.b', 'MarkerSize', 10);hold on; axis equal; grid on; drawnow; %movcount=movcount+1; %mov(movcount) = getframe(gcf);% アニメ┼ションのフレ┼ムをゲットする end end close finalPlot(estimation); end % control function u = robotControl(time) global endTime; T = 10; % sec Vx = 1.0; % m/s Vy = 0.2; % m/s yawrate = 5; % deg/s % half if time > (endTime/2) yawrate = -5; end u =[ Vx*(1-exp(-time/T)) Vy*(1-exp(-time/T)) degreeToRadian(yawrate)*(1-exp(-time/T))]'; end % all observations for function [z, xTruth, xOdom, u] = prepare(xTruth, xOdom, u) global noiseQ; global noiseR; % Ground Truth xTruth=doMotion(xTruth, u); % add Motion Noises u=u+noiseQ*randn(3,1); % Odometry Only xOdom=doMotion(xOdom, u); % add Observation Noises z=x+noiseR*randn(3,1); end % Motion Model function x = doMotion(x, u) global dt; %? end % Jacobian of Motion Model function jF = jacobF(x, u) global dt; %? end %Observation Model function x = doObservation(z, xPred) %? end %Jacobian of Observation Model function jH = jacobH(x) %? end % finally plot the results function []=finalPlot(estimation) figure; plot(estimation.GPS(:,1),estimation.GPS(:,2),'*m', 'MarkerSize', 5);hold on; plot(estimation.xEkf(:,1), estimation.xEkf(:,2),'.r','MarkerSize', 10); hold on; plot(estimation.xOdom(:,1), estimation.xOdom(:,2),'.k','MarkerSize', 10); hold on; plot(estimation.xTruth(:,1), estimation.xTruth(:,2),'.b','MarkerSize', 10); hold on; legend('GPS Observations','Odometry Only','EKF Localization', 'Ground Truth'); xlabel('X (meter)', 'fontsize', 12); ylabel('Y (meter)', 'fontsize', 12); grid on; axis equal; % calculate error % ? end function radian = degreeToRadian(degree) radian = degree/180*pi; end

点击查看答案
热门考试 全部 >
相关试卷 全部 >
账号:
你好,尊敬的上学吧用户
发送账号至手机
密码将被重置
获取验证码
发送
温馨提示
该问题答案仅针对搜题卡用户开放,请点击购买搜题卡。
马上购买搜题卡
我已购买搜题卡, 登录账号 继续查看答案
重置密码
确认修改
谢谢您的反馈

您认为本题答案有误,我们将认真、仔细核查,
如果您知道正确答案,欢迎您来纠错

警告:系统检测到您的账号存在安全风险

为了保护您的账号安全,请在“上学吧”公众号进行验证,点击“官网服务”-“账号验证”后输入验证码“”完成验证,验证成功后方可继续查看答案!

微信搜一搜
上学吧
点击打开微信
警告:系统检测到您的账号存在安全风险
抱歉,您的账号因涉嫌违反上学吧购买须知被冻结。您可在“上学吧”微信公众号中的“官网服务”-“账号解封申请”申请解封,或联系客服
微信搜一搜
上学吧
点击打开微信