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.

[SOLVED] Use batch mode Calibre Setup View in Cadence

Status
Not open for further replies.

mitsos1996

Newbie
Joined
Nov 29, 2019
Messages
3
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Activity points
36
Hi,

I run Calibre Pex and Then I want to run Setup->Calibre View. But Instead of doing it from GUI, I want to do it from Command Line or form CIW of Virtuoso. Does anyone know how to run Calibre Setup in this way?
 

Not specifically, but the cds.log file should hold
every command that got entered or executed
from scripts. Copy to file, trim to fit and then
execute from CIW?
 

; Create Calibre View
myPort = outfile( "calibreview.setup" "w")
fprintf(myPort "calibre_view_netlist_file : %s\n" NETLIST)
fprintf(myPort "output_library : %s\n" library)
fprintf(myPort "schematic_library : %s\n" library)
fprintf(myPort "cell_name : %s\n" cellname)
fprintf(myPort "cellmap_file : %s\n" cellmap)
fprintf(myPort "calibreview_log_file : ./calview.log\n")
fprintf(myPort "calibreview_name : calibre\n")
fprintf(myPort "calibreview_type : schematic\n")
fprintf(myPort "create_terminals : if_matching\n")
fprintf(myPort "preserve_device_case : off\n")
fprintf(myPort "execute_callbacks : off\n")
fprintf(myPort "suppress_notes : off\n")
fprintf(myPort "reset_properties : (m=1)\n")
fprintf(myPort "magnify_devices_by : 1.000000\n")
fprintf(myPort "magnify_parasitics_by : 1.000000\n")
fprintf(myPort "device_placement : layout_location\n")
fprintf(myPort "parasitic_placement : arrayed\n")
fprintf(myPort "show_parasitic_polygons : off\n")
fprintf(myPort "open_calibreview : don't_open\n")
fprintf(myPort "generate_spectre_netlist : off\n")
close(myPort)
printf("Running Calibre View Setup\n")
mgc_rve_load_setup_file("calibreview.setup")
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top