资源简介
MATLAB 求解PDE(偏微分)方程工具箱及示例,内含工具箱及示例,可以快速学习掌握

代码片段和文件信息
function [ q g h r ] = boundaryFileClampedPlate( p e u time )
%BOUNDARYFILECLAMPEDPLATE Boundary conditions for heatTransferThinPlateExample
% [ q g h r ] = BOUNDARYFILECLAMPEDPLATE( p e u time ) returns the
% Neumann BC (q g) and Dirichlet BC (h r) matrices for the
% clampedSquarePlateExample example.
% p is the point matrix returned from INITMESH
% e is the edge matrix returned from INITMESH
% u is the solution vector (used only for nonlinear cases)
% time (used only for parabolic and hyperbolic cases)
%
% See also PDEBOUND INITMESH
% Copyright 2012 The MathWorks Inc.
N = 2;
ne = size(e2);
% Apply a shear force along the boundary due to the transverse
% deflection of stiff distributed springs
k = 1e7; % spring stiffness
q = [0 k 0 0]‘*ones(1ne);
g = zeros(N ne);
h = zeros(N^2 2*ne);
r = zeros(N 2*ne);
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 864 2012-08-23 01:48 PDE(偏微分方程)with matlab\boundaryFileClampedPlate.m
文件 4822 2012-08-23 01:58 PDE(偏微分方程)with matlab\clampedSquarePlateExample.m
文件 15747 2012-08-27 20:44 PDE(偏微分方程)with matlab\html(参考)\clampedSquarePlateExample.html
文件 6542 2012-08-27 20:44 PDE(偏微分方程)with matlab\html(参考)\clampedSquarePlateExample.png
文件 47497 2012-08-27 20:44 PDE(偏微分方程)with matlab\html(参考)\clampedSquarePlateExample_01.png
文件 270 2012-08-27 20:44 PDE(偏微分方程)with matlab\html(参考)\clampedSquarePlateExample_eq01166.png
文件 316 2012-08-27 20:44 PDE(偏微分方程)with matlab\html(参考)\clampedSquarePlateExample_eq04499.png
文件 365 2012-08-27 20:44 PDE(偏微分方程)with matlab\html(参考)\clampedSquarePlateExample_eq05153.png
文件 996 2012-08-27 20:44 PDE(偏微分方程)with matlab\html(参考)\clampedSquarePlateExample_eq05246.png
文件 375 2012-08-27 20:44 PDE(偏微分方程)with matlab\html(参考)\clampedSquarePlateExample_eq17160.png
文件 240 2012-08-27 20:44 PDE(偏微分方程)with matlab\html(参考)\clampedSquarePlateExample_eq25947.png
文件 199 2012-08-27 20:44 PDE(偏微分方程)with matlab\html(参考)\clampedSquarePlateExample_eq27869.png
文件 576 2012-08-27 20:44 PDE(偏微分方程)with matlab\html(参考)\clampedSquarePlateExample_eq28506.png
文件 675 2012-08-27 20:44 PDE(偏微分方程)with matlab\html(参考)\clampedSquarePlateExample_eq28792.png
文件 1646 2012-08-27 20:44 PDE(偏微分方程)with matlab\html(参考)\clampedSquarePlateExample_eq28977.png
文件 2517 2012-08-27 20:44 PDE(偏微分方程)with matlab\html(参考)\clampedSquarePlateExample_eq29079.png
文件 1376 2012-08-27 20:44 PDE(偏微分方程)with matlab\html(参考)\clampedSquarePlateExample_eq32547.png
文件 347 2012-08-27 20:44 PDE(偏微分方程)with matlab\html(参考)\clampedSquarePlateExample_eq35719.png
文件 1281 2012-08-27 20:44 PDE(偏微分方程)with matlab\html(参考)\clampedSquarePlateExample_eq41350.png
文件 961 2012-08-27 20:44 PDE(偏微分方程)with matlab\html(参考)\clampedSquarePlateExample_eq44996.png
文件 1409 2012-08-27 20:44 PDE(偏微分方程)with matlab\html(参考)\clampedSquarePlateExample_eq50687.png
文件 695 2012-08-27 20:44 PDE(偏微分方程)with matlab\html(参考)\clampedSquarePlateExample_eq54011.png
文件 260 2012-08-27 20:44 PDE(偏微分方程)with matlab\html(参考)\clampedSquarePlateExample_eq60012.png
文件 2111 2012-08-27 20:44 PDE(偏微分方程)with matlab\html(参考)\clampedSquarePlateExample_eq63143.png
文件 264 2012-08-27 20:44 PDE(偏微分方程)with matlab\html(参考)\clampedSquarePlateExample_eq64535.png
文件 201 2012-08-27 20:44 PDE(偏微分方程)with matlab\html(参考)\clampedSquarePlateExample_eq69196.png
文件 784 2012-08-27 20:44 PDE(偏微分方程)with matlab\html(参考)\clampedSquarePlateExample_eq71755.png
文件 5645 2012-08-27 20:44 PDE(偏微分方程)with matlab\html(参考)\clampedSquarePlateExample_eq72819.png
文件 211 2012-08-27 20:44 PDE(偏微分方程)with matlab\html(参考)\clampedSquarePlateExample_eq77996.png
文件 355 2012-08-27 20:44 PDE(偏微分方程)with matlab\html(参考)\clampedSquarePlateExample_eq85525.png
............此处省略11个文件信息
- 上一篇:二维navier-Stokes (非定常)MATALAB
- 下一篇:云模型图像的实现
相关资源
- 串行级联cpm系统MATLAB仿真
- matlab_OFDM调制解调(来自剑桥大学)
- Matlab路面裂缝识别69319
- 高灵敏度GPS接收机MATLAB仿真,附捕获
- 基于MATLAB的质点弹道计算与外弹道优
- 阵列天线的matlab仿真
- MATLAB 经典程序源代码大全
- MATLAB小波软阈值去噪代码33473
- 天线阵的波束形成在MATLAB仿真程序及
- 非线性SVM算法-matlab实现
- 《MATLAB 智能算法超级学习手册》-程序
- 组合导航matlab程序
- 读取txt文件内容matlab代码实现
- Matlab实现基于相关的模板匹配程序
- matlab优化工具箱讲解
- 基于MATLAB的快速傅里叶变换
- 光纤传输中的分布傅立叶算法matlab实
- 基于matlab的图像处理源程序
- matlab 椭圆拟合程序
- 算术编码解码matlab源代码
- optical_flow 光流法 matlab 实现程序
- 引导图像滤波器 Matlab实现
- 分形几何中一些经典图形的Matlab画法
- OFDM系统MATLAB仿真代码
- SVM工具箱(matlab中运行)
- 图像小波变换MatLab源代码
- LU分解的MATLAB实现
- 冈萨雷斯数字图像处理matlab版(第三
- 替代数据法的matlab程序
- 用matlab实现的多站定位系统性能仿真
评论
共有 条评论