Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Create a complete C program that includes all necessary functions in order to determine the electricity costs associated with a certain apartment building in each
Create a complete C program that includes all necessary functions in order to determine the electricity costs associated with a certain apartment building in each area. Each apartment's electricity consumption for the specified number of days is listed in a file named ElectricConpumption.txt. and the number of days related to each consume is contained in the file Days.txt (For instance, if the first line of ElectriicConsume.txt includes 157 and the first line of Days.txt contains 15, then 157 Kilowatts of energy were spent over a period of 15 days). The program's goal is to find out how much energy each apartment will cost based on how many kilowatts arc uscd and how much a kilowatt costs. The program's sccond objectivc is to calculate each apartment's electricity consumption in KW using the average consumption of all units. The program should usc different functions, such as follows: Function designed to determine each apartment's exact electricity costs before taxes depending on the cost per kilowatt. Function created to determine the exact fees after taxes by adding the tax value based on consumption valuc to the amount of consumption reported on ElectricConsumption.txt. Function designed to calculate the Approximate Electric consumption based on the total number of days and total electric consumed for all apartments. Function that indicates how the difference between exact and approximate data should be used to dcfinc the pcreentage of crror. A specific file called ExaciFeessBT.1xi must include the values of Exact Fees before tax, which represent the exact fees before tax for each apartment based on the calculation of electric consumption and of each KW and the price of KW for category of consumption. A specific file called ExaciFeesAT.Ixt must be created to write the values of exact fees after tax for each apartment, the value of each line in this file must specified for specific apartment based on the exact fees before tax plus the value of tax based on the consumption value. A particular file called ApproximateCons.txt will be used to store the values of approximate consumption based on the tutal days for each apartment (Each line in the file will be specified for a specific apartment). The approximation of consumption will be listed for each apartment based on the number of days used to calculate fees. The Value of Percentage Error for each apartment will be written to a specific file called ErrorPerc.txt. the percentage error can be calculated based on the equation below. Each line in this file must contain the percentage of error for each apartment based on the difference between exact consumption and approximate consumption. Imprtant Equations and constructions Exact Electric fees= No.Kw * Price for Kw+ Tax based on No.Kw. Price for the consuming between 0-50 Kw is 0.65Nicc per Kw and the Tax is 13.5% Price for consuming between 50-200Kw is 0.7Nis per Kw and the Tax is 14% Price for Consumption between 200- 400 KW is 0.8 Nis per KW and Tax is 14.8% Price for consuming more than 400 is 0.9Nis and the Tax is 16.5% Amount of Electric Consumed Per day = Total Number of electric consumed/ Total number of days. Approximate Consumption = Number of days * Amount of Electric Consumed per day: PercentageError= ABS(ExactConsumption ApproximateConsumption) ((ExactConsumption+AproximateConsumption)/2) * 100. Approximate Consumption per Day= Total Consumption for all apartments. Total Days. Sample Run for Assignment when I print everything needed on the screen as seen in the following screenshot You should be aware that this screen-printing process is only being done to ensure everything goes as planned; writing and reading every file is necessary.
Create a complete C program that includes all necessary functions in order to determine the electricity costs associated with a certain apartment building in each area. Each apartment's electricity consumption for the specified number of days is listed in a file named ElectricConpumption.txt. and the number of days related to each consume is contained in the file Days.txt (For instance, if the first line of ElectriicConsume.txt includes 157 and the first line of Days.txt contains 15, then 157 Kilowatts of energy were spent over a period of 15 days). The program's goal is to find out how much energy each apartment will cost based on how many kilowatts are used and how much a kilowatt costs. The program's second objective is to calculate each apartment's electricity consumption in KW using the average consumption of all units. The program should use different functions, such as follows: Function designed to determine each apartment's exact electricity costs before taxes depending on the cost per kilowatt. Function created to determine the exact fees after taxes by adding the tax value based on consumption value to the amount of consumption reported on ElectricConsumption.txt. Function designed to calculate the Approximate Electric consumption based on the total number of days and total electric consumed for all apartments. Function that indicates how the difference between exact and approximate data should be used to define the percentage of error. A specific file called ExactFeess BT.txt must include the values of Exact Fees before tax, which represent the exact fees before tax for each apartment based on the calculation of electric consumption and of each KW and the price of KW for category of consumption. A specific file called ExactFeesAT.txt must be created to write the values of exact fees after tax for each apartment, the value of each line in this file must specified for specific apartment based on the exact fees before tax plus the value of tax based on the consumption value. A particular file called ApproximateCons.txt will be used to store the values of approximate consumption based on the total days for each apartment (Each line in the file will be specified for a specific apartment). The approximation of consumption will be listed for each apartment based on the number of days used to calculate fees. The Value of Percentage Error for each apartment will be written to a specific file called ErrorPerc.txt, the percentage error can be calculated based on the equation below. Each line in this file must contain the percentage of error for each apartment based on the difference between exact consumption and approximate consumption. Imprtant Equations and constructions Exact Electric fees = No.Kw * Price for Kw+ Tax based on No.Kw. Price for the consuming between 050Kw is 0.65Nice per Kw and the Tax is 13.5% Price for consuming between 50200Kw is 0.7Nis per Kw and the Tax is 14% Price for Consumption between 200400KW is 0.8Nis per KW and Tax is 14.8% Price for consuming more than 400 is 0.9Nis and the Tax is 16.5% Amount of Electric Consumed Per day = Total Number of electric consumed / Total number of days. Approximate Consumption = Number of days Amount of Electric Consumed per day; PercentageError ABS(ExactConsumption - ApproximateConsumption) (( ExactConsumption+AproximateConsumption )/2)100. Approximate Consumption per Day= Total Consumption for all apartments. Total Days. Sample Run for Assignment when I print everything needed on the screen as seen in the following screenshot You should be aware that this screen-printing process is only being done to ensure everything goes as planned; writing and reading every file is necessary Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started