Transformer Overview
Rated Power
{{ round($data->kva) }} kVA
Primary Voltage
{{ round($data->primary_voltage) }} kV
Secondary Voltage
{{ round($data->voltage_phase_a) }},
{{ round($data->voltage_phase_b) }},
{{ round($data->voltage_phase_c) }} V
Load Level
@php
$ratedKVA = floatval($data->kva);
// Get the latest kVA from graph_data (assuming kva1, kva2, kva3 are columns)
$latestLog = $graph_data->first(); // Latest log entry
if($latestLog) {
// Sum of kva1, kva2, kva3 from the latest log
$currentKVA = floatval($latestLog->kva1 ?? 0) +
floatval($latestLog->kva2 ?? 0) +
floatval($latestLog->kva3 ?? 0);
} else {
$currentKVA = 0;
}
$loadLevel = ($ratedKVA > 0) ? ($currentKVA / $ratedKVA) * 100 : 0;
@endphp
{{ round($loadLevel) }} %
Current Load: {{ round($currentKVA) }} kVA
Voltage Readings
L1 (R)
{{ number_format($data->voltage_phase_a,0) ?? 0}}
V
Avg:
0.00 V
PF:
0.00
L2 (S)
{{ number_format($data->voltage_phase_b,0) ?? 0}}
V
Avg:
0.00 V
PF:
0.00
L3 (T)
{{ number_format($data->voltage_phase_c,0) ?? 0}}
V
Avg:
0.00 V
PF:
0.00
Current Readings
L1 (R)
{{ number_format($data->current_phase_a,0) ?? 0}}
A
Avg:
0.00 A
PF:
0.00
L2 (S)
{{ number_format($data->current_phase_b,0) ?? 0}}
A
Avg:
0.00 A
PF:
0.00
L3 (T)
{{ number_format($data->current_phase_c,0) ?? 0}}
A
Avg:
0.00 A
PF:
0.00
Neutral Current & Unbalance
Neutral Current
{{ round($data->neutral_current) }}
A
Losses:
0.00 W
Current Unbalance
{{ round($data->current_unbalance) }}
%
Status:
Normal
Max:
{{ round($maxCurrentUnbalanceLastWeek) }} %
Voltage Unbalance
{{ round($data->voltage_unbalance) }}
%
Status:
Normal
Max:
{{ round($maxVoltageUnbalanceLastWeek) }} %
Current Unbalance Alert
Normal
Current Unbalance
0.00%
Threshold: 10.00%
Duration
00:00
Alert after: 6 min
Phase Analysis
L1:
0.00A
L2:
0.00A
L3:
0.00A
Three-Phase Power Calculations
Total Active Power
{{ $data->total_active_power }} kW
Total Apparent Power
{{ $data->total_apparent_power }} kVA
Total Reactive Power
{{ $data->total_reactive_power }} kVAR
Overall Power Factor
{{ $data->power_factor }}
Energy (1h)
{{ $data->energy_1h }} kWh
Efficiency
{{ $data->efficiency }} %