讯技光电公司首页 最新公告:2024年讯技课程安排发布啦! 黉论教育网校|English|全站搜索|联系我们
栏目列表
FRED
VirtualLab
Macleod
GLAD
OCAD
Optiwave
LASCAD
Litestar 4D
TechwizD和TX液晶显示软件
JCMSuite
EastWave
最新发布

天文光干涉仪

双折射晶体偏振干涉效应

颜色分析

FRED应用:颜色分析

FRED应用:数字化极坐标数据

FRED应用:波片模拟

FRED应用:MTF的计算

FRED应用:LED手电筒模拟

FRED应用:模拟沃拉斯顿棱镜

FRED应用:准直透镜模拟与优

当前位置: 主页 > 服务项目 > 案例分析 > FRED >
FRED如何调用Matlab
时间:2016-01-18 21:23来源:讯技光电作者: 技术部点击:打印
简介:FRED作为COM组件可以实现与Excel、VB、Matlab等调用来完成庞大的计算任务或画图,本文的目的是通过运行一个案例来实现与Matlab的相互调用,在此我们需要借助脚本来完成,此脚本为视为通用型脚本。
 
配置:在执行调用之前,我们需要在Matlab命令行窗口输入如下命令:
enableservice('AutomationServer', true)
enableservice('AutomationServer')
结果输出为1,这种操作方式保证了当前的Matlab实体可以用于通信。
 
在winwrp界面,为增加和使用Matlab类型的目录库,我们需要如下步骤:
1. 在FRED脚本编辑界面找到参考.
2. 找到Matlab Automation Server Type Library
3. 将名字改为MLAPP
 
 
在Matlab里面有两种常用的数据发送选项PutWorkspaceData 及PutFullMatrix,PutWorkspaceData适用于存储一般的数据在工作区,并赋予其为变量,PutFullMatrix试用于复数数据。
 
图 编辑/参考
 
 
现在将脚本代码公布如下,此脚本执行如下几个步骤:
1. 创建Matlab服务器。
2. 移动探测面对于前一聚焦面的位置。
3. 在探测面追迹光线
4. 在探测面计算照度
5. 使用PutWorkspaceData发送照度数据到Matlab
6. 使用PutFullMatrix发送标量场数据到Matlab中
7. 用Matlab画出照度数据
8. 在Matlab计算照度平均值
9. 返回数据到FRED中
 
代码分享:
 
Option Explicit
 
Sub Main
 
    Dim ana As T_ANALYSIS
    Dim move As T_OPERATION
    Dim Matlab As MLApp.MLApp
    Dim detNode As Long, detSurfNode As Long, anaSurfNode As Long
    Dim raysUsed As Long, nXpx As Long, nYpx As Long
    Dim irrad() As Double, imagData() As Double, reals() As Double, imags() As Double
    Dim z As Double, xMin As Double, xMax As Double, yMin As Double, yMax As Double
    Dim meanVal As Variant
 
    Set Matlab = CreateObject("Matlab.Application")
 
    ClearOutputWindow
 
    'Find the node numbers for the entities being used.
    detNode = FindFullName("Geometry.Screen")
    detSurfNode  = FindFullName("Geometry.Screen.Surf 1")
    anaSurfNode = FindFullName("Analysis Surface(s).Analysis 1")
 
    'Load the properties of the analysis surface being used.
    LoadAnalysis anaSurfNode, ana
 
    'Move the detector custom element to the desired z position.
    z = 50
    GetOperation detNode,1,move
    move.Type = "Shift"
    move.val3 = z
    SetOperation detNode,1,move
    Print "New screen position, z = " &z
 
    'Update the model and trace rays.
    EnableTextPrinting (False)
        Update
        DeleteRays
        TraceCreateDraw
    EnableTextPrinting (True)
 
    'Calculate the irradiance for rays on the detector surface.
    raysUsed  = Irradiance( detSurfNode, -1, ana, irrad )
    Print raysUsed & " rays were included in the irradiance calculation.
 
    'When using real number data to send to MATLAB, it is simplest to use PutWorkspaceData.
    Matlab.PutWorkspaceData("irradiance_pwd","base",irrad)
 
    'PutFullMatrix is more useful when actually having complex data such as with
    'scalar wavefield, for example. Note that the scalarfield array in MATLAB
    'is a complex valued array.
    raysUsed = ScalarField ( detSurfNode, -1, ana, reals, imags )
    Matlab.PutFullMatrix("scalarfield","base", reals, imags )
    Print raysUsed & " rays were included in the scalar field calculation."
 
    'Calculate plot characteristics from the T_ANALYSIS structure.  This information is used
    'to customize the plot figure.
    xMin = ana.posX+ana.AcellX*(ana.Amin-0.5)
    xMax = ana.posX+ana.AcellX*(ana.Amax+0.5)
    yMin = ana.posY+ana.BcellY*(ana.Bmin-0.5)
    yMax = ana.posY+ana.BcellY*(ana.Bmax+0.5)
    nXpx = ana.Amax-ana.Amin+1
    nYpx = ana.Bmax-ana.Bmin+1
 
    'Plot the data in Matlab with some parameters calculated from the T_ANALYSIS
    'structure.  Set the axes labels, title, colorbar and plot view.
    Matlab.Execute( "figure; surf(linspace("&xMin &","&xMax &","&nXpx &"),linspace("& yMin &"," & yMax & "," & nYpx & "),irradiance_pwd, 'EdgeColor', 'None');" )
    Matlab.Execute( "xlabel('X Position (" & GetUnits() & ")')" ) : Matlab.Execute( "ylabel('Y Position (" & GetUnits() & ")')" ) : Matlab.Execute( "zLabel( 'Irradiance' )" )
    Matlab.Execute( "title('Detector Irradiance')" )
    Matlab.Execute( "colorbar" )
    Matlab.Execute( "view(2)" )
    Print ""
    Print "Matlab figure plotted..."
 
    'Have Matlab calculate and return the mean value.
    Matlab.Execute( "irrad = mean(mean(irradiance_pwd));" )
    Matlab.GetWorkspaceData( "irrad", "base", meanVal )
    Print "The mean irradiance value calculated by Matlab is: " & meanVal
 
    'Release resources
    Set Matlab = Nothing
 
End Sub
 
最后在Matlab画图如下:
 
并在工作区保存了数据:
 

 
并返回平均值:
 
与FRED中计算的照度图对比:
   
例:
 
此例系统数据,可按照此数据建立模型
 
系统数据
 
 
光源数据:
Type: Laser Beam(Gaussian 00 mode)
Beam size: 5;
Grid size: 12;
Sample pts: 100;
相干光;
波长0.5876微米,
距离原点沿着Z轴负方向25mm。
 
对于执行代码,如果想保存图片,请在开始之前一定要执行如下代码:
enableservice('AutomationServer', true)
enableservice('AutomationServer')
关于我们
公司介绍
专家团队
人才招聘
讯技风采
员工专区
服务项目
产品销售
课程中心
专业书籍
项目开发
技术咨询
联系方式
地址:上海市嘉定区南翔银翔路819号中暨大厦18楼1805室    邮编:201802
电话:86-21-64860708/64860576/64860572  传真:86-21-64860709
课程:course@infotek.com.cn
业务:sales@infotek.com.cn
技术:support@infotek.com.cn
官方微信
扫一扫,关注讯技光电的微信订阅号!
Copyright © 2014-2024 讯技光电科技(上海)有限公司, All Rights Reserved. 沪ICP备10008742号-1