Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

link from CST Microwave Studio to Matlab

Status
Not open for further replies.

Demonis

Member level 1
Joined
Jun 1, 2006
Messages
36
Helped
1
Reputation
2
Reaction score
0
Trophy points
1,286
Activity points
1,528
cst matlab

Has anybody experience with a link from CST Microwave Studio 5 to Matlab??

I try to automatically run the simulation and export results from CST.

By this time I can open file, change variables, run simulation and export results in Touchstone file
Code:
cst = actxserver('CSTStudio.Application');
cst.invoke('OpenFile','C:\\GA\\Test2\\test.mod');
cst.invoke('StoreDoubleParameter','L','45');

cst2 = actxserver('MWStudio.Solver');
cst2.invoke('Start');

cst3 = actxserver('MWStudio.TOUCHSTONE');
cst3.invoke('Reset');
cst3.invoke('FileName','c:\\results2');
cst3.invoke('Impedance','500');
cst3.invoke('Renormalize','True');
cst3.invoke('SetNSamples','20');
cst3.invoke('Write');
But I need to use VBA Method ASCIIExport to export some other 1D-results and a similar code doesn't work
Code:
cst5 = actxserver('MWStudio.ASCIIExport');
 

matlab cst

I would ike to do the same thing.

Do you resolve your pbs ?
 

cst vba

you must refer to cst scripting
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top