| line | stmt | bran | cond | sub | pod | time | code | 
| 1 |  |  |  |  |  |  | # -*- Perl -*- | 
| 2 |  |  |  |  |  |  | # | 
| 3 |  |  |  |  |  |  | # slide rule virtualization for Perl | 
| 4 |  |  |  |  |  |  |  | 
| 5 |  |  |  |  |  |  | package Math::SlideRule; | 
| 6 |  |  |  |  |  |  |  | 
| 7 | 2 |  |  | 2 |  | 126851 | use 5.010000; | 
|  | 2 |  |  |  |  | 8 |  | 
| 8 |  |  |  |  |  |  |  | 
| 9 | 2 |  |  | 2 |  | 654 | use Moo; | 
|  | 2 |  |  |  |  | 12177 |  | 
|  | 2 |  |  |  |  | 9 |  | 
| 10 | 2 |  |  | 2 |  | 2421 | use namespace::clean; | 
|  | 2 |  |  |  |  | 12172 |  | 
|  | 2 |  |  |  |  | 13 |  | 
| 11 | 2 |  |  | 2 |  | 572 | use Scalar::Util qw/looks_like_number/; | 
|  | 2 |  |  |  |  | 5 |  | 
|  | 2 |  |  |  |  | 2888 |  | 
| 12 |  |  |  |  |  |  |  | 
| 13 |  |  |  |  |  |  | our $VERSION = '1.10'; | 
| 14 |  |  |  |  |  |  |  | 
| 15 |  |  |  |  |  |  | ######################################################################## | 
| 16 |  |  |  |  |  |  | # | 
| 17 |  |  |  |  |  |  | # ATTRIBUTES | 
| 18 |  |  |  |  |  |  |  | 
| 19 |  |  |  |  |  |  | # these are taken from common scale names on a slide rule; see code for | 
| 20 |  |  |  |  |  |  | # how they are populated | 
| 21 |  |  |  |  |  |  | has A => (is => 'lazy',); | 
| 22 |  |  |  |  |  |  | has C => (is => 'lazy',); | 
| 23 |  |  |  |  |  |  |  | 
| 24 | 1 |  |  | 1 |  | 14 | sub _build_A { $_[0]->_range_exp_weighted(1, 100) } | 
| 25 | 1 |  |  | 1 |  | 16 | sub _build_C { $_[0]->_range_exp_weighted(1, 10) } | 
| 26 |  |  |  |  |  |  |  | 
| 27 |  |  |  |  |  |  | # increased precision comes at the cost of additional memory use | 
| 28 |  |  |  |  |  |  | # | 
| 29 |  |  |  |  |  |  | # NOTE changing the precision after A, C and so forth have been | 
| 30 |  |  |  |  |  |  | # generated will do nothing to those values. instead, construct a new | 
| 31 |  |  |  |  |  |  | # object with a different precision set, if necessary | 
| 32 |  |  |  |  |  |  | has precision => (is => 'rw', default => sub { 10_000 }); | 
| 33 |  |  |  |  |  |  |  | 
| 34 |  |  |  |  |  |  | ######################################################################## | 
| 35 |  |  |  |  |  |  | # | 
| 36 |  |  |  |  |  |  | # METHODS | 
| 37 |  |  |  |  |  |  |  | 
| 38 |  |  |  |  |  |  | # builds two arrays, one of values (1, 2, 3...), another of distances | 
| 39 |  |  |  |  |  |  | # based on the log of those values. these arrays returned in a hash | 
| 40 |  |  |  |  |  |  | # reference. slide rule lookups obtain the index of a value, then use | 
| 41 |  |  |  |  |  |  | # that to find the distance of that value, then uses other distances | 
| 42 |  |  |  |  |  |  | # to figure out some new location, that a new value can be worked back | 
| 43 |  |  |  |  |  |  | # out from | 
| 44 |  |  |  |  |  |  | # | 
| 45 |  |  |  |  |  |  | # NOTE that these scales are not calibrated directly to one another | 
| 46 |  |  |  |  |  |  | # as they would be on a slide rule | 
| 47 |  |  |  |  |  |  | sub _range_exp_weighted { | 
| 48 | 2 |  |  | 2 |  | 5 | my ($self, $min, $max) = @_; | 
| 49 |  |  |  |  |  |  |  | 
| 50 | 2 |  |  |  |  | 16 | my @range = map log, $min, $max; | 
| 51 | 2 |  |  |  |  | 5 | my (@values, @distances); | 
| 52 |  |  |  |  |  |  |  | 
| 53 | 2 |  |  |  |  | 13 | my $slope = ($range[1] - $range[0]) / $self->precision; | 
| 54 |  |  |  |  |  |  |  | 
| 55 | 2 |  |  |  |  | 20 | for my $d (0 .. $self->precision) { | 
| 56 |  |  |  |  |  |  | # via slope equation; y = mx + b and m = (y2-y1)/(x2-x1) with | 
| 57 |  |  |  |  |  |  | # assumption that precision 0..$mp and @range[min,max] | 
| 58 | 20002 |  |  |  |  | 31041 | push @distances, $slope * $d + $range[0]; | 
| 59 | 20002 |  |  |  |  | 30374 | push @values,    exp $distances[-1]; | 
| 60 |  |  |  |  |  |  | } | 
| 61 |  |  |  |  |  |  |  | 
| 62 | 2 |  |  |  |  | 32 | return { value => \@values, dist => \@distances }; | 
| 63 |  |  |  |  |  |  | } | 
| 64 |  |  |  |  |  |  |  | 
| 65 |  |  |  |  |  |  | # binary search an array of values for a given value, returning index of | 
| 66 |  |  |  |  |  |  | # the closest match. used to lookup values and their corresponding | 
| 67 |  |  |  |  |  |  | # distances from the various A, C, etc. attribute tables. NOTE this | 
| 68 |  |  |  |  |  |  | # routine assumes that the given value has been normalized e.g. via | 
| 69 |  |  |  |  |  |  | # standard_form to lie somewhere on or between the minimum and maximum | 
| 70 |  |  |  |  |  |  | # values in the given array reference | 
| 71 |  |  |  |  |  |  | sub _rank { | 
| 72 | 87 |  |  | 87 |  | 879 | my ($self, $value, $ref) = @_; | 
| 73 |  |  |  |  |  |  |  | 
| 74 | 87 |  |  |  |  | 141 | my $lo = 0; | 
| 75 | 87 |  |  |  |  | 129 | my $hi = $#$ref; | 
| 76 |  |  |  |  |  |  |  | 
| 77 | 87 |  |  |  |  | 179 | while ($lo <= $hi) { | 
| 78 | 893 |  |  |  |  | 1352 | my $mid = int($lo + ($hi - $lo) / 2); | 
| 79 | 893 | 100 |  |  |  | 1673 | if ($ref->[$mid] > $value) { | 
|  |  | 100 |  |  |  |  |  | 
| 80 | 406 |  |  |  |  | 662 | $hi = $mid - 1; | 
| 81 |  |  |  |  |  |  | } elsif ($ref->[$mid] < $value) { | 
| 82 | 444 |  |  |  |  | 780 | $lo = $mid + 1; | 
| 83 |  |  |  |  |  |  | } else { | 
| 84 | 43 |  |  |  |  | 98 | return $mid; | 
| 85 |  |  |  |  |  |  | } | 
| 86 |  |  |  |  |  |  | } | 
| 87 |  |  |  |  |  |  |  | 
| 88 |  |  |  |  |  |  | # no exact match; return index of value closest to the numeral supplied | 
| 89 | 44 | 50 |  |  |  | 95 | if ($lo > $#$ref) { | 
| 90 | 0 |  |  |  |  | 0 | return $hi; | 
| 91 |  |  |  |  |  |  | } else { | 
| 92 | 44 | 100 |  |  |  | 99 | if (abs($ref->[$lo] - $value) >= abs($ref->[$hi] - $value)) { | 
| 93 | 24 |  |  |  |  | 62 | return $hi; | 
| 94 |  |  |  |  |  |  | } else { | 
| 95 | 20 |  |  |  |  | 53 | return $lo; | 
| 96 |  |  |  |  |  |  | } | 
| 97 |  |  |  |  |  |  | } | 
| 98 |  |  |  |  |  |  | } | 
| 99 |  |  |  |  |  |  |  | 
| 100 |  |  |  |  |  |  | # division is just multiplication done backwards on a slide rule, as the | 
| 101 |  |  |  |  |  |  | # same physical distances are involved. there are also "CF" and "CI" (C | 
| 102 |  |  |  |  |  |  | # scale, folded, or inverse) and so forth scales to assist with such | 
| 103 |  |  |  |  |  |  | # operations, though these mostly just help avoid excess motions on the | 
| 104 |  |  |  |  |  |  | # slide rule | 
| 105 |  |  |  |  |  |  | # | 
| 106 |  |  |  |  |  |  | # NOTE cannot just pass m*(1/n) to multiply() because that looses | 
| 107 |  |  |  |  |  |  | # precision: .82 for 75/92 while can get .815 on pocket slide rule | 
| 108 |  |  |  |  |  |  | sub divide { | 
| 109 | 4 |  |  | 4 | 1 | 467 | my $self = shift; | 
| 110 | 4 |  |  |  |  | 8 | my $n    = shift; | 
| 111 | 4 |  |  |  |  | 7 | my $i    = 0; | 
| 112 |  |  |  |  |  |  |  | 
| 113 | 4 | 50 |  |  |  | 15 | die "need at least two numbers\n"      if @_ < 1; | 
| 114 | 4 | 50 | 33 |  |  | 31 | die "argument index $i not a number\n" if !defined $n or !looks_like_number($n); | 
| 115 |  |  |  |  |  |  |  | 
| 116 | 4 |  |  |  |  | 17 | my ($n_coe, $n_exp, $neg_count) = $self->standard_form($n); | 
| 117 |  |  |  |  |  |  |  | 
| 118 | 4 |  |  |  |  | 84 | my $n_idx    = $self->_rank($n_coe, $self->C->{value}); | 
| 119 | 4 |  |  |  |  | 891 | my $distance = $self->C->{dist}[$n_idx]; | 
| 120 | 4 |  |  |  |  | 31 | my $exponent = $n_exp; | 
| 121 |  |  |  |  |  |  |  | 
| 122 | 4 |  |  |  |  | 10 | for my $m (@_) { | 
| 123 | 6 |  |  |  |  | 11 | $i++; | 
| 124 | 6 | 50 |  |  |  | 22 | die "argument index $i not a number\n" if !looks_like_number($m); | 
| 125 |  |  |  |  |  |  |  | 
| 126 | 6 | 50 |  |  |  | 13 | $neg_count++ if $m < 0; | 
| 127 |  |  |  |  |  |  |  | 
| 128 | 6 |  |  |  |  | 17 | my ($m_coe, $m_exp, undef) = $self->standard_form($m); | 
| 129 | 6 |  |  |  |  | 74 | my $m_idx = $self->_rank($m_coe, $self->C->{value}); | 
| 130 |  |  |  |  |  |  |  | 
| 131 | 6 |  |  |  |  | 63 | $distance -= $self->C->{dist}[$m_idx]; | 
| 132 | 6 |  |  |  |  | 29 | $exponent -= $m_exp; | 
| 133 |  |  |  |  |  |  |  | 
| 134 | 6 | 50 |  |  |  | 65 | if ($distance < $self->C->{dist}[0]) { | 
| 135 | 6 |  |  |  |  | 73 | $distance = $self->C->{dist}[-1] + $distance; | 
| 136 | 6 |  |  |  |  | 29 | $exponent--; | 
| 137 |  |  |  |  |  |  | } | 
| 138 |  |  |  |  |  |  | } | 
| 139 |  |  |  |  |  |  |  | 
| 140 | 4 |  |  |  |  | 37 | my $d_idx   = $self->_rank($distance, $self->C->{dist}); | 
| 141 | 4 |  |  |  |  | 39 | my $product = $self->C->{value}[$d_idx]; | 
| 142 |  |  |  |  |  |  |  | 
| 143 | 4 |  |  |  |  | 32 | $product *= 10**$exponent; | 
| 144 | 4 | 50 |  |  |  | 13 | $product *= -1 if $neg_count % 2 == 1; | 
| 145 |  |  |  |  |  |  |  | 
| 146 | 4 |  |  |  |  | 72 | return $product; | 
| 147 |  |  |  |  |  |  | } | 
| 148 |  |  |  |  |  |  |  | 
| 149 |  |  |  |  |  |  | sub multiply { | 
| 150 | 16 |  |  | 16 | 1 | 37 | my $self = shift; | 
| 151 | 16 |  |  |  |  | 26 | my $n    = shift; | 
| 152 | 16 |  |  |  |  | 22 | my $i    = 0; | 
| 153 |  |  |  |  |  |  |  | 
| 154 | 16 | 50 |  |  |  | 46 | die "need at least two numbers\n"      if @_ < 1; | 
| 155 | 16 | 50 | 33 |  |  | 86 | die "argument index $i not a number\n" if !defined $n or !looks_like_number($n); | 
| 156 |  |  |  |  |  |  |  | 
| 157 | 16 |  |  |  |  | 45 | my ($n_coe, $n_exp, $neg_count) = $self->standard_form($n); | 
| 158 |  |  |  |  |  |  |  | 
| 159 |  |  |  |  |  |  | # chain method has first lookup on D and then subsequent done by | 
| 160 |  |  |  |  |  |  | # moving C on slider and keeping tabs with the hairline, then reading | 
| 161 |  |  |  |  |  |  | # back on D for the final result. (plus incrementing the exponent | 
| 162 |  |  |  |  |  |  | # count when a reverse slide is necessary, for example for 3.4*4.1, as | 
| 163 |  |  |  |  |  |  | # that jumps to the next magnitude) | 
| 164 |  |  |  |  |  |  | # | 
| 165 |  |  |  |  |  |  | # one can also do the multiplication on the A and B scales, which is | 
| 166 |  |  |  |  |  |  | # handy if you then need to pull the square root off of D. but this | 
| 167 |  |  |  |  |  |  | # implementation ignores such alternatives | 
| 168 | 16 |  |  |  |  | 218 | my $n_idx    = $self->_rank($n_coe, $self->C->{value}); | 
| 169 | 16 |  |  |  |  | 160 | my $distance = $self->C->{dist}[$n_idx]; | 
| 170 | 16 |  |  |  |  | 73 | my $exponent = $n_exp; | 
| 171 |  |  |  |  |  |  |  | 
| 172 | 16 |  |  |  |  | 30 | for my $m (@_) { | 
| 173 | 24 |  |  |  |  | 49 | $i++; | 
| 174 | 24 | 50 |  |  |  | 60 | die "argument index $i not a number\n" if !looks_like_number($m); | 
| 175 |  |  |  |  |  |  |  | 
| 176 | 24 | 100 |  |  |  | 56 | $neg_count++ if $m < 0; | 
| 177 |  |  |  |  |  |  |  | 
| 178 | 24 |  |  |  |  | 43 | my ($m_coe, $m_exp, undef) = $self->standard_form($m); | 
| 179 | 24 |  |  |  |  | 235 | my $m_idx = $self->_rank($m_coe, $self->C->{value}); | 
| 180 |  |  |  |  |  |  |  | 
| 181 | 24 |  |  |  |  | 250 | $distance += $self->C->{dist}[$m_idx]; | 
| 182 | 24 |  |  |  |  | 102 | $exponent += $m_exp; | 
| 183 |  |  |  |  |  |  |  | 
| 184 |  |  |  |  |  |  | # order of magnitude change, adjust back to bounds (these are | 
| 185 |  |  |  |  |  |  | # notable on a slide rule by having to index from the opposite | 
| 186 |  |  |  |  |  |  | # direction than usual for the C and D scales (though one could | 
| 187 |  |  |  |  |  |  | # also obtain the value with the A and B or the CI and DI | 
| 188 |  |  |  |  |  |  | # scales, but those would then need some rule to track the | 
| 189 |  |  |  |  |  |  | # exponent change)) | 
| 190 | 24 | 100 |  |  |  | 209 | if ($distance > $self->C->{dist}[-1]) { | 
| 191 | 8 |  |  |  |  | 92 | $distance -= $self->C->{dist}[-1]; | 
| 192 | 8 |  |  |  |  | 37 | $exponent++; | 
| 193 |  |  |  |  |  |  | } | 
| 194 |  |  |  |  |  |  | } | 
| 195 |  |  |  |  |  |  |  | 
| 196 | 16 |  |  |  |  | 180 | my $d_idx   = $self->_rank($distance, $self->C->{dist}); | 
| 197 | 16 |  |  |  |  | 146 | my $product = $self->C->{value}[$d_idx]; | 
| 198 |  |  |  |  |  |  |  | 
| 199 | 16 |  |  |  |  | 80 | $product *= 10**$exponent; | 
| 200 | 16 | 100 |  |  |  | 45 | $product *= -1 if $neg_count % 2 == 1; | 
| 201 |  |  |  |  |  |  |  | 
| 202 | 16 |  |  |  |  | 201 | return $product; | 
| 203 |  |  |  |  |  |  | } | 
| 204 |  |  |  |  |  |  |  | 
| 205 |  |  |  |  |  |  | # relies on conversion from A to C scales (and that the distances in | 
| 206 |  |  |  |  |  |  | # said scales are linked to one another) | 
| 207 |  |  |  |  |  |  | sub sqrt { | 
| 208 | 6 |  |  | 6 | 1 | 14 | my ($self, $n) = @_; | 
| 209 | 6 | 50 | 33 |  |  | 40 | die "argument not a number\n" if !defined $n or !looks_like_number($n); | 
| 210 | 6 | 50 |  |  |  | 17 | die "Can't take sqrt of $n\n" if $n < 0; | 
| 211 |  |  |  |  |  |  |  | 
| 212 | 6 |  |  |  |  | 34 | my ($n_coe, $n_exp, undef) = $self->standard_form($n); | 
| 213 |  |  |  |  |  |  |  | 
| 214 | 6 | 100 |  |  |  | 20 | if ($n_exp % 2 == 1) { | 
| 215 | 3 |  |  |  |  | 8 | $n_coe *= 10; | 
| 216 | 3 |  |  |  |  | 4 | $n_exp--; | 
| 217 |  |  |  |  |  |  | } | 
| 218 |  |  |  |  |  |  |  | 
| 219 | 6 |  |  |  |  | 146 | my $n_idx = $self->_rank($n_coe, $self->A->{value}); | 
| 220 |  |  |  |  |  |  |  | 
| 221 |  |  |  |  |  |  | # NOTE division is due to A and C scale distances not being calibrated | 
| 222 |  |  |  |  |  |  | # directly with one another | 
| 223 | 6 |  |  |  |  | 158 | my $distance = $self->A->{dist}[$n_idx] / 2; | 
| 224 |  |  |  |  |  |  |  | 
| 225 | 6 |  |  |  |  | 143 | my $d_idx = $self->_rank($distance, $self->C->{dist}); | 
| 226 | 6 |  |  |  |  | 115 | my $sqrt  = $self->C->{value}[$d_idx]; | 
| 227 |  |  |  |  |  |  |  | 
| 228 | 6 |  |  |  |  | 49 | $sqrt *= 10**($n_exp / 2); | 
| 229 |  |  |  |  |  |  |  | 
| 230 | 6 |  |  |  |  | 65 | return $sqrt; | 
| 231 |  |  |  |  |  |  | } | 
| 232 |  |  |  |  |  |  |  | 
| 233 |  |  |  |  |  |  | # converts numbers to standard form (scientific notation) or otherwise | 
| 234 |  |  |  |  |  |  | # between a particular range of numbers (to support A/B "double | 
| 235 |  |  |  |  |  |  | # decade" scales) | 
| 236 |  |  |  |  |  |  | sub standard_form { | 
| 237 | 68 |  |  | 68 | 1 | 155 | my ($self, $val, $min, $max) = @_; | 
| 238 |  |  |  |  |  |  |  | 
| 239 | 68 |  | 50 |  |  | 256 | $min //= 1; | 
| 240 | 68 |  | 50 |  |  | 219 | $max //= 10; | 
| 241 |  |  |  |  |  |  |  | 
| 242 | 68 | 100 |  |  |  | 134 | my $is_neg = $val < 0 ? 1 : 0; | 
| 243 |  |  |  |  |  |  |  | 
| 244 | 68 |  |  |  |  | 93 | $val = abs $val; | 
| 245 | 68 |  |  |  |  | 92 | my $exp = 0; | 
| 246 |  |  |  |  |  |  |  | 
| 247 | 68 | 100 |  |  |  | 165 | if ($val < $min) { | 
|  |  | 100 |  |  |  |  |  | 
| 248 | 9 |  |  |  |  | 22 | while ($val < $min) { | 
| 249 | 17 |  |  |  |  | 52 | $val *= 10; | 
| 250 | 17 |  |  |  |  | 38 | $exp--; | 
| 251 |  |  |  |  |  |  | } | 
| 252 |  |  |  |  |  |  | } elsif ($val >= $max) { | 
| 253 | 39 |  |  |  |  | 82 | while ($val >= $max) { | 
| 254 | 53 |  |  |  |  | 80 | $val /= 10; | 
| 255 | 53 |  |  |  |  | 112 | $exp++; | 
| 256 |  |  |  |  |  |  | } | 
| 257 |  |  |  |  |  |  | } | 
| 258 |  |  |  |  |  |  |  | 
| 259 | 68 |  |  |  |  | 231 | return $val, $exp, $is_neg; | 
| 260 |  |  |  |  |  |  | } | 
| 261 |  |  |  |  |  |  |  | 
| 262 |  |  |  |  |  |  | 1; | 
| 263 |  |  |  |  |  |  | __END__ |