4

How do I measure voltage between two nodes when neither of them is ground? In the schematic below, I want to measure the voltage between nodes Vmic and Vx. Is it just (Vmic-Vx)? I'm afraid that gives a wrong answer.

enter image description here

JRE
  • 71,321
  • 10
  • 107
  • 188
blackblade
  • 488
  • 2
  • 10
  • related, possibly a duplicate: https://electronics.stackexchange.com/questions/204096/how-to-plot-voltage-drop-across-a-specific-component-in-ltspice/204097#204097 – PlasmaHH Jan 29 '23 at 20:31

3 Answers3

7

In addition to the other answers, in LTspice you can identify in any command the voltage across two nodes with the syntax

V(node1,node2)

which in your case becomes

V(Vmic,Vx)
Massimo Ortolano
  • 835
  • 9
  • 16
5

Use a differential voltage probe.

Click on the first node, and drag to the second node.

Neil_UK
  • 166,079
  • 3
  • 185
  • 408
4

You can use .meas Vmicpk MAX(V(Vmic)-V(Vx))*1000

Is it just (Vmic-Vx)?

Vmic and Vx are node names and not voltages.

The voltages associated with each node are V(Vmic) and V(Vx)

The difference voltage between the two nodes is V(Vmic)-V(Vx)

Then multiply by 1000 if that's what you want.

Andy aka
  • 456,226
  • 28
  • 367
  • 807