Sha256: 0f248707464a9f73b3025262fc3831ff399fa59b1967b007559b91606548b085

Contents?: true

Size: 672 Bytes

Versions: 20

Compression:

Stored size: 672 Bytes

Contents

require_relative 'tempo_run'

module Runby
  module RunTypes
    # The "fast tempo" pace roughly equates to your half-marathon pace.
    #  It's a pace you could maintain for about an hour, if pressed.
    class FastTempoRun < TempoRun
      def description
        'Fast Tempo Run'
      end

      def explanation
        'The fast tempo run is an interval workout of 15-25 minutes per repetition. The pace roughly corresponds to that of your half-marathon race pace.'
      end

      def lookup_pace(five_k_time, distance_units = :km)
        fast = @fast_pace_calculator.calc(five_k_time, distance_units)
        PaceRange.new(fast, fast)
      end
    end
  end
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
runby_pace-0.6.143 lib/runby_pace/run_types/fast_tempo_run.rb
runby_pace-0.6.142 lib/runby_pace/run_types/fast_tempo_run.rb
runby_pace-0.6.141 lib/runby_pace/run_types/fast_tempo_run.rb
runby_pace-0.6.140 lib/runby_pace/run_types/fast_tempo_run.rb
runby_pace-0.6.139 lib/runby_pace/run_types/fast_tempo_run.rb
runby_pace-0.6.137 lib/runby_pace/run_types/fast_tempo_run.rb
runby_pace-0.6.136 lib/runby_pace/run_types/fast_tempo_run.rb
runby_pace-0.6.133 lib/runby_pace/run_types/fast_tempo_run.rb
runby_pace-0.6.132 lib/runby_pace/run_types/fast_tempo_run.rb
runby_pace-0.6.131 lib/runby_pace/run_types/fast_tempo_run.rb
runby_pace-0.6.130 lib/runby_pace/run_types/fast_tempo_run.rb
runby_pace-0.6.128 lib/runby_pace/run_types/fast_tempo_run.rb
runby_pace-0.6.127 lib/runby_pace/run_types/fast_tempo_run.rb
runby_pace-0.6.126 lib/runby_pace/run_types/fast_tempo_run.rb
runby_pace-0.6.125 lib/runby_pace/run_types/fast_tempo_run.rb
runby_pace-0.6.124 lib/runby_pace/run_types/fast_tempo_run.rb
runby_pace-0.6.123 lib/runby_pace/run_types/fast_tempo_run.rb
runby_pace-0.6.122 lib/runby_pace/run_types/fast_tempo_run.rb
runby_pace-0.6.121 lib/runby_pace/run_types/fast_tempo_run.rb
runby_pace-0.6.120 lib/runby_pace/run_types/fast_tempo_run.rb