I exchanged the transformer in Example Model for 87T Transformer Differential Protection Relay for a 2-Winding 3-Phase Saturable Transformer with Tap Changer
Here is an explanation of what the V_1 and V_2 sensors do and how to resolve the ScopeView error:
What are the V_1 and V_2 Sensors?
In the 2-Winding 3-Phase Saturable Transformer with Tap Changer block:
V_1: Measures the instantaneous terminal voltages of Winding 1 (Primary) across phases A, B, and C.
V_2: Measures the instantaneous terminal voltages of Winding 2 (Secondary) across phases A, B, and C.
Because this is a 3-phase component, enabling V_1 and V_2 generates three separate phase signals for each winding (Phases A, B, and C) in the solver rather than a single scalar value.
Why ScopeView shows Error: Cannot find signal XFMR1.V_1
This error typically happens for two main reasons:
Signal Name / Phase Vector Mismatch:
In ScopeView, signals for 3-phase components are mapped as individual phases (e.g., XFMR1.V_1_A, XFMR1.V_1_B, XFMR1.V_1_C or XFMR1.V_1[0..2]). If the plot references the top-level group tag XFMR1.V_1 directly (or an outdated reference from the original example template), ScopeView cannot resolve it during acquisition.
Model Code Generation & Compilation:
When you replace a transformer or enable new sensor checkboxes in the component mask, HYPERSIM must recompile the network code to generate the new signal map (.sin / dictionary file). If the simulation was started without a clean build, ScopeView looks for signal addresses that do not yet exist on the target memory.
Step-by-Step Resolution
Enable Sensors & Save:
Open the 2-Winding Saturable Transformer sensor form.
Check the boxes for V_1 and V_2 (and any other desired measurements like currents I_1, I_2 or flux).
Click Apply and OK, then save the schematic.
Rebuild the Model:
Stop the simulation if it is currently running.
Click Simulation > Generate Code / Rebuild (or start the simulation on localhost/target) so the new sensor signals are compiled.
Update ScopeView Signals:
Open ScopeView.
In the signal list / browser panel, click the Refresh / Reload Signals button to fetch the newly compiled signal dictionary.
Expand the XFMR1 signal tree. You will see the decomposed phase signals (e.g., XFMR1.V_1_A, XFMR1.V_1_B, XFMR1.V_1_C).
Drag the individual phase signals onto your ScopeView plot axes (replacing any orphaned XFMR1.V_1 tags).
Click Start Acquisition (or enable Sync / Trigger) to view the waveforms.
Tip: You can also connect standard Bus Voltage Probes / Sensors to the primary and secondary busbars adjacent to the transformer to monitor the line-to-ground or line-to-line voltages directly.