flux.py 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. # greaseweazle/flux.py
  2. #
  3. # Written & released by Keir Fraser <keir.xen@gmail.com>
  4. #
  5. # This is free and unencumbered software released into the public domain.
  6. # See the file COPYING for more details, or visit <http://unlicense.org>.
  7. from greaseweazle import error
  8. class Flux:
  9. def __init__(self, index_list, flux_list, sample_freq):
  10. self.index_list = index_list
  11. self.list = flux_list
  12. self.sample_freq = sample_freq
  13. self.splice = 0
  14. def __str__(self):
  15. s = "\nFlux: %.2f MHz" % (self.sample_freq*1e-6)
  16. s += ("\n Total: %u samples, %.2fms\n"
  17. % (len(self.list), sum(self.list)*1000/self.sample_freq))
  18. rev = 0
  19. for t in self.index_list:
  20. s += " Revolution %u: %.2fms\n" % (rev, t*1000/self.sample_freq)
  21. rev += 1
  22. return s[:-1]
  23. def summary_string(self):
  24. return ("Raw Flux (%u flux in %.2fms)"
  25. % (len(self.list), sum(self.list)*1000/self.sample_freq))
  26. def flux_for_writeout(self):
  27. error.check(self.splice == 0,
  28. "Cannot write non-index-aligned raw flux")
  29. # Copy the first revolution only to a fresh flux list.
  30. flux_list = []
  31. to_index = remain = self.index_list[0]
  32. for f in self.list:
  33. if f > remain:
  34. break
  35. flux_list.append(f)
  36. remain -= f
  37. # Extend with "safe" 4us sample values, to avoid unformatted area
  38. # at end of track if drive motor is a little slow.
  39. four_us = max(self.sample_freq * 4e-6, 1)
  40. if remain > four_us:
  41. flux_list.append(remain)
  42. for i in range(round(to_index/(10*four_us))):
  43. flux_list.append(four_us)
  44. return WriteoutFlux(to_index, flux_list, self.sample_freq,
  45. terminate_at_index = True)
  46. def flux(self):
  47. return self
  48. def scale(self, factor):
  49. """Scale up all flux and index timings by specified factor."""
  50. self.sample_freq /= factor
  51. @property
  52. def mean_index_time(self):
  53. """Mean time between index pulses, in seconds (float)"""
  54. return sum(self.index_list) / (len(self.index_list) * self.sample_freq)
  55. class WriteoutFlux(Flux):
  56. def __init__(self, ticks_to_index, flux_list, sample_freq,
  57. terminate_at_index):
  58. super().__init__([ticks_to_index], flux_list, sample_freq)
  59. self.terminate_at_index = terminate_at_index
  60. def __str__(self):
  61. s = ("\nWriteoutFlux: %.2f MHz, %.2fms to index, %s\n"
  62. " Total: %u samples, %.2fms"
  63. % (self.sample_freq*1e-6,
  64. self.index_list[0]*1000/self.sample_freq,
  65. ("Write all", "Terminate at index")[self.terminate_at_index],
  66. len(self.list), sum(self.list)*1000/self.sample_freq))
  67. return s
  68. def flux_for_writeout(self):
  69. return self
  70. # Local variables:
  71. # python-indent: 4
  72. # End: