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.

Is it futile to simulate different circuits one after the other in ADS through AEL?

Status
Not open for further replies.

joesef

Newbie
Joined
Sep 2, 2019
Messages
5
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Location
Taipei
Activity points
118
Hi All,

I am trying to do Image Rejection Ratio simulations in ADS which I have to run two circuits, one after the other. It will be nice to have an AEL program to run one circuit (.dsn files) after the other automatically, instead of manually waiting for one circuit to finish simulations before simulating the other.

I tried the AEL program below :


Code dot - [expand]
1
2
3
4
5
6
7
8
9
10
11
/*Simulate T_P_IM*/
de_set_window_by_sequence(1, 0);
de_analyze();
sleep(10);
de_release_simulator();
 
/*Simulate T_P_RF*/
de_set_window_by_sequence(1, 1);
de_analyze();
sleep(5);
de_release_simulator();


However have gotten the error :

error_foreground.png

Each simulations only take 2 seconds, yet the de_release_simulator(); and sleep(5) did not help.

Any tips or directions will be appreciated!
 
Last edited by a moderator:

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top