| First notes on using ngspice | |
| [en] Electronics | spice, tools, c2, jan 5, 2013 |
Some notes on how I got (ng)spice to work.
ngspice ("hello world!")
Save the following to a file. "hello.net" .
ngspice hello world v1 1 0 0 $ <-- Voltage source r1 1 0 5 $ <-- 5 ohm resistor .dc v1 24 24 1 <-- set v1 to 24 volts. .print dc v(1,0) i(v1) <-- show voltage between 1 and 0; and current through v1. * .tran 1u 100u $ <-- uncomment for power dissipation * .meas tran iv1 avg i(v1) $ <-- power dissipation over v1 .end
and run it:
$ ngspice < hello.net
-- Read more --
| Problemas con SVK | |
| [es] Scribbles | software, svk, tools, feb 23, 2008 |
Cuando hacia una "svk sync -a" de mis repositorios, el error que generaba uno era:
"Bad URL passed to RA layer: Malformed URL for repository"
La solucion estaba indicado aca: http://www.rufuspollock.org/archives/229 o mas especĂficamente acá: http://lists.bestpractical.com/pipermail/svk-devel/2007-October/001065.html
Tuvo que modificar el archivo: /usr/share/perl5/SVN/Mirror/Ra.pm en mi equipo Ubuntu. Ahi siguio funcionando correctamente.
