?? psn_cyl_demo.m
字號:
function varargout = psn_cyl_demo(varargin)
% PSN_CYL_DEMO M-file for psn_cyl_demo.fig
% PSN_CYL_DEMO, by itself, creates a new PSN_CYL_DEMO or raises the existing
% singleton*.
%
% H = PSN_CYL_DEMO returns the handle to a new PSN_CYL_DEMO or the handle to
% the existing singleton*.
%
% PSN_CYL_DEMO('CALLBACK',hObject,eventData,handles,...) calls the local
% function named CALLBACK in PSN_CYL_DEMO.M with the given input arguments.
%
% PSN_CYL_DEMO('Property','Value',...) creates a new PSN_2D_DEMO or raises the
% existing singleton*. Starting from the left, property value pairs are
% applied to the GUI before psn_2d_demo_OpeningFunction gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to psn_2d_demo_OpeningFcn via varargin.
%
% *See GUI Options on GUIDE's Tools menu. Choose "GUI allows only one
% instance to run (singleton)".
%
% See also: GUIDE, GUIDATA, GUIHANDLES
% Edit the above text to modify the response to help psn_2d_demo
% Last Modified by GUIDE v2.5 14-Dec-2003 15:20:59
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name', mfilename, ...
'gui_Singleton', gui_Singleton, ...
'gui_OpeningFcn', @psn_cyl_demo_OpeningFcn, ...
'gui_OutputFcn', @psn_cyl_demo_OutputFcn, ...
'gui_LayoutFcn', [] , ...
'gui_Callback', []);
if nargin & isstr(varargin{1})
gui_State.gui_Callback = str2func(varargin{1});
end
if nargout
[varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
else
gui_mainfcn(gui_State, varargin{:});
end
% End initialization code - DO NOT EDIT
% --- Executes just before psn_2d_demo is made visible.
function psn_cyl_demo_OpeningFcn(hObject, eventdata, handles, varargin)
% This function has no output args, see OutputFcn.
% hObject handle to figure
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% varargin command line arguments to psn_2d_demo (see VARARGIN)
% Choose default command line output for psn_2d_demo
handles.output = hObject;
% Update handles structure
guidata(hObject, handles);
% This sets up the initial plot - only do when we are invisible
% so window can get raised using psn_2d_demo.
set(handles.listbox1,'Value',1);
set(handles.popupmenu2,'Value',3);
set(handles.listbox2,'Value',2);
if strcmp(get(hObject,'Visible'),'off')
listbox1_Callback(hObject, eventdata, handles)
end
% UIWAIT makes psn_2d_demo wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
function varargout = psn_cyl_demo_OutputFcn(hObject, eventdata, handles)
% varargout cell array for returning output args (see VARARGOUT);
% hObject handle to figure
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Get default command line output from handles structure
varargout{1} = handles.output;
% --------------------------------------------------------------------
function FileMenu_Callback(hObject, eventdata, handles)
% hObject handle to FileMenu (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% --------------------------------------------------------------------
function OpenMenuItem_Callback(hObject, eventdata, handles)
% hObject handle to OpenMenuItem (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
file = uigetfile('*.fig');
if ~isequal(file, 0)
open(file);
end
% --------------------------------------------------------------------
function PrintMenuItem_Callback(hObject, eventdata, handles)
% hObject handle to PrintMenuItem (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
printdlg(handles.figure1)
% --------------------------------------------------------------------
function CloseMenuItem_Callback(hObject, eventdata, handles)
% hObject handle to CloseMenuItem (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
selection = questdlg(['Close ' get(handles.figure1,'Name') '?'],...
['Close ' get(handles.figure1,'Name') '...'],...
'Yes','No','Yes');
if strcmp(selection,'No')
return;
end
delete(handles.figure1)
% --- Executes during object creation, after setting all properties.
function popupmenu1_CreateFcn(hObject, eventdata, handles)
% hObject handle to popupmenu3 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: popupmenu controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc
set(hObject,'BackgroundColor','white');
else
set(hObject,'BackgroundColor',get(0,'defaultUicontrolBackgroundColor'));
end
set(hObject, 'String', {'plot(rand(5))', 'plot(sin(1:0.01:25))', 'comet(cos(1:.01:10))', 'bar(1:10)', 'plot(membrane)', 'surf(peaks)'});
% --- Executes on selection change in popupmenu3.
function popupmenu1_Callback(hObject, eventdata, handles)
% hObject handle to popupmenu3 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hints: contents = get(hObject,'String') returns popupmenu3 contents as cell array
% contents{get(hObject,'Value')} returns selected item from popupmenu3
% --- Executes on button press in pushbutton2.function pushbutton2_Callback(hObject, eventdata, handles)% hObject handle to pushbutton2 (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA)% --- Executes during object creation, after setting all properties.function listbox1_CreateFcn(hObject, eventdata, handles)% hObject handle to listbox1 (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles empty - handles not created until after all CreateFcns called% Hint: listbox controls usually have a white background on Windows.% See ISPC and COMPUTER.if ispc set(hObject,'BackgroundColor','white');else set(hObject,'BackgroundColor',get(0,'defaultUicontrolBackgroundColor'));end% --- Executes on selection change in listbox1.function listbox1_Callback(hObject, eventdata, handles)% hObject handle to listbox1 (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA)% Hints: contents = get(hObject,'String') returns listbox1 contents as cell array% contents{get(hObject,'Value')} returns selected item from listbox1axes(handles.axes1);
cla;
cmCharge=1;
cmCapacitor=2;
cmDam=3;
cmNiagara=4;
cmIonic=5;
cmError=6;
cmConvergence=7;
met = get(handles.listbox2, 'Value');
crd=1;
grid=1;
Nx=49;
Ny=49;
% enum INPPARAM {
par(1)=Nx;% INP_NX, //Number of INTERIOR points in X-dirextion
par(2)=Ny;% INP_NY, //Number of INTERIOR points in Y-dirextion
par(3)=1;% INP_LX, //X-size
par(4)=1;% INP_LY, //Y-size
par(5)=1;% INP_GRID, //Grid: 0-standard, 1 - centered
par(6)=met;% INP_METHOD, //Solving method from PSN_METHODS
par(7)=1e-11;% INP_TOL, //Tolerance
par(8)=4000;% INP_MAXSTEP, //Max steps
par(9)=2-4/Nx; %INP_OMEGA
par(10)=crd; %COORD //0 - cartesian, 1-cylindrical
% //Boundary conditions
par(11)=1;% INP_ALPHAX0,
par(12)=1;% INP_ALPHAX1,
par(13)=0;% INP_BETAX0,
par(14)=0;% INP_BETAX1,
par(15)=1; % INP_ALPHAY0,
par(16)=1;% INP_ALPHAY1,
par(17)=0;% INP_BETAY0,
par(18)=0;% INP_BETAY1
h=1/Nx;
v=zeros(Ny+2, Nx+2);
e=ones(Ny+2,Nx+2);
v1=ones(Ny+2,Nx+2);
u1=[];
ind = get(handles.listbox1, 'Value');
tol_ind = get(handles.popupmenu2, 'Value');
switch (tol_ind)
case 1
tol=1e-6;
case 2
tol=1e-8;
case 3
tol=1e-10;
case 4
tol=1e-12;
otherwise
tol=1e-10;
end
par(7)=tol;
switch ind
case cmCharge
par(11)=1;% INP_ALPHAX0,
par(12)=1;% INP_ALPHAX1,
par(13)=0;% INP_BETAX0,
par(14)=0;% INP_BETAX1,
par(15)=1; % INP_ALPHAY0,
par(16)=1;% INP_ALPHAY1,
par(17)=0;% INP_BETAY0,
par(18)=0;% INP_BETAY1
v(2, (Nx+1)/2)=-50/h/h;
case cmCapacitor
v(:,Nx+2)=1;
par(15)=0; % INP_ALPHAY0,
par(16)=0;% INP_ALPHAY1,
par(17)=1;% INP_BETAY0,
par(18)=1;% INP_BETAY1
case cmDam
v(:,Nx+2)=1;
par(15)=0; % INP_ALPHAY0,
par(16)=0;% INP_ALPHAY1,
par(17)=1;% INP_BETAY0,
par(18)=-1;% INP_BETAY1
e(:,:)=80;
for i=1:Ny+1
for j=(Nx+1)/2-5:(Nx+1)/2+5
e(i,j)=2;
end;
end;
case {cmNiagara, cmIonic}
v(:,Nx+2)=1;
par(15)=0; % INP_ALPHAY0,
par(16)=0;% INP_ALPHAY1,
par(17)=1;% INP_BETAY0,
par(18)=-1;% INP_BETAY1
e(:,:)=80;
for i=1:Ny+1
for j=(Nx+1)/2-5:(Nx+1)/2+5
if (abs(i)>15)
e(i,j)=2;
end;
end;
end;
if ind==cmIonic
v(2,(Nx+1)/2+7)=-40/h/h;
end
case {cmError,cmConvergence}
v(:,1)=1;
v(:,Nx+2)=1;
v(1,:)=1;
v(Ny+2,:)=1;
u1=ones(Ny+2,Nx+2);
end
tic;
[u, out_par, step_err]=psn_2d_mex(par, v,e);
tm=toc;
s=sprintf('Iteration Num=%u',out_par(2));
set(handles.text3,'String',s);
s=sprintf('Elapsed time=%f s',tm);
set(handles.text4,'String',s);
switch ind
case cmError
surfc((u-u1));
case cmConvergence
semilogy(step_err);
otherwise
surfc(u);
end
colormap('jet');
% --- Executes during object creation, after setting all properties.function listbox2_CreateFcn(hObject, eventdata, handles)% hObject handle to listbox2 (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles empty - handles not created until after all CreateFcns called% Hint: listbox controls usually have a white background on Windows.% See ISPC and COMPUTER.if ispc set(hObject,'BackgroundColor','white');else set(hObject,'BackgroundColor',get(0,'defaultUicontrolBackgroundColor'));end% --- Executes on selection change in listbox2.function listbox2_Callback(hObject, eventdata, handles)% hObject handle to listbox2 (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA)% Hints: contents = get(hObject,'String') returns listbox2 contents as cell array% contents{get(hObject,'Value')} returns selected item from listbox2listbox1_Callback(hObject,eventdata,handles);% --- Executes during object creation, after setting all properties.function popupmenu2_CreateFcn(hObject, eventdata, handles)% hObject handle to popupmenu2 (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles empty - handles not created until after all CreateFcns called% Hint: popupmenu controls usually have a white background on Windows.% See ISPC and COMPUTER.if ispc set(hObject,'BackgroundColor','white');else set(hObject,'BackgroundColor',get(0,'defaultUicontrolBackgroundColor'));end% --- Executes on selection change in popupmenu2.function popupmenu2_Callback(hObject, eventdata, handles)% hObject handle to popupmenu2 (see GCBO)% eventdata reserved - to be defined in a future version of MATLAB% handles structure with handles and user data (see GUIDATA)% Hints: contents = get(hObject,'String') returns popupmenu2 contents as cell array% contents{get(hObject,'Value')} returns selected item from popupmenu2listbox1_Callback(hObject,eventdata,handles);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -