2008-10-11 Stefan Jahn <stefan@lkcc.org>

* rectline.cpp (RectLine): Added 'Material' parameter.
This commit is contained in:
ela 2008-10-11 16:07:18 +00:00
parent a13e8a96b9
commit e0040e691f
3 changed files with 8 additions and 0 deletions

1
TODO
View File

@ -23,6 +23,7 @@ unfixed) have a look at the file BUGS.
(completed tasks are indented one tab)
- eye-diagram implementation
- editing long property lines, e.g. for EDD device
- what about S-parameter file references in library elements?
- Verilog-HDL editor based on VHDL editor

View File

@ -1,3 +1,7 @@
2008-10-11 Stefan Jahn <stefan@lkcc.org>
* rectline.cpp (RectLine): Added 'Material' parameter.
2008-10-09 Stefan Jahn <stefan@lkcc.org>
* photodiode.cpp (photodiode): Added new photodiode model. Thanks

View File

@ -62,6 +62,9 @@ RectLine::RectLine()
QObject::tr("specific resistance of conductor")));
Props.append(new Property("Temp", "26.85", false,
QObject::tr("simulation temperature in degree Celsius")));
Props.append(new Property("Material", "unspecified", false,
QObject::tr("material parameter for temperature model")+
" [unspecified, Copper, StainlessSteel, Gold]"));
}
RectLine::~RectLine()