bhmat

Generate the 2D Biharmonic operator with elastic boundary constants.

Contents

Syntax

biharm = bhmat(BCs,Nxy,h,Lz,E,nu)

Description

biharm = bhmat(BCs,Nxy,h,Lz,E,nu) returns a Nxy-by-|Nxy| discrete biharmonic operator matrix biharm with elastic constants BCs, grid spacing h, plate thickness Lz, youngs Modulus E and Poisson's number nu

Example

%% physical and elastic parameters
Lz  = 0.8e-3;
E   = 1.01e+11;
nu  = 0.3;
Nx  = 100;
Ny  = 100;
h   = 1e-2;
BCs = 1e15 * ones(4,2) %-- Clamped condition on all sides
biharm = bhmat(BCs,[Nx Ny], h, Lz, E, nu);

Input Arguments

See Also

magpie | youngcalc