2018年高教社杯全国大学生数学建模竞赛A题(高温服)答案
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
CUMCM 2018 Problem A
高温作业专用服装设计
在高温环境下工作时,人们需要穿着专用服装以避免灼伤。专用服装通常由三层织物材料构成,记为I、II、III层,其中I层与外界环境接触,III层与皮肤之间还存在空隙,将此空隙记为IV层。
为设计专用服装,将体内温度控制在37ºC的假人放置在实验室的高温环境中,测量假人皮肤外侧的温度。为了降低研发成本、缩短研发周期,请你们利用数学模型来确定假人皮肤外侧的温度变化情况,并解决以下问题:
(1) 专用服装材料的某些参数值由附件1给出,对环境温度为75ºC、II层厚度为6 mm、IV层厚度为5 mm、工作时间为90分钟的情形开展实验,测量得到假人皮肤外侧的温度(见附件2)。建立数学模型,计算温度分布,并生成温度分布的Excel文件(文件名为problem1.xlsx)。
(2) 当环境温度为65ºC、IV层的厚度为5.5 mm时,确定II层的最优厚度,确保工作60分钟时,假人皮肤外侧温度不超过47ºC,且超过44ºC的时间不超过5分钟。
(3) 当环境温度为80 时,确定II层和IV层的最优厚度,确保工作30分钟时,假人皮肤外侧温度不超过47ºC,且超过44ºC的时间不超过5分钟。
Special clothing design for high temperature operation
When working in a high temperature environment, people need to wear special clothing to avoid burns. Special clothing usually consists of three layers of fabric material, I, II, III layer, in which layer I and the external environment contact, and between III layer and skin there is still a gap which is recorded as layer IV.
In order to design special clothes, place the body inside which the temperature is controlled at 37℃in the high temperature environment of the laboratory, and measure the temperature outside the dummy skin. In order to reduce research and development costs and shorten the research and development cycle, please use mathematical models to determine the temperature changes outside the dummy skin, and solve the following problems:
(1) Some parameters of special clothing materials are given by Appendix 1. Experiments are carried out when the ambient temperature is 75℃, the thickness of layer II is 6 mm, the thickness of layer IV is 5 mm, and the working time is 90 minutes. The temperature outside the skin of the dummy is measured (Appendix 2). Establish
a mathematical model, calculate the temperature distribution, and generate the temperature distribution Excel file (file named as problem1.xlsx).
(2) When the ambient temperature is 65℃and the thickness of layer IV is 5.5 mm, determine the optimal thickness of layer II to ensure the outer skin temperature of the dummy does not exceed 47℃after 60 minutes and when temperature exceeds 44℃, the time does not exceed 5 minutes.
(3) When the ambient temperature is 80℃, determine the optimum thickness of layer II and layer IV to ensure that the outer skin temperature of the dummy does not exceed 47℃after 30 minutes, and the when temperature exceeds 44℃, the time does not exceed 5 minutes.
Answer:
(1) We can get the relation of time and temperature on the dummy's skin from Annex 2 (measurement temperature of the outer side of the dummy's skin) . And convection on surface of layer I to the surrounding is negligible. So we can simplify this problem to the one-dimensional transient conduction from layer I to layer IV .
Program as follow:
k1=0.082;k2=0.37;k3=0.045;k4=0.028;%四段材料的导热系数
p1=300;p2=862;p3=74.2;p4=1.18;%四段材料的密度
c1=1377;c2=2100;c3=1726;c4=1005;%四段材料的比热容
t=1;x=0.0001;%时间,位置步长取值
T=zeros(5401,153);%按时间,位置步长定义温度的二维矩阵
f1=k1*t/(p1*c1*x^2);f2=k2*t/(p2*c2*x^2);f3=k3*t/(p3*c3*x^2);f4=k4*t/( p4*c4*x^2);%四段材料的傅里叶数
T(1,:)=37;%时间为1的点温度简化为37℃
T(:,1)=75;%位置为1的点温度简化为75℃
for i=1:5400
T(i+1,:)=T(i,:);%前一时间点的温度作为初始值赋给当前温度
while true
s=T(i+1,:);%保留初始值
for j=2:6
T(i+1,j)=(f1*(T(i+1,j-1)+T(i+1,j+1))+T(i,j))/(2*f1+1);
end
T(i+1,7)=(f1*T(i+1,6)+f2*T(i+1,8)+T(i,7))/(f1+f2+1);
for j=8:66
T(i+1,j)=(f2*(T(i+1,j-1)+T(i+1,j+1))+T(i,j))/(2*f2+1);
end
T(i+1,67)=(f2*T(i+1,66)+f3*T(i+1,68)+T(i,67))/(f2+f3+1);
for j=68:102