@php $total_co2 = $total_ch4 = $total_n2o = 0; @endphp @foreach ($emisiData as $data) @php $total_co2 += $data->emission_co2; $total_ch4 += $data->emission_ch4; $total_n2o += $data->emission_n2o; @endphp @endforeach
Energy Consumption CO2 CH4 N2O
Bahan Bakar A B C = A x B D E = C x D / 106 F G = C x F / 106 H I = C x H / 106
Consumption Conversion Factor Consumption CO2 Emission Factor CO2 Emissions CH4 Emission Factor CH4 Emissions N2O Emission Factor N2O Emissions
(Mass, Volume, or Energy Unit) TJ / Unit TJ kg CO2 / TJ Gg CO2 kg CH4 / TJ Gg CH4 kg N2O / TJ Gg N2O
{{ $data->activity->name }} {{ $isExport ? $data->value : getFormattedValue($data->value, 3) }} {{ $isExport ? $data->ef_cf : getFormattedValue($data->ef_cf) }} {{ $isExport ? $data->consumption_tj : getFormattedValue($data->consumption_tj, 2) }} {{ $isExport ? $data->ef_co2 : getFormattedValue($data->ef_co2) }} {{ $isExport ? $data->emission_co2 : getFormattedValue($data->emission_co2, 4) }} {{ $isExport ? $data->ef_ch4 : getFormattedValue($data->ef_ch4) }} {{ $isExport ? $data->emission_ch4 : getFormattedValue($data->emission_ch4, 4) }} {{ $isExport ? $data->ef_n2o : getFormattedValue($data->ef_n2o) }} {{ $isExport ? $data->emission_n2o : getFormattedValue($data->emission_n2o, 4) }}
Total {{ $isExport ? $total_co2 : getFormattedValue($total_co2, 4) }} {{ $isExport ? $total_ch4 : getFormattedValue($total_ch4, 4) }} {{ $isExport ? $total_n2o : getFormattedValue($total_n2o, 4) }}