⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 postprocessor.m

📁 The Finite Element Method Usign MATLAB.pdf
💻 M
字号:
% plot deformed configuration and print stresses in gauss points
function postprocess(d);
include_flags

% plot the deformed configuration
displacements(d);

% Compute strains and stresses at gauss points
s = zeros(neq,1);
if strcmpi(compute_stress,'yes')==1;  
    fprintf(1,'\n                     Stress at Gauss Points \n')
    fprintf(1,'----------------------------------------------------------------------------- \n')
    for e=1:nel
    fprintf(1,'Element  %d \n',e)
    fprintf(1,'-------------\n')       
        get_stress(d,e);
        nodal_stress(d,e);
    end
    global sxx
    stress_contours;
    
    
end











⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -