Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

【Challenge A/yoshifumi sawada】各プランの料金計算の実装 #308

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open

【Challenge A/yoshifumi sawada】各プランの料金計算の実装 #308

wants to merge 10 commits into from

Conversation

zenfumi
Copy link

@zenfumi zenfumi commented Mar 22, 2021

実装内容

  • アンペアと電力量の入力値から各プランごとの電気料金を出力するシミュレーションを実装致しました。
    • 小数点以下は、切捨て。

ポイント

  • 登場人物ごとにクラス・情報・役割を意識しました(誰が何をする)

    • Simulatorクラス →情報:料金プラン、計算対象データ 役割:料金プランの計算及び計算結果の表示
    • Planクラス→ 役割: プロバイダと料金プラン名の取得
    • Basic_chargeクラス→役割:基本料金計算に使用するデータの取得
    • Usage_chargeクラス→役割:電気量料金計算に使用するデータの取得
  • CSV にデータ関連を切り出す

    • 計算メソッド内での数字のベタ書きを避ける
    • データ保持の役割をSimulatorクラスから外す
    • CSVデータの変更に対応させる為
    • 可読性が良くなる(計算対象データが計算メソッド内にあると処理が増えるにつれ、処理が見づらくなる)
  • RSpec 実装(配列数と計算結果を対象とするテスト)

    • 20A,30A,40A を対象。配列が 3つとなる 30A の前後をテスト。
    • 120/121kwh,140/141kwh,300/301kwh,350/351kwh,600/601kwh を対象

今後、修正を考えている点

  • マジックナンバーを避ける(CSV データの変更に対応できるように)
  • 入力値のテスト
  • 基本料金、電気量料金をインスタンス変数としてPlanクラスで保持し、クラスの中身を変更しないようにする。
    • 現状、CSVデータに依存しておりプランが追加する度に追記しないといけない。
  • インポート処理をモジュールにまとめる。

チャレンジ課題Aに取り組ませて頂きました、澤田 善史と申します。
お忙しいところ恐縮ですが、ご確認頂けると幸いです。
リファクタリング(計算メソッドをまとめる)とプラン追加対応の為、2回目のpushをしております。
宜しくお願い致します。

@ghost
Copy link

ghost commented Mar 22, 2021

Sider detected 1 error and 2 warnings on analyzing the commit 65b34f6.

We recommend fixing them as possible by updating the dependencies, configuring the analysis tool, configuring sider.yml, turning off unused tools, and so on.

If you have problems or questions still, feel free to ask us via chat. 💬


You can turn off this notification if you don't want to receive it from now on.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant