Sha256: dde9ed71828397814a9ac21313a77db4bcf64451b9faf118e61901518244fb31

Contents?: true

Size: 995 Bytes

Versions: 9

Compression:

Stored size: 995 Bytes

Contents

require 'cohort_analysis'
ClothesMachineUse.class_eval do
  data_miner do
    process "Ensure ResidentialEnergyConsumptionSurveyResponse is populated" do
      ResidentialEnergyConsumptionSurveyResponse.run_data_miner!
    end
    
    process "Derive from ResidentialEnergyConsumptionSurveyResponse" do
      ::Earth::Utils.insert_ignore(
        :src => ResidentialEnergyConsumptionSurveyResponse,
        :dest => ClothesMachineUse,
        :cols => { :clothes_washer_use => :name }
      )
    end
    
    # sabshere 5/20/10 weird that this uses cohort
    process "precalculate annual energy use" do
      safe_find_each do |record|
        record.annual_energy_from_electricity_for_clothes_driers = ResidentialEnergyConsumptionSurveyResponse.cohort(:clothes_machine_use_id => record.name).weighted_average :annual_energy_from_electricity_for_clothes_driers
        record.annual_energy_from_electricity_for_clothes_driers_units = 'joules'
        record.save!
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
earth-1.2.1 lib/earth/residence/clothes_machine_use/data_miner.rb
earth-1.1.2 lib/earth/residence/clothes_machine_use/data_miner.rb
earth-1.1.1 lib/earth/residence/clothes_machine_use/data_miner.rb
earth-1.1.0 lib/earth/residence/clothes_machine_use/data_miner.rb
earth-1.0.3 lib/earth/residence/clothes_machine_use/data_miner.rb
earth-1.0.2 lib/earth/residence/clothes_machine_use/data_miner.rb
earth-1.0.1 lib/earth/residence/clothes_machine_use/data_miner.rb
earth-1.0.0 lib/earth/residence/clothes_machine_use/data_miner.rb
earth-0.12.4 lib/earth/residence/clothes_machine_use/data_miner.rb