Modeling Rotationally Symmetric Irregularity (RSI) with the API

We use the Application Programming Interface (API) with Matlab to model Rotationally Symmetric Irregularity (RSI) on a parabolic mirror. 

Authored By Erin Elliott

Downloads

Article Attachments

Introduction

We demonstrate using Matlab and the API to add irregularity and RSI to a parabolic mirror. For an explanation of RSI, see the article Introduction to Rotationally Symmetric Irregularity (RSI).

Parabolic mirror example

We’ll demonstrate adding RSI and total irregularity to a parabolic mirror.  The mirror is F/3, with an effective focal length of 150 mm.

 

LDE

Layout

For the demonstration, we will add total irregularity and RSI to the surface per this specification:
ISO
This will place 1 wave P-V of total irregularity on the surface, and 0.3 waves P-V of RSI.  In nanometers, that will be 500 nm of total surface irregularity, and 150 nm of total RSI.


Structure of the code

We’ve included example Matlab code in the file ErinsABCFunctions.m.  The file includes a number of basic supporting funtions, such as displayLDE for displaying information from the Lens Data Editor (LDE) of the .ZMX file.  
The file also includes functions that are relevant to modeling irregularity and RSI. The function prepareSurface changes a Standard or Even Asphere surface into a Zernike Standard Sag surface.  
The most important function is AddBC (surface number, wavelength, B, C), where B is the maximum total surface irregularity, and C is the maximum allowed RSI. The AddBC functions works as follows:

  • Assigns random values to the RSI terms: Z11, Z22, Z37, and Z56.
  • Checks the RMS surface error.
  • Scales to achieve the correct value for C.
    • This takes just a single scaling, because scaling each Zernike coefficient by a constant scales the RMS by the same constant.
  • Assigns random values to other Zernike polynomials to model B, total irregularity.
    • Without disturbing the values of the RSI terms: Z11, Z22, Z37, and Z56.
    • Uses Z5 – Z37 to simulate the total irregularity.
  • Iteratively scales the Zernike terms to reach the correct total irregularity.

 

Running the Matlab example in Interactive Mode

Interactive mode with Matlab and the API is convenient because you can control the API from the Matlab command line. This allows you to try out new commands and change commands on the fly.
To connect in Interactive mode, open Parabola_StartingFile.zmx.  Under the Programming tab, choose Matlab and then Interactive Extension, as shown below.

 

Connection


Connection code will automatically open.

 

Connection

 

Back in OpticStudio, choose the “Interactive Extension” button on the Programming tab.  This will put OpticStudio into “listening” mode.

 

Connection 


In Matlab, now we can connect using the command:

>> TheApplication = MATLABZOSConnection9(7)

Note that your MATLABZOSConnection number and instance may be different than the ones given here.  For example, if this is the first time you’ve connected, you might have MATLABZOSConnection(1).  

 

Connection

 

Modeling RSI using Matlab

After making the connection, we can load the file and collect information from the .ZMX file as follows, from the Matlab command line:

>> primarySystem = TheApplication.PrimarySystem
>> theLDE = primarySystem.LDE
>> theMFE = primarySystem.MFE
>> systemData = primarySystem.SystemData
>> savefilename = System.String.Concat(pwd,'\LensFileForTesting.zmx')
>> primarySystem.SaveAs(savefilename)

Now, from Matlab, open the file ErinsABCFunctions.m.  We can now load the functions included in ErinsABCFunctions.

>> abc = ErinsABCFunctions

Prepare the surface by changing it to a Zernike Standard Sag surface.

>> ldetable = abc.displayLDE(primarySystem); disp(ldetable);
>> surfacetable = abc.prepareSurface(primarySystem,3); disp(surfacetable);

The outputs from the above two commands are show below.

 

Result

Result

For later, let’s collect the starting sag of the mirror.

>> startingsag = abc.getSag(primarySystem,3);
>> figure(); imagesc(startingsag); axis square;

 

Result

 

Now we can add the B and C surface irregularities using AddBC.

>> bctable = abc.AddBC( primarySystem, 3, 500.0, 1, 0.3);
>> disp( bctable);

 

Result


 
Note that at this point, if we were carrying out a tolerancing run, we could select random values for B and C when calling AddBC.
Collect the perturbed sag of the mirror, and subtract the starting sag so that the surface error perturbations are visible.

>> bcsag = abc.getSag( primarySystem, 3);
>> sagdiff = bcsag-startingsag;
>> figure(); imagesc( sagdiff ); axis square;

 

Result


 
And we can check the final P-V of these surface errors, too.

>> abs(max( sagdiff(:))-min( sagdiff(:)) / (500*10^-6))
 
The value is 0.995, rather than the B = 1.000 that we requested. That is due to the accuracy setting used during the iteration needed to scale the Zernikes correctly.  A tighter accuracy setting would return an answer closer to 1.000 but would take longer to calculate.
After completing the simulations, we need to close interactive mode.

>> TheApplication.CloseApplication()

KA-01975

Was this article helpful?
2 out of 2 found this helpful

Comments

0 comments

Please sign in to leave a comment.