On Mon, Jul 6, 2009 at 7:00 PM, <nacim_br...@agilent.com> wrote: > Dear Python gurus, > > If I'd like to set dielectric constant for the certain material, is it > possible to do such in Python environment? If yes, how to do or what syntax > can be used? > > Also, I'd like to get a simulation result, like voltage, is it possible to > get this value in Python environment? > > Please let me know, > nacim > > > -- > http://mail.python.org/mailman/listinfo/python-list >
The answers to your first and third questions are, "yes" and "yes". :] (Generally speaking if something can be done by a computer it can be done with python.) As for your second question check out the "magnitude" package: http://pypi.python.org/pypi/magnitude/ and http://juanreyero.com/magnitude/ (That second link also has links to three other packages that deal with units of measurement.) Ii has units for the SI measurements, including volts and coulombs, so you should be able to accomplish your goals with it. The tricky thing is, as far as I can tell from the wikipedia entry (http://en.wikipedia.org/wiki/Relative_static_permittivity), "dielectric constant" seems to be a dimensionless number, i.e. C/C... I could be totally daft though. HTH, ~Simon -- http://mail.python.org/mailman/listinfo/python-list