o: ActiveSupport::Cache::Entry :@compressedF: @value"œŸ"•Ÿ
ALTIMET_test.ipynb
14 14
      "P\u0159esn\u00e9 m\u011b\u0159en\u00ed tlaku a jeho pou\u017eit\u00ed k ur\u010den\u00ed nadmo\u0159sk\u00e9 v\u00fd\u0161ky\n",
15 15
      "=======\n",
16 16
      "\n",
17
      "P\u0159\u00edklad vyu\u017e\u00edv\u00e1 modulovou stavebnici MLAB a jej\u00ed Python knihovnu [pymlab](https://github.com/MLAB-project/MLAB-I2c-modules)\n",
17
      "P\u0159\u00edklad vyu\u017e\u00edv\u00e1 modulovou stavebnici MLAB a jej\u00ed Python knihovnu [pymlab](https://github.com/MLAB-project/MLAB-I2c-modules). Sn\u00edma\u010d je k po\u010d\u00edta\u010di p\u0159ipojen\u00fd p\u0159es rozhradn\u00ed USB a data jsou vy\u010d\u00edt\u00e1na p\u0159es [I\u00b2C](http://wiki.mlab.cz/doku.php?id=cs:i2c)\n",
18 18
      "\n",
19 19
      "Pou\u017eit\u00fd sn\u00edma\u010d [MPL3115A2](http://www.freescale.com/webapp/sps/site/prod_summary.jsp?code=MPL3115A2) m\u00e1 n\u00e1sleduj\u00edc\u00ed katalogov\u00e9 parametry: \n",
20 20
      "\n",
......
49 49
        "i2c-3\ti2c       \ti915 gmbus dpc                  \tI2C adapter\r\n",
50 50
        "i2c-4\ti2c       \ti915 gmbus dpb                  \tI2C adapter\r\n",
51 51
        "i2c-5\ti2c       \ti915 gmbus dpd                  \tI2C adapter\r\n",
52
        "i2c-6\ti2c       \tDPDDC-C                         \tI2C adapter\r\n",
53
        "i2c-7\ti2c       \tDPDDC-D                         \tI2C adapter\r\n",
54
        "i2c-8\ti2c       \ti2c-tiny-usb at bus 001 device 008\tI2C adapter\r\n"
52
        "i2c-6\ti2c       \tDPDDC-B                         \tI2C adapter\r\n",
53
        "i2c-7\ti2c       \ti2c-tiny-usb at bus 001 device 004\tI2C adapter\r\n"
55 54
       ]
56 55
      }
57 56
     ],
58
     "prompt_number": 1
57
     "prompt_number": 111
59 58
    },
60 59
    {
61 60
     "cell_type": "markdown",
......
84 83
     "cell_type": "code",
85 84
     "collapsed": false,
86 85
     "input": [
87
      "port = 8"
86
      "port = 7"
88 87
     ],
89 88
     "language": "python",
90 89
     "metadata": {},
91 90
     "outputs": [],
92
     "prompt_number": 2
91
     "prompt_number": 112
93 92
    },
94 93
    {
95 94
     "cell_type": "markdown",
......
113 112
     "language": "python",
114 113
     "metadata": {},
115 114
     "outputs": [],
116
     "prompt_number": 3
115
     "prompt_number": 113
117 116
    },
118 117
    {
119 118
     "cell_type": "markdown",
......
145 144
     "language": "python",
146 145
     "metadata": {},
147 146
     "outputs": [],
148
     "prompt_number": 8
147
     "prompt_number": 114
149 148
    },
150 149
    {
151 150
     "cell_type": "markdown",
......
173 172
       ]
174 173
      }
175 174
     ],
176
     "prompt_number": 9
175
     "prompt_number": 115
177 176
    },
178 177
    {
179 178
     "cell_type": "markdown",
......
186 185
     "cell_type": "code",
187 186
     "collapsed": false,
188 187
     "input": [
188
      "import sys\n",
189
      "import time\n",
190
      "from IPython.display import clear_output\n",
191
      "\n",
192
      "\n",
189 193
      "MEASUREMENTS = 100\n",
190 194
      "t = np.zeros(MEASUREMENTS)\n",
191 195
      "p = np.zeros(MEASUREMENTS)\n",
......
193 197
      "#    gauge.route()  V p\u0159\u00edpad\u011b v\u00edce \u010didel je pot\u0159eba ke ka\u017ed\u00e9mu p\u0159ed jeho pou\u017eit\u00edm nechat vyroutovat cesutu na sb\u011brnici.\n",
194 198
      "for n in range(MEASUREMENTS):\n",
195 199
      "    (t[n], p[n]) = gauge.get_tp()\n",
196
      "    print(n,t[n], p[n])"
200
      "    clear_output()\n",
201
      "    print(n,t[n], p[n])\n",
202
      "    sys.stdout.flush()"
197 203
     ],
198 204
     "language": "python",
199 205
     "metadata": {},
......
202 208
       "output_type": "stream",
203 209
       "stream": "stdout",
204 210
       "text": [
205
        "(0, 22.625, 98286.0)\n",
206
        "(1, 22.625, 98288.25)"
211
        "(99, 22.9375, 95656.5)\n"
207 212
       ]
208
      },
209
      {
210
       "output_type": "stream",
211
       "stream": "stdout",
212
       "text": [
213
        "\n",
214
        "(2, 22.625, 98288.25)"
215
       ]
216
      },
217
      {
218
       "output_type": "stream",
219
       "stream": "stdout",
220
       "text": [
221
        "\n",
222
        "(3, 22.625, 98290.75)"
223
       ]
224
      },
225
      {
226
       "output_type": "stream",
227
       "stream": "stdout",
228
       "text": [
229
        "\n",
230
        "(4, 22.625, 98290.75)"
231
       ]
232
      },
233
      {
234
       "output_type": "stream",
235
       "stream": "stdout",
236
       "text": [
237
        "\n",
238
        "(5, 22.625, 98284.75)"
239
       ]
240
      },
241
      {
242
       "output_type": "stream",
243
       "stream": "stdout",
244
       "text": [
245
        "\n",
246
        "(6, 22.625, 98284.75)"
247
       ]
248
      },
249
      {
250
       "output_type": "stream",
251
       "stream": "stdout",
252
       "text": [
253
        "\n",
254
        "(7, 22.625, 98284.5)"
255
       ]
256
      },
257
      {
258
       "output_type": "stream",
259
       "stream": "stdout",
260
       "text": [
261
        "\n",
262
        "(8, 22.625, 98284.5)"
263
       ]
264
      },
265
      {
266
       "output_type": "stream",
267
       "stream": "stdout",
268
       "text": [
269
        "\n",
270
        "(9, 22.625, 98284.5)"
271
       ]
272
      },
273
      {
274
       "output_type": "stream",
275
       "stream": "stdout",
276
       "text": [
277
        "\n",
278
        "(10, 22.625, 98284.5)"
279
       ]
280
      },
281
      {
282
       "output_type": "stream",
283
       "stream": "stdout",
284
       "text": [
285
        "\n",
286
        "(11, 22.625, 98284.5)"
287
       ]
288
      },
289
      {
290
       "output_type": "stream",
291
       "stream": "stdout",
292
       "text": [
293
        "\n",
294
        "(12, 22.625, 98284.5)"
295
       ]
296
      },
297
      {
298
       "output_type": "stream",
299
       "stream": "stdout",
300
       "text": [
301
        "\n",
302
        "(13, 22.625, 98284.5)"
303
       ]
304
      },
305
      {
306
       "output_type": "stream",
307
       "stream": "stdout",
308
       "text": [
309
        "\n",
310
        "(14, 22.625, 98284.75)"
311
       ]
312
      },
313
      {
314
       "output_type": "stream",
315
       "stream": "stdout",
316
       "text": [
317
        "\n",
318
        "(15, 22.625, 98284.75)"
319
       ]
320
      },
321
      {
322
       "output_type": "stream",
323
       "stream": "stdout",
324
       "text": [
325
        "\n",
326
        "(16, 22.625, 98286.5)"
327
       ]
328
      },
329
      {
330
       "output_type": "stream",
331
       "stream": "stdout",
332
       "text": [
333
        "\n",
334
        "(17, 22.625, 98286.5)"
335
       ]
336
      },
337
      {
338
       "output_type": "stream",
339
       "stream": "stdout",
340
       "text": [
341
        "\n",
342
        "(18, 22.625, 98284.25)"
343
       ]
344
      },
345
      {
346
       "output_type": "stream",
347
       "stream": "stdout",
348
       "text": [
349
        "\n",
350
        "(19, 22.625, 98284.25)"
351
       ]
352
      },
353
      {
354
       "output_type": "stream",
355
       "stream": "stdout",
356
       "text": [
357
        "\n",
358
        "(20, 22.625, 98288.25)"
359
       ]
360
      },
361
      {
362
       "output_type": "stream",
363
       "stream": "stdout",
364
       "text": [
365
        "\n",
366
        "(21, 22.625, 98288.25)"
367
       ]
368
      },
369
      {
370
       "output_type": "stream",
371
       "stream": "stdout",
372
       "text": [
373
        "\n",
374
        "(22, 22.625, 98288.5)"
375
       ]
376
      },
377
      {
378
       "output_type": "stream",
379
       "stream": "stdout",
380
       "text": [
381
        "\n",
382
        "(23, 22.625, 98284.5)"
383
       ]
384
      },
385
      {
386
       "output_type": "stream",
387
       "stream": "stdout",
388
       "text": [
389
        "\n",
390
        "(24, 22.625, 98284.5)"
391
       ]
392
      },
393
      {
394
       "output_type": "stream",
395
       "stream": "stdout",
396
       "text": [
397
        "\n",
398
        "(25, 22.625, 98286.0)"
399
       ]
400
      },
401
      {
402
       "output_type": "stream",
403
       "stream": "stdout",
404
       "text": [
405
        "\n",
406
        "(26, 22.625, 98286.0)"
407
       ]
408
      },
409
      {
410
       "output_type": "stream",
411
       "stream": "stdout",
412
       "text": [
413
        "\n",
414
        "(27, 22.625, 98290.0)"
415
       ]
416
      },
417
      {
418
       "output_type": "stream",
419
       "stream": "stdout",
420
       "text": [
421
        "\n",
422
        "(28, 22.625, 98290.0)"
423
       ]
424
      },
425
      {
426
       "output_type": "stream",
427
       "stream": "stdout",
428
       "text": [
429
        "\n",
430
        "(29, 22.625, 98286.5)"
431
       ]
432
      },
433
      {
434
       "output_type": "stream",
435
       "stream": "stdout",
436
       "text": [
437
        "\n",
438
        "(30, 22.625, 98286.5)"
439
       ]
440
      },
441
      {
442
       "output_type": "stream",
443
       "stream": "stdout",
444
       "text": [
445
        "\n",
446
        "(31, 22.625, 98290.75)"
447
       ]
448
      },
449
      {
450
       "output_type": "stream",
451
       "stream": "stdout",
452
       "text": [
453
        "\n",
454
        "(32, 22.625, 98290.75)"
455
       ]
456
      },
457
      {
458
       "output_type": "stream",
459
       "stream": "stdout",
460
       "text": [
461
        "\n",
462
        "(33, 22.625, 98286.25)"
463
       ]
464
      },
465
      {
466
       "output_type": "stream",
467
       "stream": "stdout",
468
       "text": [
469
        "\n",
470
        "(34, 22.625, 98286.25)"
471
       ]
472
      },
473
      {
474
       "output_type": "stream",
475
       "stream": "stdout",
476
       "text": [
477
        "\n",
478
        "(35, 22.625, 98286.25)"
479
       ]
480
      },
481
      {
482
       "output_type": "stream",
483
       "stream": "stdout",
484
       "text": [
485
        "\n",
486
        "(36, 22.625, 98286.25)"
487
       ]
488
      },
489
      {
490
       "output_type": "stream",
491
       "stream": "stdout",
492
       "text": [
493
        "\n",
494
        "(37, 22.625, 98286.25)"
495
       ]
496
      },
497
      {
498
       "output_type": "stream",
499
       "stream": "stdout",
500
       "text": [
501
        "\n",
502
        "(38, 22.625, 98286.25)"
503
       ]
504
      },
505
      {
506
       "output_type": "stream",
507
       "stream": "stdout",
508
       "text": [
509
        "\n",
510
        "(39, 22.625, 98286.25)"
511
       ]
512
      },
513
      {
514
       "output_type": "stream",
515
       "stream": "stdout",
516
       "text": [
517
        "\n",
518
        "(40, 22.625, 98290.75)"
519
       ]
520
      },
521
      {
522
       "output_type": "stream",
523
       "stream": "stdout",
524
       "text": [
525
        "\n",
526
        "(41, 22.625, 98290.75)"
527
       ]
528
      },
529
      {
530
       "output_type": "stream",
531
       "stream": "stdout",
532
       "text": [
533
        "\n",
534
        "(42, 22.625, 98286.0)"
535
       ]
536
      },
537
      {
538
       "output_type": "stream",
539
       "stream": "stdout",
540
       "text": [
541
        "\n",
542
        "(43, 22.625, 98286.0)"
543
       ]
544
      },
545
      {
546
       "output_type": "stream",
547
       "stream": "stdout",
548
       "text": [
549
        "\n",
550
        "(44, 22.625, 98286.0)"
551
       ]
552
      },
553
      {
554
       "output_type": "stream",
555
       "stream": "stdout",
556
       "text": [
557
        "\n",
558
        "(45, 22.625, 98286.0)"
559
       ]
560
      },
561
      {
562
       "output_type": "stream",
563
       "stream": "stdout",
564
       "text": [
565
        "\n",
566
        "(46, 22.625, 98288.75)"
567
       ]
568
      },
569
      {
570
       "output_type": "stream",
571
       "stream": "stdout",
572
       "text": [
573
        "\n",
574
        "(47, 22.625, 98288.75)"
575
       ]
576
      },
577
      {
578
       "output_type": "stream",
579
       "stream": "stdout",
580
       "text": [
581
        "\n",
582
        "(48, 22.625, 98286.5)"
583
       ]
584
      },
585
      {
586
       "output_type": "stream",
587
       "stream": "stdout",
588
       "text": [
589
        "\n",
590
        "(49, 22.625, 98286.5)"
591
       ]
592
      },
593
      {
594
       "output_type": "stream",
595
       "stream": "stdout",
596
       "text": [
597
        "\n",
598
        "(50, 22.625, 98288.5)"
599
       ]
600
      },
601
      {
602
       "output_type": "stream",
603
       "stream": "stdout",
604
       "text": [
605
        "\n",
606
        "(51, 22.625, 98288.5)"
607
       ]
608
      },
609
      {
610
       "output_type": "stream",
611
       "stream": "stdout",
612
       "text": [
613
        "\n",
614
        "(52, 22.625, 98288.5)"
615
       ]
616
      },
617
      {
618
       "output_type": "stream",
619
       "stream": "stdout",
620
       "text": [
621
        "\n",
622
        "(53, 22.625, 98286.75)"
623
       ]
624
      },
625
      {
626
       "output_type": "stream",
627
       "stream": "stdout",
628
       "text": [
629
        "\n",
630
        "(54, 22.625, 98286.75)"
631
       ]
632
      },
633
      {
634
       "output_type": "stream",
635
       "stream": "stdout",
636
       "text": [
637
        "\n",
638
        "(55, 22.625, 98286.0)"
639
       ]
640
      },
641
      {
642
       "output_type": "stream",
643
       "stream": "stdout",
644
       "text": [
645
        "\n",
646
        "(56, 22.625, 98286.0)"
647
       ]
648
      },
649
      {
650
       "output_type": "stream",
651
       "stream": "stdout",
652
       "text": [
653
        "\n",
654
        "(57, 22.625, 98286.75)"
655
       ]
656
      },
657
      {
658
       "output_type": "stream",
659
       "stream": "stdout",
660
       "text": [
661
        "\n",
662
        "(58, 22.625, 98286.75)"
663
       ]
664
      },
665
      {
666
       "output_type": "stream",
667
       "stream": "stdout",
668
       "text": [
669
        "\n",
670
        "(59, 22.625, 98290.75)"
671
       ]
672
      },
673
      {
674
       "output_type": "stream",
675
       "stream": "stdout",
676
       "text": [
677
        "\n",
678
        "(60, 22.625, 98290.75)"
679
       ]
680
      },
681
      {
682
       "output_type": "stream",
683
       "stream": "stdout",
684
       "text": [
685
        "\n",
686
        "(61, 22.625, 98284.5)"
687
       ]
688
      },
689
      {
690
       "output_type": "stream",
691
       "stream": "stdout",
692
       "text": [
693
        "\n",
694
        "(62, 22.625, 98284.5)"
695
       ]
696
      },
697
      {
698
       "output_type": "stream",
699
       "stream": "stdout",
700
       "text": [
701
        "\n",
702
        "(63, 22.625, 98282.25)"
703
       ]
704
      },
705
      {
706
       "output_type": "stream",
707
       "stream": "stdout",
708
       "text": [
709
        "\n",
710
        "(64, 22.625, 98286.25)"
711
       ]
712
      },
713
      {
714
       "output_type": "stream",
715
       "stream": "stdout",
716
       "text": [
717
        "\n",
718
        "(65, 22.625, 98288.25)"
719
       ]
720
      },
721
      {
722
       "output_type": "stream",
723
       "stream": "stdout",
724
       "text": [
725
        "\n",
726
        "(66, 22.625, 98288.25)"
727
       ]
728
      },
729
      {
730
       "output_type": "stream",
731
       "stream": "stdout",
732
       "text": [
733
        "\n",
734
        "(67, 22.625, 98288.25)"
735
       ]
736
      },
737
      {
738
       "output_type": "stream",
739
       "stream": "stdout",
740
       "text": [
741
        "\n",
742
        "(68, 22.625, 98290.5)"
743
       ]
744
      },
745
      {
746
       "output_type": "stream",
747
       "stream": "stdout",
748
       "text": [
749
        "\n",
750
        "(69, 22.625, 98290.5)"
751
       ]
752
      },
753
      {
754
       "output_type": "stream",
755
       "stream": "stdout",
756
       "text": [
757
        "\n",
758
        "(70, 22.625, 98290.25)"
759
       ]
760
      },
761
      {
762
       "output_type": "stream",
763
       "stream": "stdout",
764
       "text": [
765
        "\n",
766
        "(71, 22.625, 98290.25)"
767
       ]
768
      },
769
      {
770
       "output_type": "stream",
771
       "stream": "stdout",
772
       "text": [
773
        "\n",
774
        "(72, 22.625, 98286.0)"
775
       ]
776
      },
777
      {
778
       "output_type": "stream",
779
       "stream": "stdout",
780
       "text": [
781
        "\n",
782
        "(73, 22.625, 98286.0)"
783
       ]
784
      },
785
      {
786
       "output_type": "stream",
787
       "stream": "stdout",
788
       "text": [
789
        "\n",
790
        "(74, 22.625, 98290.25)"
791
       ]
792
      },
793
      {
794
       "output_type": "stream",
795
       "stream": "stdout",
796
       "text": [
797
        "\n",
798
        "(75, 22.625, 98290.25)"
799
       ]
800
      },
801
      {
802
       "output_type": "stream",
803
       "stream": "stdout",
804
       "text": [
805
        "\n",
806
        "(76, 22.625, 98284.5)"
807
       ]
808
      },
809
      {
810
       "output_type": "stream",
811
       "stream": "stdout",
812
       "text": [
813
        "\n",
814
        "(77, 22.625, 98284.5)"
815
       ]
816
      },
817
      {
818
       "output_type": "stream",
819
       "stream": "stdout",
820
       "text": [
821
        "\n",
822
        "(78, 22.625, 98290.5)"
823
       ]
824
      },
825
      {
826
       "output_type": "stream",
827
       "stream": "stdout",
828
       "text": [
829
        "\n",
830
        "(79, 22.625, 98290.5)"
831
       ]
832
      },
833
      {
834
       "output_type": "stream",
835
       "stream": "stdout",
836
       "text": [
837
        "\n",
838
        "(80, 22.625, 98290.5)"
839
       ]
840
      },
841
      {
842
       "output_type": "stream",
843
       "stream": "stdout",
844
       "text": [
845
        "\n",
846
        "(81, 22.625, 98290.25)"
847
       ]
848
      },
849
      {
850
       "output_type": "stream",
851
       "stream": "stdout",
852
       "text": [
853
        "\n",
854
        "(82, 22.625, 98290.25)"
855
       ]
856
      },
857
      {
858
       "output_type": "stream",
859
       "stream": "stdout",
860
       "text": [
861
        "\n",
862
        "(83, 22.625, 98286.25)"
863
       ]
864
      },
865
      {
866
       "output_type": "stream",
867
       "stream": "stdout",
868
       "text": [
869
        "\n",
870
        "(84, 22.625, 98286.25)"
871
       ]
872
      },
873
      {
874
       "output_type": "stream",
875
       "stream": "stdout",
876
       "text": [
877
        "\n",
878
        "(85, 22.625, 98290.5)"
879
       ]
880
      },
881
      {
882
       "output_type": "stream",
883
       "stream": "stdout",
884
       "text": [
885
        "\n",
886
        "(86, 22.625, 98290.5)"
887
       ]
888
      },
889
      {
890
       "output_type": "stream",
891
       "stream": "stdout",
892
       "text": [
893
        "\n",
894
        "(87, 22.625, 98288.5)"
895
       ]
896
      },
897
      {
898
       "output_type": "stream",
899
       "stream": "stdout",
900
       "text": [
901
        "\n",
902
        "(88, 22.625, 98288.5)"
903
       ]
904
      },
905
      {
906
       "output_type": "stream",
907
       "stream": "stdout",
908
       "text": [
909
        "\n",
910
        "(89, 22.625, 98286.75)"
911
       ]
912
      },
913
      {
914
       "output_type": "stream",
915
       "stream": "stdout",
916
       "text": [
917
        "\n",
918
        "(90, 22.625, 98286.75)"
919
       ]
920
      },
921
      {
922
       "output_type": "stream",
923
       "stream": "stdout",
924
       "text": [
925
        "\n",
926
        "(91, 22.625, 98290.75)"
927
       ]
928
      },
929
      {
930
       "output_type": "stream",
931
       "stream": "stdout",
932
       "text": [
933
        "\n",
934
        "(92, 22.625, 98290.75)"
935
       ]
936
      },
937
      {
938
       "output_type": "stream",
939
       "stream": "stdout",
940
       "text": [
941
        "\n",
942
        "(93, 22.625, 98288.75)"
943
       ]
944
      },
945
      {
946
       "output_type": "stream",
947
       "stream": "stdout",
948
       "text": [
949
        "\n",
950
        "(94, 22.625, 98288.75)"
951
       ]
952
      },
953
      {
954
       "output_type": "stream",
955
       "stream": "stdout",
956
       "text": [
957
        "\n",
958
        "(95, 22.625, 98288.75)"
959
       ]
960
      },
961
      {
962
       "output_type": "stream",
963
       "stream": "stdout",
964
       "text": [
965
        "\n",
966
        "(96, 22.625, 98290.5)"
967
       ]
968
      },
969
      {
970
       "output_type": "stream",
971
       "stream": "stdout",
972
       "text": [
973
        "\n",
974
        "(97, 22.625, 98290.5)"
975
       ]
976
      },
977
      {
978
       "output_type": "stream",
979
       "stream": "stdout",
980
       "text": [
981
        "\n",
982
        "(98, 22.625, 98290.0)"
983
       ]
984
      },
985
      {
986
       "output_type": "stream",
987
       "stream": "stdout",
988
       "text": [
989
        "\n",
990
        "(99, 22.625, 98290.0)"
991
       ]
992
      },
993
      {
994
       "output_type": "stream",
995
       "stream": "stdout",
996
       "text": [
997
        "\n"
998
       ]
999 213
      }
1000 214
     ],
1001
     "prompt_number": 34
215
     "prompt_number": 117
1002 216
    },
1003 217
    {
1004 218
     "cell_type": "markdown",
......
1029 243
     "cell_type": "code",
1030 244
     "collapsed": false,
1031 245
     "input": [
246
      "import sys\n",
247
      "import time\n",
248
      "from IPython.display import clear_output\n",
249
      "\n",
1032 250
      "MEASUREMENTS = 100\n",
1033 251
      "t = np.zeros(MEASUREMENTS)\n",
1034 252
      "p = np.zeros(MEASUREMENTS)\n",
......
1036 254
      "#    gauge.route()  V p\u0159\u00edpad\u011b v\u00edce \u010didel je pot\u0159eba ke ka\u017ed\u00e9mu p\u0159ed jeho pou\u017eit\u00edm nechat vyroutovat cesutu na sb\u011brnici.\n",
1037 255
      "for n in range(MEASUREMENTS):\n",
1038 256
      "    (t[n], p[n]) = gauge.get_tp()\n",
1039
      "    print(n,t[n], p[n])"
257
      "    clear_output()\n",
258
      "    print(n,t[n], p[n])\n",
259
      "    sys.stdout.flush()"
1040 260
     ],
1041 261
     "language": "python",
1042 262
     "metadata": {},
......
1045 265
       "output_type": "stream",
1046 266
       "stream": "stdout",
1047 267
       "text": [
1048
        "(0, 22.5625, 98296.25)\n",
1049
        "(1, 22.5625, 98296.25)"
268
        "(99, 22.875, 95658.5)\n"
1050 269
       ]
1051
      },
1052
      {
1053
       "output_type": "stream",
1054
       "stream": "stdout",
1055
       "text": [
1056
        "\n",
1057
        "(2, 22.5625, 98302.5)"
1058
       ]
1059
      },
1060
      {
1061
       "output_type": "stream",
1062
       "stream": "stdout",
1063
       "text": [
1064
        "\n",
1065
        "(3, 22.5625, 98302.5)"
1066
       ]
1067
      },
1068
      {
1069
       "output_type": "stream",
1070
       "stream": "stdout",
1071
       "text": [
1072
        "\n",
1073
        "(4, 22.5625, 98300.25)"
1074
       ]
1075
      },
1076
      {
1077
       "output_type": "stream",
1078
       "stream": "stdout",
1079
       "text": [
1080
        "\n",
1081
        "(5, 22.5625, 98300.25)"
1082
       ]
1083
      },
1084
      {
1085
       "output_type": "stream",
1086
       "stream": "stdout",
1087
       "text": [
1088
        "\n",
1089
        "(6, 22.5625, 98302.0)"
1090
       ]
1091
      },
1092
      {
1093
       "output_type": "stream",
1094
       "stream": "stdout",
1095
       "text": [
1096
        "\n",
1097
        "(7, 22.5625, 98302.0)"
1098
       ]
1099
      },
1100
      {
1101
       "output_type": "stream",
1102
       "stream": "stdout",
1103
       "text": [
1104
        "\n",
1105
        "(8, 22.5625, 98300.75)"
1106
       ]
1107
      },
1108
      {
1109
       "output_type": "stream",
1110
       "stream": "stdout",
1111
       "text": [
1112
        "\n",
1113
        "(9, 22.5625, 98300.75)"
1114
       ]
1115
      },
1116
      {
1117
       "output_type": "stream",
1118
       "stream": "stdout",
1119
       "text": [
1120
        "\n",
1121
        "(10, 22.5625, 98304.5)"
1122
       ]
1123
      },
1124
      {
1125
       "output_type": "stream",
1126
       "stream": "stdout",
1127
       "text": [
1128
        "\n",
1129
        "(11, 22.5625, 98304.5)"
1130
       ]
1131
      },
1132
      {
1133
       "output_type": "stream",
1134
       "stream": "stdout",
1135
       "text": [
1136
        "\n",
1137
        "(12, 22.5625, 98304.25)"
1138
       ]
1139
      },
1140
      {
1141
       "output_type": "stream",
1142
       "stream": "stdout",
1143
       "text": [
1144
        "\n",
1145
        "(13, 22.5625, 98304.25)"
1146
       ]
1147
      },
1148
      {
1149
       "output_type": "stream",
1150
       "stream": "stdout",
1151
       "text": [
1152
        "\n",
1153
        "(14, 22.5625, 98300.25)"
1154
       ]
1155
      },
1156
      {
1157
       "output_type": "stream",
1158
       "stream": "stdout",
1159
       "text": [
1160
        "\n",
1161
        "(15, 22.5625, 98300.25)"
1162
       ]
1163
      },
1164
      {
1165
       "output_type": "stream",
1166
       "stream": "stdout",
1167
       "text": [
1168
        "\n",
1169
        "(16, 22.5625, 98300.25)"
1170
       ]
1171
      },
1172
      {
1173
       "output_type": "stream",
1174
       "stream": "stdout",
1175
       "text": [
1176
        "\n",
1177
        "(17, 22.5625, 98302.5)"
1178
       ]
1179
      },
1180
      {
1181
       "output_type": "stream",
1182
       "stream": "stdout",
1183
       "text": [
1184
        "\n",
1185
        "(18, 22.5625, 98302.5)"
1186
       ]
1187
      },
1188
      {
1189
       "output_type": "stream",
1190
       "stream": "stdout",
1191
       "text": [
1192
        "\n",
1193
        "(19, 22.5625, 98304.0)"
1194
       ]
1195
      },
1196
      {
1197
       "output_type": "stream",
1198
       "stream": "stdout",
1199
       "text": [
1200
        "\n",
1201
        "(20, 22.5625, 98304.0)"
1202
       ]
1203
      },
1204
      {
1205
       "output_type": "stream",
1206
       "stream": "stdout",
1207
       "text": [
1208
        "\n",
1209
        "(21, 22.5625, 98298.5)"
1210
       ]
1211
      },
1212
      {
1213
       "output_type": "stream",
1214
       "stream": "stdout",
1215
       "text": [
1216
        "\n",
1217
        "(22, 22.5625, 98298.5)"
1218
       ]
1219
      },
1220
      {
1221
       "output_type": "stream",
1222
       "stream": "stdout",
1223
       "text": [
1224
        "\n",
1225
        "(23, 22.5625, 98298.5)"
1226
       ]
1227
      },
1228
      {
1229
       "output_type": "stream",
1230
       "stream": "stdout",
1231
       "text": [
1232
        "\n",
1233
        "(24, 22.5625, 98298.5)"
1234
       ]
1235
      },
1236
      {
1237
       "output_type": "stream",
1238
       "stream": "stdout",
1239
       "text": [
1240
        "\n",
1241
        "(25, 22.5625, 98300.5)"
1242
       ]
1243
      },
1244
      {
1245
       "output_type": "stream",
1246
       "stream": "stdout",
1247
       "text": [
1248
        "\n",
1249
        "(26, 22.5625, 98300.5)"
1250
       ]
1251
      },
1252
      {
1253
       "output_type": "stream",
1254
       "stream": "stdout",
1255
       "text": [
1256
        "\n",
1257
        "(27, 22.5625, 98296.0)"
1258
       ]
1259
      },
1260
      {
1261
       "output_type": "stream",
1262
       "stream": "stdout",
1263
       "text": [
1264
        "\n",
1265
        "(28, 22.5625, 98300.0)"
1266
       ]
1267
      },
1268
      {
1269
       "output_type": "stream",
1270
       "stream": "stdout",
1271
       "text": [
1272
        "\n",
1273
        "(29, 22.5625, 98306.75)"
1274
       ]
1275
      },
1276
      {
1277
       "output_type": "stream",
1278
       "stream": "stdout",
1279
       "text": [
1280
        "\n",
1281
        "(30, 22.5625, 98302.75)"
1282
       ]
1283
      },
1284
      {
1285
       "output_type": "stream",
1286
       "stream": "stdout",
1287
       "text": [
1288
        "\n",
1289
        "(31, 22.5625, 98302.75)"
1290
       ]
1291
      },
1292
      {
1293
       "output_type": "stream",
1294
       "stream": "stdout",
1295
       "text": [
1296
        "\n",
1297
        "(32, 22.5625, 98302.75)"
1298
       ]
1299
      },
1300
      {
1301
       "output_type": "stream",
1302
       "stream": "stdout",
1303
       "text": [
1304
        "\n",
1305
        "(33, 22.5625, 98302.75)"
1306
       ]
1307
      },
1308
      {
1309
       "output_type": "stream",
1310
       "stream": "stdout",
1311
       "text": [
1312
        "\n",
1313
        "(34, 22.5625, 98302.75)"
1314
       ]
1315
      },
1316
      {
1317
       "output_type": "stream",
1318
       "stream": "stdout",
1319
       "text": [
1320
        "\n",
1321
        "(35, 22.5625, 98302.75)"
1322
       ]
1323
      },
1324
      {
1325
       "output_type": "stream",
1326
       "stream": "stdout",
1327
       "text": [
1328
        "\n",
1329
        "(36, 22.5625, 98300.25)"
1330
       ]
1331
      },
1332
      {
1333
       "output_type": "stream",
1334
       "stream": "stdout",
1335
       "text": [
1336
        "\n",
1337
        "(37, 22.5625, 98300.25)"
1338
       ]
1339
      },
1340
      {
1341
       "output_type": "stream",
1342
       "stream": "stdout",
1343
       "text": [
1344
        "\n",
1345
        "(38, 22.5625, 98296.5)"
1346
       ]
1347
      },
1348
      {
1349
       "output_type": "stream",
1350
       "stream": "stdout",
1351
       "text": [
1352
        "\n",
1353
        "(39, 22.5625, 98296.5)"
1354
       ]
1355
      },
1356
      {
1357
       "output_type": "stream",
1358
       "stream": "stdout",
1359
       "text": [
1360
        "\n",
1361
        "(40, 22.5625, 98296.5)"
1362
       ]
1363
      },
1364
      {
1365
       "output_type": "stream",
1366
       "stream": "stdout",
1367
       "text": [
1368
        "\n",
1369
        "(41, 22.5625, 98296.5)"
1370
       ]
1371
      },
1372
      {
1373
       "output_type": "stream",
1374
       "stream": "stdout",
1375
       "text": [
1376
        "\n",
1377
        "(42, 22.5625, 98300.0)"
1378
       ]
1379
      },
1380
      {
1381
       "output_type": "stream",
1382
       "stream": "stdout",
1383
       "text": [
1384
        "\n",
1385
        "(43, 22.5625, 98300.0)"
1386
       ]
1387
      },
1388
      {
1389
       "output_type": "stream",
1390
       "stream": "stdout",
1391
       "text": [
1392
        "\n",
1393
        "(44, 22.5625, 98300.0)"
1394
       ]
1395
      },
1396
      {
1397
       "output_type": "stream",
1398
       "stream": "stdout",
1399
       "text": [
1400
        "\n",
1401
        "(45, 22.5625, 98300.5)"
1402
       ]
1403
      },
1404
      {
1405
       "output_type": "stream",
1406
       "stream": "stdout",
1407
       "text": [
1408
        "\n",
1409
        "(46, 22.5625, 98300.5)"
1410
       ]
1411
      },
1412
      {
1413
       "output_type": "stream",
1414
       "stream": "stdout",
1415
       "text": [
1416
        "\n",
1417
        "(47, 22.5625, 98300.5)"
1418
       ]
1419
      },
1420
      {
1421
       "output_type": "stream",
1422
       "stream": "stdout",
1423
       "text": [
1424
        "\n",
1425
        "(48, 22.5625, 98300.5)"
1426
       ]
1427
      },
1428
      {
1429
       "output_type": "stream",
1430
       "stream": "stdout",
1431
       "text": [
1432
        "\n",
1433
        "(49, 22.5625, 98300.75)"
1434
       ]
1435
      },
1436
      {
1437
       "output_type": "stream",
1438
       "stream": "stdout",
1439
       "text": [
1440
        "\n",
1441
        "(50, 22.5625, 98300.75)"
1442
       ]
1443
      },
1444
      {
1445
       "output_type": "stream",
1446
       "stream": "stdout",
1447
       "text": [
1448
        "\n",
1449
        "(51, 22.5625, 98298.75)"
1450
       ]
1451
      },
1452
      {
1453
       "output_type": "stream",
1454
       "stream": "stdout",
1455
       "text": [
1456
        "\n",
1457
        "(52, 22.5625, 98298.75)"
1458
       ]
1459
      },
1460
      {
1461
       "output_type": "stream",
1462
       "stream": "stdout",
1463
       "text": [
1464
        "\n",
1465
        "(53, 22.5625, 98298.75)"
1466
       ]
1467
      },
1468
      {
1469
       "output_type": "stream",
1470
       "stream": "stdout",
1471
       "text": [
1472
        "\n",
1473
        "(54, 22.5625, 98298.75)"
1474
       ]
1475
      },
1476
      {
1477
       "output_type": "stream",
1478
       "stream": "stdout",
1479
       "text": [
1480
        "\n",
1481
        "(55, 22.5625, 98300.5)"
1482
       ]
1483
      },
1484
      {
1485
       "output_type": "stream",
1486
       "stream": "stdout",
1487
       "text": [
1488
        "\n",
1489
        "(56, 22.5625, 98300.5)"
1490
       ]
1491
      },
1492
      {
1493
       "output_type": "stream",
1494
       "stream": "stdout",
1495
       "text": [
1496
        "\n",
1497
        "(57, 22.5625, 98296.75)"
1498
       ]
1499
      },
1500
      {
1501
       "output_type": "stream",
1502
       "stream": "stdout",
1503
       "text": [
1504
        "\n",
1505
        "(58, 22.5625, 98296.75)"
1506
       ]
1507
      },
1508
      {
1509
       "output_type": "stream",
1510
       "stream": "stdout",
1511
       "text": [
1512
        "\n",
1513
        "(59, 22.5625, 98296.75)"
1514
       ]
1515
      },
1516
      {
1517
       "output_type": "stream",
1518
       "stream": "stdout",
1519
       "text": [
1520
        "\n",
1521
        "(60, 22.5625, 98298.25)"
1522
       ]
1523
      },
1524
      {
1525
       "output_type": "stream",
1526
       "stream": "stdout",
1527
       "text": [
1528
        "\n",
1529
        "(61, 22.5625, 98298.25)"
1530
       ]
1531
      },
1532
      {
1533
       "output_type": "stream",
1534
       "stream": "stdout",
1535
       "text": [
1536
        "\n",
1537
        "(62, 22.5625, 98298.25)"
1538
       ]
1539
      },
1540
      {
1541
       "output_type": "stream",
1542
       "stream": "stdout",
1543
       "text": [
1544
        "\n",
1545
        "(63, 22.5625, 98298.25)"
1546
       ]
1547
      },
1548
      {
1549
       "output_type": "stream",
1550
       "stream": "stdout",
1551
       "text": [
1552
        "\n",
1553
        "(64, 22.5625, 98304.25)"
1554
       ]
1555
      },
1556
      {
1557
       "output_type": "stream",
1558
       "stream": "stdout",
1559
       "text": [
1560
        "\n",
1561
        "(65, 22.5625, 98304.25)"
1562
       ]
1563
      },
1564
      {
1565
       "output_type": "stream",
1566
       "stream": "stdout",
1567
       "text": [
1568
        "\n",
1569
        "(66, 22.5625, 98298.0)"
1570
       ]
1571
      },
1572
      {
1573
       "output_type": "stream",
1574
       "stream": "stdout",
1575
       "text": [
1576
        "\n",
1577
        "(67, 22.5625, 98298.0)"
1578
       ]
1579
      },
1580
      {
1581
       "output_type": "stream",
1582
       "stream": "stdout",
1583
       "text": [
1584
        "\n",
1585
        "(68, 22.5625, 98302.5)"
1586
       ]
1587
      },
1588
      {
1589
       "output_type": "stream",
1590
       "stream": "stdout",
1591
       "text": [
1592
        "\n",
1593
        "(69, 22.5625, 98302.5)"
1594
       ]
1595
      },
1596
      {
1597
       "output_type": "stream",
1598
       "stream": "stdout",
1599
       "text": [
1600
        "\n",
1601
        "(70, 22.5625, 98302.5)"
1602
       ]
1603
      },
1604
      {
1605
       "output_type": "stream",
1606
       "stream": "stdout",
1607
       "text": [
1608
        "\n",
1609
        "(71, 22.5625, 98302.5)"
1610
       ]
1611
      },
1612
      {
1613
       "output_type": "stream",
1614
       "stream": "stdout",
1615
       "text": [
1616
        "\n",
1617
        "(72, 22.5625, 98298.0)"
1618
       ]
1619
      },
1620
      {
... Π­Ρ‚ΠΎΡ‚ diff ΠΎΠ³Ρ€Π°Π½ΠΈΡ‡Π΅Π½, Ρ‚Π°ΠΊ ΠΊΠ°ΠΊ ΠΏΡ€Π΅Π²Ρ‹ΡˆΠ°Π΅Ρ‚ ΠΌΠ°ΠΊΡΠΈΠΌΠ°Π»ΡŒΠ½Ρ‹ΠΉ ΠΎΡ‚ΠΎΠ±Ρ€Π°ΠΆΠ°Π΅ΠΌΡ‹ΠΉ Ρ€Π°Π·ΠΌΠ΅Ρ€. :@created_atf1424459221.6850729Ψ<:@expires_in0