Community
EAGLE - Deutsch
Das Forum für Diskussionen und alle Fragen rund um Autodesk EAGLE
abbrechen
Suchergebnisse werden angezeigt für 
Anzeigen  nur  | Stattdessen suchen nach 
Meintest du: 

TIPP: automatisches Anordnen der Bauteile

1 ANTWORT 1
GELÖST
Antworten
Nachricht 1 von 2
StefanMetz
1887 Aufrufe, 1 Antwort

TIPP: automatisches Anordnen der Bauteile

Hi@all,

 

Ich habe da ein ULP gefunden, das da hilfreich sein kann:

autoplace_v3.ulp Das wird in der Schematik aufgerufen und platziert die Bauteile nach der Anordnung in der Schematik und rechts im Board. Hier ein Beispiel:

autoplace2.jpg nach autoplace und ratsnest

/* Simple autoplace ulp based upon component position in schematic
* this ULp was origianlly written by one of the CADSOFT team I believe
* apologies for lack of full reference and acknoledgement
* run the ULP in the sch window and run place.scr in BRD
* changing the scale parameter will produce tighter/looser grouping
* Ideally stick in a pop-up window to select scale and x/y offset at some time
*/
string c,cmd;
real scale = 0.50;
int HasPins,
    IsSupplySymbol,
    Px, Py, xoffset, yoffset,
    ix,                    
    GridDist = 50,
    ShOffset = 0,            
    y_ShOffset = 3000,
    x_ShOffset = 1500;

                   output("place.scr") {
			
                    if (schematic) schematic(SCH) {
			cmd+= "board; \n";
                       sprintf(c, "Grid mil 50;\n");
			cmd+= c;
                       SCH.sheets(S) {
                         S.parts(P) {
                           ix = 0;
                           P.instances(I) {
                             if (ix==0) {
                                Px = round(scale*(u2mil(I.x)) / GridDist) * GridDist;
                                Py = round(scale*(u2mil(I.y)) / GridDist) * GridDist;
                                } 
                             HasPins = 0;
                             IsSupplySymbol = 0;
                             I.gate.symbol.pins(PIN) { 
                               if ((PIN.direction == PIN_DIRECTION_SUP)) 
                                  IsSupplySymbol = 1;
                               HasPins = 1;
                               }
                             ix++;
                             }
                           if (HasPins && !IsSupplySymbol) {
				xoffset = x_ShOffset*trunc(0.5*(S.number-1));
				yoffset = y_ShOffset*2*frac(0.5*(S.number-1));
                              sprintf(c, "Move %s (%d %d);\n", P.name, Px+xoffset, Py+yoffset);                           
				cmd+= c;
                              }
                           } // end parts
                         }   // end sheets 
    			printf("GRID LAST;\n");
    			printf("RATSNEST;\n");
    	              }

                    }
exit(cmd);

 Ich habe eine Menge an ULPs in den Jahren angesammelt. Einige sind ganz hilfreich.

 

LG Stefan

11=3
1 ANTWORT 1
Nachricht 2 von 2
Anonymous
als Antwort auf: StefanMetz

Hallo,
für ein erstes Sortieren der Bauteile ist die ulp ausreichend.
Danke!

Sie finden nicht, was Sie suchen? Fragen Sie die Community oder teilen Sie Ihr Wissen mit anderen.

In Foren veröffentlichen  

Autodesk Design & Make Report