; unit conversion from voltage
.func VtoNoUnit(y) y/1V; no unit
.func VtoI(y) y/1V*1A; Current (A)
.func VtoR(y) y/1A; Resistance (Ω)
.func VtoTime(y) y/1V*1s ;Time (seconds)
.func VtoFreq(y) y/1V/1s ;Frequency (Hz)
.func V2Charge(y) y/1V*1A*1s ;Charge (Coulombs)
.func V2Power(y) y*1A ;Power(W)
.func V2Energy(y) y*1A*1s ;Energy(J)
.func V2Temp(y) y/1V*1°C ;Temperature (°C)
.func V2Admittance(y) y/1V/1V*1A ;Admittance (Ʊ)
4 Likes
