1. 주택용 고압 전기 요금 : 참조URL
  2. 위 그림의 빨간 사각형을 클릭하여 엑셀파일 참조
  3. 프로그램 1 : 기타계절에 대한 전기 요금 계산
    1. 입력 : 전기사용량(kwh)
    2. 처리 :
      1. 기본요금(base_rate)
      2. 전력량 요금(used_rate; 원/kWh)
      3. 전기요금(rate) = 기본요금(base_rate) + 전력량요금(used_rate)
    3. 출력 : 전기요금(rate)
    4. 예) 입력으로 kwh에 580을 입력받으면
      1. 기본요금(base_rate)                        :   6,060
      2. 전력량 요금(used_rate; 원/kWh)  : 81,028
      3. 전기요금(rate)                                   : 87,088
  4. 프로그램 2 : 월에 따른 전기 요금 계산
    1. 입력 : 월(month), 전기사용량(kwh)
    2. 처리 :
      1. 기본요금(base_rate)
      2. 전력량 요금(used_rate; 원/kWh)
      3. 전기요금(rate) = 기본요금(base_rate) + 전력량요금(used_rate)
    3. 출력 : 전기요금(rate)
    4. 예) 입력으로 month=6,  kwh=580을 입력 받으면
      1. 기본요금(base_rate)                        :   6,060
      2. 전력량 요금(used_rate; 원/kWh)  : 81,028
      3. 전기요금(rate)                                   : 87,088
    5. 예) 입력으로 month=7,  kwh=580을 입력 받으면
      1. 기본요금(base_rate)                        :   6,060
      2. 전력량 요금(used_rate; 원/kWh)  : 70,713
      3. 전기요금(rate)                                   : 76,773
    6. 예) 입력으로 month=7,  kwh=280을 입력 받으면
      1. 기본요금(base_rate)                        :      730
      2. 전력량 요금(used_rate; 원/kWh)  : 20,524
      3. 전기요금(rate)                                   : 21,254
  5. 프로그램3 : 기후환경요금, 연료비조정요금, 부가가치세, 전력기반기금 등을 포함한 실제 요금 계산
    1. 입력 : 월(month), 전기사용량(kwh), 기후환경(weather), 연료비조정(adjust)
    2. 전기요금 청구액 계산방법

    3. 처리 : 자세한 내용은 맨 위의 [참조 URL] 내용 참조
      1. 기본요금(base_rate)
      2. 전력량 요금(used_rate; 원/kWh)
      3. 기후환경요금(weather_rate)
      4. 연료비조정요금(adjust_rate)
      5. 전기요금(rate) = 기본요금(base_rate) + 전력량요금(used_rate) + 기후환경요금(weather_rate) + 연료비조정요금(adjust_rate)
      6. 청구금액(bill) = 전기요금(rate) + 부가세(tax) + 기반기금(fund)
    4. 출력 : 청구금액(bill)
    5. 예) 입력으로 month=6,  kwh=580, weather=5.3, adjust=-3을 입력 받으면
      1. 기본요금(base_rate)                        :   6,060
      2. 전력량 요금(used_rate; 원/kWh)  : 81,028
      3. 기후환경요금(weather_rate)         :   3,074
      4. 연료비조정요금(adjust_rate)        : -1,740
      5. 전기요금(rate)                                   : 88,422
      6. 부가세(tax)                                        :   8,842
      7. 기반기금(fund)                                 :   3,270
      8. 청구금액(bill)                                    : 100,530
error: Content is protected !!