wafertempcontroller.m

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

M
28
字号
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 setpointS     = quadgrid('cyln',N,'r',[0 Rw]);power = 0.5; % initial guess for power input fractionT     = scalarfield(S,Tset);%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% set up an instance of the lampflux objectvar   = 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 + -
显示快捷键?