由于温度梯度热梁的挠度

10视图(30天)
你好,
我试图模拟梁的变形引起的热负荷由于温度梯度之间的上、下表面。梁固定支持左派和右派的表面。万博1manbetx
我的问题:
  1. 为什么变形形状的情节不会显示在z方向的弯曲梁吗?光束弯曲到温暖的表面。
  2. 究竟什么是“参考温度”的目的,需要运行代码。结果很大程度上取决于参考温度和不是我设置的温度梯度之间的上、下表面。为什么?
  3. 我怎么能显示变形形状只在x, y和z方向?
这是代码:
%为PDE工具箱创建热模型
thermalmodel = createpde (“热”);
L = 1500/1000;% m
W = 10/1000;% m
H = 100/1000;% m
通用汽车% = multicuboid (L, W, [H, H],“Zoffset”, [0, H]);
通用= multicuboid (L, W H);
thermalmodel。几何=通用;
%网格几何
网= generateMesh (thermalmodel,“Hmax”,0.030);
%的材料属性
thermalProperties (thermalmodel“ThermalConductivity”,247);
%绘制热几何
pdegplot (thermalmodel“faceLabels”,“上”,“FaceAlpha”,0.25)
%边界条件
thermalBC (thermalmodel“脸”,1“温度”,63);
thermalBC (thermalmodel“脸”2,“温度”、60);
%网格几何和解决这个问题
generateMesh (thermalmodel);
thermalresults =解决(thermalmodel);
pdeplot3D (thermalmodel“ColorMapData”thermalresults.Temperature)
% %结构分析与热负荷
structuralmodel = createpde (“结构”,“static-solid”);
structuralmodel。几何=通用;
structuralmodel。网= generateMesh (structuralmodel,“Hmax”,0.030);
%指定杨氏模量、泊松比和热膨胀系数。
电子商务= 7 e10汽油;% N / m ^ 2
nuc = 0.334;
CTEc = 23.60 e-6;% m / mc
structuralProperties (structuralmodel“细胞”,1
“YoungsModulus”电子商务,
“PoissonsRatio”nuc,
CTE的,CTEc);
%固定边界条件适用于脸3、5
structuralBC (structuralmodel“脸”3,“约束”,“固定”);
structuralBC (structuralmodel“脸”5,“约束”,“固定”);
%应用身体负荷使用瞬态热模型的解决方案。默认情况下,structuralBodyLoad最后一次使用解决方案的步骤。
structuralBodyLoad (structuralmodel“温度”,thermalresults);
%指定参考温度。
structuralmodel。ReferenceTemperature = 25;
%解决结构模型。
thermalstressresults =解决(structuralmodel);
%画出形状与偏转位移的大小的彩色地图数据。
图()
pdeplot3D (structuralmodel“ColorMapData”thermalstressresults.Displacement.Magnitude,
“变形”thermalstressresults.Displacement,
“DeformationScaleFactor”,10000)

答案(0)

社区寻宝

找到宝藏在MATLAB中央,发现社区如何帮助你!

开始狩猎!