@extends('layouts.app') @section('title', 'System Sizer II - ' . $system->name) @section('content')
← Back to Systems

{{ $system->name }}

{{ $system->system_id }} | {{ str_replace('_', ' ', ucfirst($system->type)) }}

{{ $system->description }}

{{-- Tank & Media --}}

Tank & Media

Tank 1:
{{ $system->tank_1_size ?: 'N/A' }}
@if($system->tank_2_size)
Tank 2:
{{ $system->tank_2_size }}
@endif
Media Type:
{{ $system->media_type }}
Regeneration:
{{ $system->regeneration_type }}
{{-- Flow Rates --}}

Flow Rates

Service Flow (15 psi):
{{ $system->flow_rate_15psi_gpm }} GPM
@if($system->flow_rate_25psi_gpm > 0)
Service Flow (25 psi):
{{ $system->flow_rate_25psi_gpm }} GPM
@endif
Backwash Flow:
{{ $system->backwash_flow_rate_gpm }} GPM
{{-- Contaminant Capacities --}}

Capacities

@if($system->hardness_grains > 0)
Hardness Capacity:
{{ number_format($system->hardness_grains, 0) }} grains
@endif @if($system->iron_grains > 0)
Iron Capacity:
{{ number_format($system->iron_grains, 0) }} grains
@endif @if($system->tannin_grains > 0)
Tannin Capacity:
{{ number_format($system->tannin_grains, 0) }} grains
@endif @if($system->chlorine_lbs > 0)
Chlorine Capacity:
{{ $system->chlorine_lbs }} lbs
@endif
Salt per Regen:
{{ $system->salt_per_regeneration_lbs }} lbs
Water per Regen:
{{ $system->water_per_regeneration_gal }} gal
{{-- Max Levels --}}

Maximum Contaminant Levels

Max Hardness:
{{ $system->max_hardness_gpg }} gpg
@if($system->max_iron_ppm > 0)
Max Iron:
{{ $system->max_iron_ppm }} ppm
@endif @if($system->max_tannin_ppm > 0)
Max Tannin:
{{ $system->max_tannin_ppm }} ppm
@endif
{{-- Treatment Capabilities --}}

Treatment Capabilities

@php $treats = [ 'hardness' => 'Hardness', 'chlorine' => 'Chlorine', 'iron' => 'Iron', 'manganese' => 'Manganese', 'tannin' => 'Tannin', 'arsenic' => 'Arsenic', 'pfoas' => 'PFOAs', 'glyphosate' => 'Glyphosate', 'chromium_vi' => 'Chromium-VI', 'ammonia' => 'Ammonia', 'tds' => 'TDS', 'ph' => 'pH', ]; @endphp @foreach($treats as $key => $label)
@if($system->canTreat($key)) @else @endif {{ $label }}
@endforeach
{{-- Valve Programming --}}

Valve Programming ({{ $system->valve_type }})

Backwash
{{ $system->backwash_min }} min
Brine Draw / Slow Rinse
{{ $system->brine_draw_slow_rinse_min }} min
Rapid Rinse
{{ $system->rapid_rinse_min }} min
Brine Fill
{{ $system->brine_fill_min }} min
Injector
{{ $system->injector_color }} ({{ $system->injector_gpm }} GPM)
Brine Tank
{{ $system->brine_tank_size }}
Safety Brining
Setting {{ $system->safety_briming_setting }}
Regen Time
{{ $system->regen_time }}
@if($system->valve_notes)

{{ $system->valve_notes }}

@endif
@endsection