axisymmetric thermal and structural analysis of disc brake -凯发k8网页登录
this example shows a quasistatic axisymmetric thermal stress analysis workflow by reproducing the results of the simplified disc brake model discussed in . disc brakes absorb mechanical energy through friction and transform it into thermal energy, which then dissipates. the example uses a simplified model of a disc brake in a single braking process from a constant initial angular speed to a standstill. the workflow has two steps:
transient thermal analysis to compute the temperature distribution in the disc using the heat flux from brake pads
quasistatic structural analysis to compute thermal stresses at several solution times using previously obtained temperature distribution to specify thermal loads
the resulting plots show the temperature distribution, radial stress, hoop stress, and von mises stress for the corresponding solution times.
disc brake properties and geometry
based on the assumptions used in , the example reduces the analysis domain to a rectangular region corresponding to the axisymmetric section of the annular disc. because of the geometric and load symmetry of the disc, the example models only half the thickness of the disc and the effect of one pad. in the following figure, the left edge corresponds to the inner radius of the disc . the right edge corresponds to the outer radius of the disc and also coincides with the outer radius of the pad . the disc experiences pressure from the pad, which generates the heat flux. instead of modeling the pad explicitly, include its effect in the thermal analysis by specifying this heat flux as a boundary condition from the inner radius of the pad to the outer radius of the pad .
thermal analysis: compute temperature distribution
create a transient axisymmetric thermal model.
modelt = createpde("thermal","transient-axisymmetric");
create a geometry with two adjacent rectangles. the top edge of the longer rectangle (on the right) represents the disc-pad contact region.
r1 = [3,4, [ 66, 76.5, 76.5, 66, -5.5, -5.5, 0, 0]/1000]'; r2 = [3,4, [76.5, 113.5, 113.5, 76.5, -5.5, -5.5, 0, 0]/1000]'; gdm = [r1 r2]; ns = char('r1','r2'); g = decsg(gdm,'r1 r2',ns');
assign the geometry to the thermal model.
geometryfromedges(modelt,g);
plot the geometry with the edge and face labels.
figure pdegplot(modelt,"edgelabels","on","facelabels","on")
generate a mesh. to match the mesh used in , use the linear geometric order instead of the default quadratic order.
generatemesh(modelt,"hmax",0.5e-04,"geometricorder","linear");
specify the thermal material properties of the disc.
alphad = 1.44e-5; % diffusivity of disc kd = 51; rhod = 7100; cpd = kd/rhod/alphad; thermalproperties(modelt,"thermalconductivity",kd, ... "massdensity",rhod, ... "specificheat",cpd);
specify the heat flux boundary condition to account for the pad region. for the definition of the qfcn
function, see .
thermalbc(modelt,"edge",6,"heatflux",@qfcn);
set the initial temperature.
thermalic(modelt,20);
solve the model for the times used in .
tlist = [0 0.1 0.2 1.0 2.0 3.0 3.96]; rt = solve(modelt,tlist);
plot the temperature variation with time at three key radial locations. the resulting plot is comparable to the plot obtained in .
itrd = interpolatetemperature(rt,[0.1135;0],1:numel(rt.solutiontimes)); itrp = interpolatetemperature(rt,[0.0765;0],1:numel(rt.solutiontimes)); itrd = interpolatetemperature(rt,[0.066;0],1:numel(rt.solutiontimes)); figure plot(tlist,itrd) hold on plot(tlist,itrp) plot(tlist,itrd) title("temperature variation with time at key radial locations") legend("r_d","r_p","r_d") xlabel("t, s") ylabel("t,^{\circ}c")
structural analysis: compute thermal stress
create an axisymmetric static structural analysis model.
model = createpde("structural","static-axisymmetric");
assign the geometry and mesh used for the thermal model.
model.geometry = modelt.geometry; model.mesh = modelt.mesh;
specify the structural properties of the disc.
structuralproperties(model,"youngsmodulus",99.97e9, ... "poissonsratio",0.29, ... "cte",1.08e-5);
constrain the model to prevent rigid motion.
structuralbc(model,"edge",[3,4],"zdisplacement",0);
specify the reference temperature that corresponds to the state of zero thermal stress of the model.
model.referencetemperature = 20;
specify the thermal load by using the transient thermal results rt
. the solution times are the same as in the thermal model analysis. for each solution time, solve the corresponding static structural analysis problem and plot the temperature distribution, radial stress, hoop stress, and von mises stress. for the definition of the plotresults
function, see . the results are comparable to figure 5 from .
for n = 2:numel(rt.solutiontimes) structuralbodyload(model,"temperature",rt,"timestep",n); r = solve(model); plotresults(model,r,modelt,rt,n); end
heat flux function
this helper function computes the transient value of the heat flux from the pad to the disc. it uses the empirical formula from .
function q = qfcn(r,s) alphad = 1.44e-5; % diffusivity of disc kd = 51; % conductivity of disc rhod = 7100; % density of disc cpd = kd/rhod/alphad; % specific heat capacity of disc alphap = 1.46e-5; % diffusivity of pad kp = 34.3; % conductivity of pad rhop = 4700; % density of pad cpp = kp/rhop/alphap; % specific heat capacity of pad f = 0.5; % coefficient of friction omega0 = 88.464; % initial angular velocity ts = 3.96; % stopping time p0 = 1.47e6*(64.5/360); % pressure only spans 64.5 deg occupied by pad omegat = omega0*(1 - s.time/ts); % angular speed over time eta = sqrt(kd*rhod*cpd)/(sqrt(kd*rhod*cpd) sqrt(kp*rhop*cpp)); q = (eta)*f*omegat*r.r*p0; end
plot results function
this helper function plots the temperature distribution, radial stress, hoop stress, and von mises stress.
function plotresults(model,r,modelt,rt,tid) figure subplot(2,2,1) pdeplot(modelt,"xydata",rt.temperature(:,tid), ... "colormap","jet","contour","on") title({'temperature'; ... ['max = ' num2str(max(rt.temperature(:,tid))) '^{\circ}c']}) xlabel("r, m") ylabel("z, m") subplot(2,2,2) pdeplot(model,"xydata",r.stress.srr, ... "colormap","jet","contour","on") title({'radial stress'; ... ['min = ' num2str(min(r.stress.srr)/1e6,'%3.2f') ' mpa']; ... ['max = ' num2str(max(r.stress.srr)/1e6,'%3.2f') ' mpa']}) xlabel("r, m") ylabel("z, m") subplot(2,2,3) pdeplot(model,"xydata",r.stress.sh, ... "colormap","jet","contour","on") title({'hoop stress'; ... ['min = ' num2str(min(r.stress.sh)/1e6,'%3.2f') ' mpa']; ... ['max = ' num2str(max(r.stress.sh)/1e6,'%3.2f') ' mpa']}) xlabel("r, m") ylabel("z, m") subplot(2,2,4) pdeplot(model,"xydata",r.vonmisesstress, ... "colormap","jet","contour","on") title({'von mises stress'; ... ['max = ' num2str(max(r.vonmisesstress)/1e6,'%3.2f') ' mpa']}) xlabel("r, m") ylabel("z, m") sgtitle(['time = ' num2str(rt.solutiontimes(tid)) ' s']) end
references
[1] adamowicz, adam. "axisymmetric fe model to analysis of thermal stresses in a brake disc." journal of theoretical and applied mechanics 53, issue 2 (april 2015): 357–370. .