⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 readzemaxillum.m

📁 zemax与matlab调用程序
💻 M
字号:
function zmxIllum = ReadZemaxIllum(File)
% zmxIllum = ReadZemaxIllum(File)
%
% Reads text written from a Zemax Relative Illumination (Rel) analysis.
% The text can be written from the Relative Illumination window, or generated using zGetTextFile with the 'Rel' code (see help ZemaxButtons)
% The results are returned in a struct in which the following fields are defined :
%      datatype: Type of data in e.g. 'Relative Illumination Data'
%          file: Name of the ZEMAX file from which the data was computed e.g. 'C:\Projects\MSMI\Concepts\baf(960)mak.ZMX'
%         title: Title of the ZEMAX file from which the data was computed e.g. 'mak U.S.Patent 2701983 Variant a'
%          date: Date on which the data was computed e.g. 'THU NOV 6 2003'
%           wav: Wavelength of the computation (in microns)
%    fieldunits: The units of the field position data (e.g. millimetres or degrees)
%         field: The field position data in fieldunits.
%        relill: The relative illumination data.
%        effeff: The effective F number at this field position.
%
% See also zGetTextFile

% MZDDE - The ZEMAX DDE Toolbox for Matlab.
% Copyright (C) 2002-2004 Defencetek, CSIR
% Contact : dgriffith@csir.co.za
% 
% This file is part of MZDDE.
% 
%  MZDDE is free software; you can redistribute it and/or modify
%  it under the terms of the GNU General Public License as published by
%  the Free Software Foundation; either version 2 of the License, or
%  (at your option) any later version.
%
%  MZDDE is distributed in the hope that it will be useful,
%  but WITHOUT ANY WARRANTY; without even the implied warranty of
%  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
%  GNU General Public License for more details.
%
%  You should have received a copy of the GNU General Public License
%  along with MZDDE (COPYING.html); if not, write to the Free Software
%  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
%



% $Revision: 1.1 $

[fid, err] = fopen(File, 'r');
if fid==-1
    disp(['Unable to open specified file ' File ' - ' err]);
    return;
end
nexlin = fgetl(fid);
zmxIllum.datatype = nexlin;
datacount = 0; % Count the data lines
while ~feof(fid) 
   nexlin = fgetl(fid);
   if length(nexlin) > 6 
       ident = nexlin(1:6);
   else
       ident = nexlin;
   end
   switch ident
       case 'File :' 
           zmxIllum.file = nexlin(8:(length(nexlin)));
       case 'Title:' 
           zmxIllum.title = nexlin(8:(length(nexlin)));
       case 'Date :' 
           zmxIllum.date = nexlin(8:(length(nexlin)));
       
       otherwise
           % Try various scans to see what the data might be
           [A, count] = sscanf(nexlin, 'Wavelength: %f ');
           if count == 1
               zmxIllum.wav = A(1);
              
           else
               [A, count] = sscanf(nexlin, '%f %f %f');
               if count == 3
                  % Presumably we have hit data, now stored as column vector in A
                  datacount = datacount + 1;
                  zmxIllum.field(datacount) = A(1);
                  zmxIllum.relill(datacount) = A(2);
                  zmxIllum.effeff(datacount) = A(3);
               else
                   [A, count] = sscanf(nexlin, 'Field values are in %s');
                   if count == 1
                       zmxIllum.fieldunits = A;
                   else
                       % Put any new code in here
                   end
               end
                 
           end
   end

end

fclose(fid);

⌨️ 快捷键说明

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