{{$t(scenarios.rainReduction.description)}} ({{ $t('modalScenarios.initialValue') }}: {{ Number(pptMean.annual || 0).toFixed(0) }} mm).
{{ $t(scenarios.temperatureIncrease.description) }} ({{ $t('modalScenarios.initialValue') }}: {{ Number(tmitMean.annual || 0).toFixed(0) }} {{ scenarios.temperatureIncrease.units }}).
{{ $t(scenarios.urbanDemand.description) }} ({{ $t('modalScenarios.initialValue') }}: {{ Number(urbanDemandMean || 0).toFixed(0) }} Hm³ anuals).
{{ $t(scenarios.agriDemand.description) }} ({{ $t('modalScenarios.initialValue') }}: {{ Number(agriDemandMean || 0).toFixed(0) }} {{ $t('modalScenarios.hm3Annual') }}).
{{ $t(scenarios.forestSurface.description) }} ({{ $t('modalScenarios.initialValue') }}: {{ Number(forestSurface || 0).toFixed(0) }} km²).
| {{ $t('year') }} | {{ $t('month') }} | {{ $t('modalInfo.flow') }} (m³/s) | {{ $t('modalInfo.envFlow') }} (m³/s) | {{ $t('modalInfo.proportion')}} (%) |
|---|---|---|---|---|
| {{ Math.floor((k - 1) / 12) + 1 }} | {{ $t(baseMonths[monthOfStep(k)-1].label) }} | {{ Number(selectedEle['flow'+k]).toFixed(2) }} | {{ Number(selectedEle['envFlow'+monthOfStep(k)]).toFixed(2) }} | {{ selectedEle['envFlow'+monthOfStep(k)] > 0 && selectedEle['envFlow'+monthOfStep(k)] > selectedEle['flow'+k] ? Number(selectedEle['flow'+k] / selectedEle['envFlow'+monthOfStep(k)] * 100).toFixed(2) : '-'}} |
| {{ $t('year') }} | {{ $t('month') }} | {{ $t('modalInfo.inflow') }} (m³/s) | {{ $t('modalInfo.contributedFlow') }} (m³/s) | {{ $t('modalInfo.outflow') }} (m³/s) | {{ $t('modalInfo.drainageArea') }} (km²) | {{ $t('modalInfo.meanPrecipitation') }} (mm) | {{ $t('modalInfo.meanTemperature') }} (ºC) | {{ $t('modalInfo.meanETP') }} (mm) | {{ $t('modalInfo.meanET') }} (mm) |
|---|---|---|---|---|---|---|---|---|---|
| {{ Math.floor((k - 1) / 12) + 1 }} | {{ $t(baseMonths[monthOfStep(k)-1].label) }} | {{ Number(selectedEle['inflow'+k]).toFixed(2) }} | {{ Number(selectedEle['m'+monthOfStep(k)]).toFixed(2) }} | {{ Number(Number(selectedEle['m'+monthOfStep(k)] || 0) === 0 ? selectedEle['inflow'+k] : selectedEle['outflow'+k]).toFixed(2) }} | {{ Number(upstream.areaKm2).toFixed(0) }} | {{ Number(upstream.ppt[monthOfStep(k)-1]).toFixed(0) }} | {{ Number(upstream.tmit[monthOfStep(k)-1]).toFixed(0) }} | {{ Number(upstream.etp[monthOfStep(k)-1]).toFixed(0) }} | {{ Number(upstream.et[monthOfStep(k)-1]).toFixed(0) }} |
| {{ $t('year') }} | {{ $t('month') }} | {{ $t('modalInfo.storedVolume') }} (Hm³) | {{ $t('modalInfo.inflowFlow') }} (m³/s) | {{ $t('modalInfo.releasedFlow') }} (m³/s) | {{ $t('modalInfo.inflowVolume') }} (Hm³) | {{ $t('modalInfo.releasedVolume') }} (Hm³) |
|---|---|---|---|---|---|---|
| {{ Math.floor((k - 1) / 12) + 1 }} | {{ $t(baseMonths[monthOfStep(k)-1].label) }} | {{ Number(reservoir.storage_hm3[k] ?? 0).toFixed(0) }} | {{ Number(reservoir.inflowSum_m3s[k] ?? 0).toFixed(0) }} | {{ Number(reservoir.released_m3s[k] ?? 0).toFixed(0) }} | {{ Number(reservoir.inflowVol_hm3[k] ?? 0).toFixed(0) }} | {{ Number(reservoir.releasedVol_hm3[k] ?? 0).toFixed(0) }} |
| {{ $t('year') }} | {{ $t('month') }} | {{ $t('modalInfo.inflowFlow') }} (m³/s) | {{ selectedEle.m0 > 0 ? $t('modalInfo.contributedFlow') : $t('modalInfo.outgoingFlow') }} ({{ fmt(selectedEle.m0, 'object').u }}) | {{ $t('modalInfo.proportion') }} (%) |
|---|---|---|---|---|
| {{ Math.floor((k - 1) / 12) + 1 }} | {{ $t(baseMonths[monthOfStep(k)-1].label) }} | {{ Number(selectedEle['inflow'+k]).toFixed(1) }} | {{ fmtConstant(selectedEle['m'+monthOfStep(k)], selectedEle.m0) }} | {{ safeRatio(selectedEle['m'+monthOfStep(k)], selectedEle['inflow'+k]) }} |