Sha256: 756645fe8af60f364296e3bee1e87abc06795d8137c54723a7a64c69427d5655

Contents?: true

Size: 1.16 KB

Versions: 10

Compression:

Stored size: 1.16 KB

Contents

# frozen_string_literal: true

require_dependency "renalware/pd"
require_relative "./glucose_calculator"

module Renalware
  module PD
    module APD
      class RegimeCalculations < SimpleDelegator
        INCALCULABLE = nil

        def calculated_overnight_volume
          raise NotImplementedAError
        end

        #  The total volume of all bags for a day when they have PD.
        def calculated_daily_volume
          vol = [
            calculated_overnight_volume,
            effective_last_fill_volume,
            effective_additional_manual_exchange_volume
          ].compact.sum
          vol == 0 ? nil : vol
        end

        def volume_of_glucose_at_strength(strength)
          raise "Overnight volume must be calculated first" if overnight_volume.blank?

          GlucoseCalculator.new(regime: self, strength: strength).glucose_content
        end

        private

        def effective_last_fill_volume
          has_last_fill_bag? ? last_fill_volume : 0
        end

        def effective_additional_manual_exchange_volume
          has_additional_manual_exchange_bag? ? additional_manual_exchange_volume : 0
        end
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
renalware-core-2.1.1 app/models/renalware/pd/apd/regime_calculations.rb
renalware-core-2.1.0 app/models/renalware/pd/apd/regime_calculations.rb
renalware-core-2.0.167 app/models/renalware/pd/apd/regime_calculations.rb
renalware-core-2.0.166 app/models/renalware/pd/apd/regime_calculations.rb
renalware-core-2.0.165 app/models/renalware/pd/apd/regime_calculations.rb
renalware-core-2.0.164 app/models/renalware/pd/apd/regime_calculations.rb
renalware-core-2.0.163 app/models/renalware/pd/apd/regime_calculations.rb
renalware-core-2.0.162 app/models/renalware/pd/apd/regime_calculations.rb
renalware-core-2.0.161 app/models/renalware/pd/apd/regime_calculations.rb
renalware-core-2.0.160 app/models/renalware/pd/apd/regime_calculations.rb