wafertempcontroller.m

来自「MDPSAS工具箱是马里兰大学开发的」· M 代码 · 共 31 行

M
31
字号
function B = wafertempcontroller(N,Rw,Tset)

% wafertempcontroller.m A nonlinear equation model object constructor, derived
%                       from the neqmodel class. Called as
%
%            A = lampflux(N,Rw)
%
% INPUT PARAMETERS
%
%            N : number of quadrature points
%           Rw : wafer radius, (m)
%         Tset : mean wafer temperature setpoint


M = mwrmodel('cyln',N,'r',[0 Rw]);
S = get(M,'R');

power = 0.5; % initial guess for power input fraction
T     = scalarfield(S,Tset);

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% set up an instance of the lampflux object

var   = assocarray({'power' power});
param = assocarray({ 'T' T,'Tset',Tset});

A = naemodel('wafertempcontroller',var,param);
B = struct([]);

B = class(B,'wafertempcontroller',A);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?