def initial(self): """ Initial part of the water demand module - environment """ if "use_environflow" in binding: self.var.use_environflow = returnBool('use_environflow') else: self.var.use_environflow = False if self.var.use_environflow: self.var.cut_ef_map = returnBool('cut_ef_map') else: self.var.cut_ef_map = False
def initial(self): """ Initial part of the water demand module - livestock """ self.var.livestockTime = 'monthly' if "livestockTimeMonthly" in binding: if returnBool('livestockTimeMonthly'): self.var.livestockTime = 'monthly' else: self.var.livestockTime = 'yearly' else: self.var.livestockTime = 'monthly' if "livestockvarname" in binding: self.var.livVar = cbinding("livestockvarname") else: self.var.livVar = "livestockDemand" if "uselivestock" in binding: self.var.uselivestock = returnBool('uselivestock') else: self.var.uselivestock = False
def initial(self): """ Initial part of the water demand module - industry """ if "industryTimeMonthly" in binding: if returnBool('industryTimeMonthly'): self.var.industryTime = 'monthly' else: self.var.industryTime = 'yearly' else: self.var.industryTime = 'monthly' if "industryWithdrawalvarname" in binding: self.var.indWithdrawalVar = cbinding("industryWithdrawalvarname") else: self.var.indWithdrawalVar = "industryGrossDemand" if "industryConsuptionvarname" in binding: self.var.indConsumptionVar = cbinding("industryConsuptionvarname") else: self.var.indConsumptionVar = "industryNettoDemand"
def initial(self): """ Initial part of the water demand module """ if "domesticTimeMonthly" in binding: if returnBool('domesticTimeMonthly'): self.var.domesticTime = 'monthly' else: self.var.domesticTime = 'yearly' else: self.var.domesticTime = 'monthly' if "domesticWithdrawalvarname" in binding: self.var.domWithdrawalVar = cbinding("domesticWithdrawalvarname") else: self.var.domWithdrawalVar = "domesticGrossDemand" if "domesticConsuptionvarname" in binding: self.var.domConsumptionVar = cbinding("domesticConsuptionvarname") else: self.var.domConsumptionVar = "domesticNettoDemand"