Quantcast
Channel: Cadence PCB Design Forum
Viewing all 5525 articles
Browse latest View live

Update symbol with added pad

$
0
0

Hello,

 I'm working with Orcad Professional 17.2.

I've a pcb 100% routed. I've to add a hole into a symbol.

I edited symbol in library and generated .psm file.

If I try to update (with "Update  symbol padstack from library") and a error occurs:

'SKIIP' symbol starting to refresh:

     ERROR(SPMHNI-271): 1 pins found in library symbol, but missing from the symbol in the physical design. They are:
            33

Anyone can help me?
Thanks
Stefano

facing sync issue while generating the netlist

$
0
0

I am using Allegro design entry HDL 17.2.  i updated in Schematic only a specific component without any changes in the existing board(.cpm file) .while generating a netlist i am facing Synchronization issue.

If i am using the old board without any change also having the same issue.  

Custom report generation

$
0
0

I am trying to create a custom report in Orcad PCB Editor that outputs the internal Part Number we have assigned.
My schematic  symbol has defined a property of "User Part Number". That creates Attached text:
   class      = USER PART NUMBER
   subclass   = ASSEMBLY_TOP
   value      = 5041210
in the footprint.
   
My question is what do I need to add to the symbol to get the part number to show up in the report using:
 
# This is an extract command file
# generated by the Extract UI.
#
COMPONENT
REFDES
REFDES_SORT
SYM_CENTER_X
SYM_CENTER_Y
PART_NUMBER
END

Encryption of Capture tcl script

$
0
0

Hello,

I need to encrypt a sensitive Capture tcl script. Page 106 of the Capture tcl/tk Application Note mentions the ''orcad::encrypt" command, however when I try to run from the Capture Command Window I get:

[ 1]invalid command name "orcad::encrypt"

I am using Capture 17.2-2016. Could you please advise ?

Many thanks.

Linking OrCAD CIS to MySQL -> Only 1 component per Table Shown?

$
0
0

Here's my setup:

  1. Ubuntu server 16.04 running mySQL database (outside network)
    1. I imported the example BenchAccess database to get started -- I'll eventually add my own components, but thats irrelevant for now.
  2. OrCAD 17.2 running inside a Windows 7 VM on my MacBook Pro inside Virtualbox.
  3. I SSH Port Forward the Ubuntu Server MySQL port to my MacBook Pro.
  4. I add the connection in windows ODBC connection manager using MySQL ODBC 3.51 Driver. I am connecting to my MacBook in this scenario.
  5. I import the connection into OrCAD using the CIS configuration file. All goes ok, connection is made.

But then when I try to place a database part, I only see 1 entry for each table...

For example, on MySQL here are all some of the capacitors:

Where as in Place Database Part, here's what I get:

Only the 1 entry. Same holds true for each table.

For sanity, I also accessed the table through MySQL Workbench in my VM. All rows are shown. However it should be noted I accessed MySQL through MySQL's own "Connect to Database" tool instead of using Windows' Data Sources.

Hoping you guys can provide some insight?

Design entry HDL schematic symbol to CIS schematics symbol conversion.

$
0
0

What is the best way to achieve this other than manual entry?

Thanks,

Luis

Covert a circle into a dxf file to a plated hole

$
0
0

I imported a dxf file into PCB designer to serve as the board outline. However; I cannot figure out how to convert the circles into plated holes. What is the easiest method to do this?

Allegro 17.2 Slot tolerance numbers

$
0
0

Hi All:

How do I get slot tolerance numbers from padstack into drill legend.

Currently only X tolerance shows up not the Y tolerance

Also, slot tolerance does not show up in drill customization chart.

Thanks

Les


cadence allegro 16.6 Software is hanged due to shape modification ?

$
0
0

Hi everyone,

i am working on cadence allegro 16.6. in my design i am updating shape,but software is hanged due to shape updates.i could not solve this issue. i could not understand it is happening only in this board file.

Importing Mentor Graphics DxDesigner Schematics into OrCAD (v17.2)

$
0
0

Folks,

A client of mine exported their MG DxDesigner schematic to me in an EDIF format (actually *.edn), it seems to import when I import from the OrCAD main menu, but there is no schematic generated (*.DSN).  When I look at the importation log (edi2cap.log) all I see is a whole bunch of lines saying the same thing, namely:

EDIF 200: Info: source line 14: no distance scale defined for current library

I get this output 40 times and the log entry exits with the following:

EDIF 200 parsing finished
Design has no schematics => OrCAD Schematic will not be created
Design library has no Symbols => OrCAD library will not be created
Comment => Maybe you are converting Netlist project

I double checked with the CAD guy doing the exportation and it is a schematic and not a netlist file.

Does anybody else get this problem when importing Mentor Graphics schematics?

Chris

Set property on FlatNet, using selected Wire in TCL

$
0
0

I am writing a TCL script for Capture, and part of the functionality, is that I must be able to set a property on the FlatNet of a Wire selected by the user. I thought that simply setting the property on the Net of the Wire, would be sufficient, but apparently that is not the case. While I am able to set the property, and have it reflected in the FlatNet, there is a twist. Follow these steps:

  1. Open any demo project that has a hierarchy
  2. Source in the script
  3. Select a Wire at the top level
  4. Execute the command ::nsTest::setMyProperty "Top Value"
  5. Observe that the property "MySpecialProperty" has been added, and this is reflected in both the Schematic Nets and the Flat Nets tabs
  6. Descend the hierarchy and select a wire connected to the same FlatNet.
  7. Execute the command ::nsTest::setMyProperty "Bot Value"
  8. Observe that the property "MySpecialProperty" has been changed in the Schematic Nets tab, but the original value ("Top Value") is still present in the Flat Nets tabs.
  9. Ascend the hierarchy and find the first Wire again. Select it.
  10. Execute the command ::nsTest::setMyProperty "My New Top Value"
  11. Observe that the property "MySpecialProperty" has changed, and this is reflected in both the Schematic Nets and the Flat Nets tabs this time

It seems to me that I am not operating on the correct DboObject, in my code. What DboObject should I operate on in order to always get the property reflected in the Flat Net? How do I get to this DboObject from a selected Wire (Wire, Wire_Scalar, Wire_Bus or Wire_Bundle)?

The example script:

# source {C:/Temp/setMyWireProperty.tcl}
# ::nsTest::setMyProperty "Your value goes here"

namespace eval ::nsTest {
}

proc ::nsTest::setMyProperty { pValue } {
set lSelObjs1 [GetSelectedObjects]
set lStatus [DboState]
set lPrpName [DboTclHelper_sMakeCString "MySpecialProperty"]
set lPropValueCStr [DboTclHelper_sMakeCString $pValue]
set gWireTypes [list $::DboBaseObject_WIRE $::DboBaseObject_WIRE_SCALAR $::DboBaseObject_WIRE_BUS $::DboBaseObject_WIRE_BUNDLE]
for {set i 0} {$i<[llength $lSelObjs1]} {incr i} {
set lObj [lindex $lSelObjs1 $i]
set lObjType [DboBaseObject_GetObjectType $lObj]
# Make sure we're dealing with a Wire
if { [lsearch -exact $gWireTypes $lObjType] >= 0 } {
set lNet [$lObj GetNet $lStatus]
set lStatus [$lNet SetEffectivePropStringValue $lPrpName $lPropValueCStr]
}
}
}

Cleaning up excessive RATS

$
0
0

I'm using Orcad Layout 16.2. Most of my boards are not overly complicated and I try to limit them to two layers.

I've started a new iteration of a board I've been working on for awhile. I always fill in empty space with as much ground fill as I can. This also takes care of any additional, unrouted, ground vias I've added. This time when I deleted the fills I have gazillion ground RATS cluttering the board . I can't route them all and in order to route the other stuff I have to change the color of the ground RATS to black to hide them. Is there a way to clean these up so it looks more like a new, unrouted board? Thanks.

Unable to open 'netout.rpt' file

$
0
0

Hi everybody,

I have a problem. After I import my netlist from OrCAD tool to Allegro tool and it's OK, not DRC ERROR but I can not open (.rpt) file when I choose File => Export => Netlist w/Properties...

Section (Window Command) display that: 

//////////////////////////////////////////////////////////

E - Unable tp open "netout.rpt" file. //

E - Finish current command first.    //

Command >                                    //

/////////////////////////////////////////////////////////

Hope everybody help me.

Thanks so much!

Some of the mapped step files are not visible on 3D Viewer

$
0
0

Hello,

I Am using 17.2 .When i map some step files, few of the mapped components are getting shown on the 3d viewer canvas but some are not getting displayed.

For example FMC connector ASP 134486-01 is not getting dispalyed after correctly mapping.

Need Help in this issue.

Thank you in Advance

Cadence HDL project manager issue

$
0
0

HDL Software version :Cadence 17.2

Windows 10 profession

The manual bar in project cpm is not smart enough. When the "file" or "tool" bar was selected, it took long time to response the action. As shown in the picture:highlighted with blue circle.

The others response very quickly. Only the "file" and "tool" bar response very slow. More than 10 seconds delay.


Dynamic thermal pin properties in V17.2 S031

$
0
0

I am not able to modify the DYN__THERMAL_CON_TYPE on pins but I either get no field to fill in

or I get a field with no drop down to select the type required:

Is this normal in V17.2 ?

Notch and Slide options in Edit Shape Operation

$
0
0

Hi,

I am using OrCAD PCB Designer Professional 17.2 with hotfix(050). If I want to edit the board outline using Shape Select to add a notch, there is no option available to do that. In the previous hotfix version I could easily add notch and slide only a small part of a line segment. There is no option available in the latest hotfix when I go to shape select and pick the board outline. 

Kindly help me on this issue.

PCB PDF Generation

$
0
0

Hello All, I want know when(in which hotfix) did pdf export in PCB was made a paid version again. and when can we expect pdf export because its very necessary feature

jishu

How to set the Project manager and does the PCB viewer use a PCB Studio licence?

$
0
0

How to set the Project manager to only allow the PCB viewer for Electronic Engineers to open from the Project manager. And does the PCB viewer use a PCB Studio licence?

Cannot create Xnet,In the model assignment dialog the Auto setup button is disappeared .

$
0
0

When I wanted to create XNET, I found that the auto setup button of the model assignment dialog disappeared. Even if you manually assign a model, you can't create XNET in the constraint manager. I use database check and update DRC is also useless.In other file ,then button appeared and enable to creat XNET .
Is there a switch to start XNET? Why is autosetup gone?
What should I do? Thank you

Viewing all 5525 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>