• 大小: 104KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-15
  • 语言: Matlab
  • 标签: matlab  PDE  toolbox  示例  

资源简介

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个文件信息

评论

共有 条评论