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
  • 67,678
  • 8
  • 104
  • 179
blackblade
  • 378
  • 1
  • 8
  • 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
  • 815
  • 9
  • 16
5

Use a differential voltage probe.

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

Neil_UK
  • 158,152
  • 3
  • 173
  • 387
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
  • 434,556
  • 28
  • 351
  • 777