Nonlinear Heat Transfer In a Thin Plate - bug in example?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello,
I am trying to run the script on nonlinear heat transfer in a thin plate: http://www.mathworks.com/help/pde/examples/nonlinear-heat-transfer-in-a-thin-plate.html
However at the following line: pb = pde(numberOfPDE); I get the following error message: (FEMtest is my own script)
"Error using pde (line 8) Not enough input arguments. Error in FEMtest (line 61) pb = pde(numberOfPDE);"
could you help me getting rid of this message?
Also I noticed my 'pde.m' looks funny, at least to me:
"function [c,f,s] = pde(x,t,u,DuDx)
%PDE pde demo function
% Copyright 1984-2005 The MathWorks, Inc. % $Revision: 1.2.4.1 $ $Date: 2005/06/09 04:39:07 $
c = pi^2; f = DuDx; s = 0; "
0 commentaires
Réponses (2)
Bill Greene
le 18 Oct 2014
What version of MATLAB are you running?
The documentation page you are pointing to is for the R2014b version of MATLAB. The error you are getting is at a line for a feature that was introduced in the R2014b version of PDE Toolbox.
Bill
0 commentaires
Peter Rindt
le 18 Oct 2014
1 commentaire
Bill Greene
le 19 Oct 2014
If your version is R2012b (note the "b"), you can run that example simply by typing "heatTransferThinPlateExample" at the MATLAB command prompt. That example requires the nonlinear capabilities of the parabolic function. Before R2012b, parabolic was limited to linear equations.
Bill
Voir également
Catégories
En savoir plus sur Boundary Conditions dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!