From: <cd...@us...> - 2012-03-29 22:54:53
|
Revision: 10100 http://octave.svn.sourceforge.net/octave/?rev=10100&view=rev Author: cdf Date: 2012-03-29 22:54:47 +0000 (Thu, 29 Mar 2012) Log Message: ----------- help improvement Modified Paths: -------------- trunk/octave-forge/extra/secs1d/inst/secs1d_dd_gummel_map.m trunk/octave-forge/extra/secs1d/inst/secs1d_dd_newton.m trunk/octave-forge/extra/secs1d/inst/secs1d_nlpoisson_newton.m Modified: trunk/octave-forge/extra/secs1d/inst/secs1d_dd_gummel_map.m =================================================================== --- trunk/octave-forge/extra/secs1d/inst/secs1d_dd_gummel_map.m 2012-03-29 20:57:24 UTC (rev 10099) +++ trunk/octave-forge/extra/secs1d/inst/secs1d_dd_gummel_map.m 2012-03-29 22:54:47 UTC (rev 10100) @@ -16,6 +16,9 @@ %% You should have received a copy of the GNU General Public License %% along with SECS1D; If not, see <http://www.gnu.org/licenses/>. +%% +%% Solve the scaled stationary bipolar DD equation system using Gummel algorithm. +%% %% [n, p, V, Fn, Fp, Jn, Jp, it, res] = secs1d_dd_gummel_map (x, D, Na, Nd, %% pin, nin, Vin, Fnin, %% Fpin, l2, er, u0n, @@ -25,9 +28,6 @@ %% Cn, Cp, an, ap, Ecritnin, Ecritpin, %% toll, maxit, ptoll, pmaxit) %% -%% This function solves the scaled stationary bipolar DD -%% equation system using Gummel algorithm -%% %% input: %% x spatial grid %% D, Na, Nd doping profile Modified: trunk/octave-forge/extra/secs1d/inst/secs1d_dd_newton.m =================================================================== --- trunk/octave-forge/extra/secs1d/inst/secs1d_dd_newton.m 2012-03-29 20:57:24 UTC (rev 10099) +++ trunk/octave-forge/extra/secs1d/inst/secs1d_dd_newton.m 2012-03-29 22:54:47 UTC (rev 10100) @@ -16,13 +16,13 @@ %% You should have received a copy of the GNU General Public License %% along with SECS1D; If not, see <http://www.gnu.org/licenses/>. +%% Solve the scaled stationary bipolar DD equation system using Newton's method. +%% %% [n, p, V, Fn, Fp, Jn, Jp, it, res] = secs1d_dd_newton (x, D, Vin, nin, %% pin, l2, er, un, %% up, theta, tn, tp, %% Cn, Cp, toll, maxit) %% -%% Solve the scaled stationary bipolar DD equation system using Newton's method -%% %% input: %% x spatial grid %% D doping profile Modified: trunk/octave-forge/extra/secs1d/inst/secs1d_nlpoisson_newton.m =================================================================== --- trunk/octave-forge/extra/secs1d/inst/secs1d_nlpoisson_newton.m 2012-03-29 20:57:24 UTC (rev 10099) +++ trunk/octave-forge/extra/secs1d/inst/secs1d_nlpoisson_newton.m 2012-03-29 22:54:47 UTC (rev 10100) @@ -16,6 +16,8 @@ %% You should have received a copy of the GNU General Public License %% along with SECS1D; If not, see <http://www.gnu.org/licenses/>. +%% Solve the non-linear Poisson problem using Newton's algorithm. +%% %% [V, n, p, res, niter] = secs1d_nlpoisson_newton (x, sinodes, Vin, nin, pin, %% Fnin, Fpin, D, l2, er, toll, maxit) %% This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |