1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-07-03 01:15:29 +03:00
eda-tools/b2/HIERARCHY
2012-04-28 11:46:42 -03:00

19 lines
345 B
Plaintext

/*
* Example hierarchy
*/
<comp> = R<C<L<D; // order doesn't really matter
<diode> = D<SCH<Z<TVS; // D < SCH may make sense, the rest doesn't
T=<comp> {
R: { R=#R TOL=%R FP=* };
C: { C=#F TOL=%C V=#V };
L: { L=#H TOL=%L I=#A };
D: { C=#F }
M=<diode> {
TVS: { Vac=#V Vdc=#V };
Z: { V=#V I=#A };
*: { Vf=#V Vr=#V I=#A };
};
}