picadae calibration programs
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

plot_us_db_range.ipynb 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. {
  2. "cells": [
  3. {
  4. "cell_type": "code",
  5. "execution_count": 2,
  6. "metadata": {
  7. "scrolled": false
  8. },
  9. "outputs": [
  10. {
  11. "data": {
  12. "text/plain": [
  13. "<Figure size 1850x82950 with 79 Axes>"
  14. ]
  15. },
  16. "metadata": {},
  17. "output_type": "display_data"
  18. }
  19. ],
  20. "source": [
  21. "%load_ext autoreload\n",
  22. "%autoreload 2\n",
  23. "\n",
  24. "import numpy as np\n",
  25. "from common import parse_yaml_cfg\n",
  26. "import plot_seq_1\n",
  27. "\n",
  28. "inDir = \"/home/kevin/temp/p_ac_3h\"\n",
  29. "cfgFn = \"p_ac.yml\"\n",
  30. "pitchL = np.arange(48,60)\n",
  31. "pitchL = np.arange(36,60)\n",
  32. "pitchL = [40,41,42,43,44,45,46,47,48,49,50,51,52,60,61,62,63]\n",
  33. "pitchL = [23,24,25,26,27,28,29,30,31,32,33,34,35,36]\n",
  34. "pitchL = pitchL + [37,38,39,40,41,42,43,44,45,46,47,48,49,50,51]\n",
  35. "pitchL = pitchL + [52,53,54,55,56,57,58,59,60,61,62,63,64]\n",
  36. "pitchL = pitchL + [ 64,65,66,67,68,69,70,71,72]\n",
  37. "pitchL = pitchL + [ 73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89]\n",
  38. "pitchL = pitchL + [ 91,92,93,94,95,96,97,98,99,100,101]\n",
  39. "\n",
  40. "cfg = parse_yaml_cfg( cfgFn )\n",
  41. "\n",
  42. "plot_seq_1.plot_us_db_curves_main( inDir, cfg, pitchL, plotTakesFl=True )\n",
  43. "\n",
  44. "#plot_seq_1.plot_min_max_db( inDir, cfg, pitchL=pitchL )"
  45. ]
  46. },
  47. {
  48. "cell_type": "code",
  49. "execution_count": null,
  50. "metadata": {},
  51. "outputs": [],
  52. "source": []
  53. },
  54. {
  55. "cell_type": "code",
  56. "execution_count": null,
  57. "metadata": {},
  58. "outputs": [],
  59. "source": []
  60. }
  61. ],
  62. "metadata": {
  63. "kernelspec": {
  64. "display_name": "Python 3",
  65. "language": "python",
  66. "name": "python3"
  67. },
  68. "language_info": {
  69. "codemirror_mode": {
  70. "name": "ipython",
  71. "version": 3
  72. },
  73. "file_extension": ".py",
  74. "mimetype": "text/x-python",
  75. "name": "python",
  76. "nbconvert_exporter": "python",
  77. "pygments_lexer": "ipython3",
  78. "version": "3.8.6"
  79. }
  80. },
  81. "nbformat": 4,
  82. "nbformat_minor": 2
  83. }