-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathA Brief Introduction to Symplectic Integrators in Numerical Analysis.log
executable file
·1231 lines (1030 loc) · 49.9 KB
/
A Brief Introduction to Symplectic Integrators in Numerical Analysis.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012) (format=pdflatex 2012.10.22) 29 DEC 2012 22:37
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
**"A Brief Introduction to Symplectic Integrators in Numerical Analysis.tex"
(./A Brief Introduction to Symplectic Integrators in Numerical Analysis.tex
LaTeX2e <2011/06/27>
Babel <v3.8m> and hyphenation patterns for english, dumylang, nohyphenation, ge
rman-x-2012-05-30, ngerman-x-2012-05-30, afrikaans, ancientgreek, ibycus, arabi
c, armenian, basque, bulgarian, catalan, pinyin, coptic, croatian, czech, danis
h, dutch, ukenglish, usenglishmax, esperanto, estonian, ethiopic, farsi, finnis
h, french, friulan, galician, german, ngerman, swissgerman, monogreek, greek, h
ungarian, icelandic, assamese, bengali, gujarati, hindi, kannada, malayalam, ma
rathi, oriya, panjabi, tamil, telugu, indonesian, interlingua, irish, italian,
kurmanji, latin, latvian, lithuanian, mongolian, mongolianlmc, bokmal, nynorsk,
polish, portuguese, romanian, romansh, russian, sanskrit, serbian, serbianc, s
lovak, slovenian, spanish, swedish, turkish, turkmen, ukrainian, uppersorbian,
welsh, loaded.
(/usr/local/texlive/2012/texmf-dist/tex/latex/base/article.cls
Document Class: article 2007/10/19 v1.4h Standard LaTeX document class
(/usr/local/texlive/2012/texmf-dist/tex/latex/base/size12.clo
File: size12.clo 2007/10/19 v1.4h Standard LaTeX file (size option)
)
\c@part=\count79
\c@section=\count80
\c@subsection=\count81
\c@subsubsection=\count82
\c@paragraph=\count83
\c@subparagraph=\count84
\c@figure=\count85
\c@table=\count86
\abovecaptionskip=\skip41
\belowcaptionskip=\skip42
\bibindent=\dimen102
)
(/usr/local/texlive/2012/texmf-dist/tex/latex/tools/indentfirst.sty
Package: indentfirst 1995/11/23 v1.03 Indent first paragraph (DPC)
)
(/usr/local/texlive/2012/texmf-dist/tex/latex/hyperref/hyperref.sty
Package: hyperref 2012/05/13 v6.82q Hypertext links for LaTeX
(/usr/local/texlive/2012/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty
Package: hobsub-hyperref 2012/05/28 v1.13 Bundle oberdiek, subset hyperref (HO)
(/usr/local/texlive/2012/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty
Package: hobsub-generic 2012/05/28 v1.13 Bundle oberdiek, subset generic (HO)
Package: hobsub 2012/05/28 v1.13 Construct package bundles (HO)
Package: infwarerr 2010/04/08 v1.3 Providing info/warning/error messages (HO)
Package: ltxcmds 2011/11/09 v1.22 LaTeX kernel commands for general use (HO)
Package: ifluatex 2010/03/01 v1.3 Provides the ifluatex switch (HO)
Package ifluatex Info: LuaTeX not detected.
Package: ifvtex 2010/03/01 v1.5 Detect VTeX and its facilities (HO)
Package ifvtex Info: VTeX not detected.
Package: intcalc 2007/09/27 v1.1 Expandable calculations with integers (HO)
Package: ifpdf 2011/01/30 v2.3 Provides the ifpdf switch (HO)
Package ifpdf Info: pdfTeX in PDF mode is detected.
Package: etexcmds 2011/02/16 v1.5 Avoid name clashes with e-TeX commands (HO)
Package etexcmds Info: Could not find \expanded.
(etexcmds) That can mean that you are not using pdfTeX 1.50 or
(etexcmds) that some package has redefined \expanded.
(etexcmds) In the latter case, load this package earlier.
Package: kvsetkeys 2012/04/25 v1.16 Key value parser (HO)
Package: kvdefinekeys 2011/04/07 v1.3 Define keys (HO)
Package: pdftexcmds 2011/11/29 v0.20 Utility functions of pdfTeX for LuaTeX (HO
)
Package pdftexcmds Info: LuaTeX not detected.
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode found.
Package: pdfescape 2011/11/25 v1.13 Implements pdfTeX's escape features (HO)
Package: bigintcalc 2012/04/08 v1.3 Expandable calculations on big integers (HO
)
Package: bitset 2011/01/30 v1.1 Handle bit-vector datatype (HO)
Package: uniquecounter 2011/01/30 v1.2 Provide unlimited unique counter (HO)
)
Package hobsub Info: Skipping package `hobsub' (already loaded).
Package: letltxmacro 2010/09/02 v1.4 Let assignment for LaTeX macros (HO)
Package: hopatch 2012/05/28 v1.2 Wrapper for package hooks (HO)
Package: xcolor-patch 2011/01/30 xcolor patch
Package: atveryend 2011/06/30 v1.8 Hooks at the very end of document (HO)
Package atveryend Info: \enddocument detected (standard20110627).
Package: atbegshi 2011/10/05 v1.16 At begin shipout hook (HO)
Package: refcount 2011/10/16 v3.4 Data extraction from label references (HO)
Package: hycolor 2011/01/30 v1.7 Color options for hyperref/bookmark (HO)
)
(/usr/local/texlive/2012/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 1999/03/16 v1.13 key=value parser (DPC)
\KV@toks@=\toks14
)
(/usr/local/texlive/2012/texmf-dist/tex/generic/ifxetex/ifxetex.sty
Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
)
(/usr/local/texlive/2012/texmf-dist/tex/latex/oberdiek/kvoptions.sty
Package: kvoptions 2011/06/30 v3.11 Key value format for package options (HO)
)
\@linkdim=\dimen103
\Hy@linkcounter=\count87
\Hy@pagecounter=\count88
(/usr/local/texlive/2012/texmf-dist/tex/latex/hyperref/pd1enc.def
File: pd1enc.def 2012/05/13 v6.82q Hyperref: PDFDocEncoding definition (HO)
)
\Hy@SavedSpaceFactor=\count89
(/usr/local/texlive/2012/texmf-dist/tex/latex/latexconfig/hyperref.cfg
File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
)
Package hyperref Info: Hyper figures OFF on input line 4062.
Package hyperref Info: Link nesting OFF on input line 4067.
Package hyperref Info: Hyper index ON on input line 4070.
Package hyperref Info: Plain pages OFF on input line 4077.
Package hyperref Info: Backreferencing OFF on input line 4082.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4300.
\c@Hy@tempcnt=\count90
(/usr/local/texlive/2012/texmf-dist/tex/latex/url/url.sty
\Urlmuskip=\muskip10
Package: url 2006/04/12 ver 3.3 Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 4653.
\Fld@menulength=\count91
\Field@Width=\dimen104
\Fld@charsize=\dimen105
Package hyperref Info: Hyper figures OFF on input line 5773.
Package hyperref Info: Link nesting OFF on input line 5778.
Package hyperref Info: Hyper index ON on input line 5781.
Package hyperref Info: backreferencing OFF on input line 5788.
Package hyperref Info: Link coloring OFF on input line 5793.
Package hyperref Info: Link coloring with OCG OFF on input line 5798.
Package hyperref Info: PDF/A mode OFF on input line 5803.
LaTeX Info: Redefining \ref on input line 5843.
LaTeX Info: Redefining \pageref on input line 5847.
\Hy@abspage=\count92
\c@Item=\count93
\c@Hfootnote=\count94
)
Package hyperref Message: Driver (autodetected): hpdftex.
(/usr/local/texlive/2012/texmf-dist/tex/latex/hyperref/hpdftex.def
File: hpdftex.def 2012/05/13 v6.82q Hyperref driver for pdfTeX
\Fld@listcount=\count95
\c@bookmark@seq@number=\count96
(/usr/local/texlive/2012/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty
Package: rerunfilecheck 2011/04/15 v1.7 Rerun checks for auxiliary files (HO)
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
82.
)
\Hy@SectionHShift=\skip43
)
(/usr/local/texlive/2012/texmf-dist/tex/latex/graphics/graphicx.sty
Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)
(/usr/local/texlive/2012/texmf-dist/tex/latex/graphics/graphics.sty
Package: graphics 2009/02/05 v1.0o Standard LaTeX Graphics (DPC,SPQR)
(/usr/local/texlive/2012/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
)
(/usr/local/texlive/2012/texmf-dist/tex/latex/latexconfig/graphics.cfg
File: graphics.cfg 2010/04/23 v1.9 graphics configuration of TeX Live
)
Package graphics Info: Driver file: pdftex.def on input line 91.
(/usr/local/texlive/2012/texmf-dist/tex/latex/pdftex-def/pdftex.def
File: pdftex.def 2011/05/27 v0.06d Graphics/color for pdfTeX
\Gread@gobject=\count97
))
\Gin@req@height=\dimen106
\Gin@req@width=\dimen107
)
(/usr/local/texlive/2012/texmf-dist/tex/latex/parskip/parskip.sty
Package: parskip 2001/04/09 non-zero parskip adjustments
)
(/usr/local/texlive/2012/texmf-dist/tex/latex/amsfonts/amssymb.sty
Package: amssymb 2009/06/22 v3.00
(/usr/local/texlive/2012/texmf-dist/tex/latex/amsfonts/amsfonts.sty
Package: amsfonts 2009/06/22 v3.00 Basic AMSFonts support
\@emptytoks=\toks15
\symAMSa=\mathgroup4
\symAMSb=\mathgroup5
LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold'
(Font) U/euf/m/n --> U/euf/b/n on input line 96.
))
(/usr/local/texlive/2012/texmf-dist/tex/latex/amsmath/amsmath.sty
Package: amsmath 2000/07/18 v2.13 AMS math features
\@mathmargin=\skip44
For additional information on amsmath, use the `?' option.
(/usr/local/texlive/2012/texmf-dist/tex/latex/amsmath/amstext.sty
Package: amstext 2000/06/29 v2.01
(/usr/local/texlive/2012/texmf-dist/tex/latex/amsmath/amsgen.sty
File: amsgen.sty 1999/11/30 v2.0
\@emptytoks=\toks16
\ex@=\dimen108
))
(/usr/local/texlive/2012/texmf-dist/tex/latex/amsmath/amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d
\pmbraise@=\dimen109
)
(/usr/local/texlive/2012/texmf-dist/tex/latex/amsmath/amsopn.sty
Package: amsopn 1999/12/14 v2.01 operator names
)
\inf@bad=\count98
LaTeX Info: Redefining \frac on input line 211.
\uproot@=\count99
\leftroot@=\count100
LaTeX Info: Redefining \overline on input line 307.
\classnum@=\count101
\DOTSCASE@=\count102
LaTeX Info: Redefining \ldots on input line 379.
LaTeX Info: Redefining \dots on input line 382.
LaTeX Info: Redefining \cdots on input line 467.
\Mathstrutbox@=\box26
\strutbox@=\box27
\big@size=\dimen110
LaTeX Font Info: Redeclaring font encoding OML on input line 567.
LaTeX Font Info: Redeclaring font encoding OMS on input line 568.
\macc@depth=\count103
\c@MaxMatrixCols=\count104
\dotsspace@=\muskip11
\c@parentequation=\count105
\dspbrk@lvl=\count106
\tag@help=\toks17
\row@=\count107
\column@=\count108
\maxfields@=\count109
\andhelp@=\toks18
\eqnshift@=\dimen111
\alignsep@=\dimen112
\tagshift@=\dimen113
\tagwidth@=\dimen114
\totwidth@=\dimen115
\lineht@=\dimen116
\@envbody=\toks19
\multlinegap=\skip45
\multlinetaggap=\skip46
\mathdisplay@stack=\toks20
LaTeX Info: Redefining \[ on input line 2666.
LaTeX Info: Redefining \] on input line 2667.
)
(/usr/local/texlive/2012/texmf-dist/tex/latex/mh/mathtools.sty
Package: mathtools 2012/04/24 v1.12 mathematical typesetting tools
(/usr/local/texlive/2012/texmf-dist/tex/latex/tools/calc.sty
Package: calc 2007/08/22 v4.3 Infix arithmetic (KKT,FJ)
\calc@Acount=\count110
\calc@Bcount=\count111
\calc@Adimen=\dimen117
\calc@Bdimen=\dimen118
\calc@Askip=\skip47
\calc@Bskip=\skip48
LaTeX Info: Redefining \setlength on input line 76.
LaTeX Info: Redefining \addtolength on input line 77.
\calc@Ccount=\count112
\calc@Cskip=\skip49
)
(/usr/local/texlive/2012/texmf-dist/tex/latex/mh/mhsetup.sty
Package: mhsetup 2010/01/21 v1.2a programming setup (MH)
)
\g_MT_multlinerow_int=\count113
\l_MT_multwidth_dim=\dimen119
\origjot=\skip50
\l_MT_shortvdotswithinadjustabove_dim=\dimen120
\l_MT_shortvdotswithinadjustbelow_dim=\dimen121
\l_MT_above_intertext_dim=\dimen122
\l_MT_below_intertext_dim=\dimen123
\l_MT_above_shortintertext_dim=\dimen124
\l_MT_below_shortintertext_dim=\dimen125
)
(/usr/local/texlive/2012/texmf-dist/tex/latex/tools/verbatim.sty
Package: verbatim 2003/08/22 v1.5q LaTeX2e package for verbatim enhancements
\every@verbatim=\toks21
\verbatim@line=\toks22
\verbatim@in@stream=\read1
)
(/usr/local/texlive/2012/texmf-dist/tex/latex/jknapltx/mathrsfs.sty
Package: mathrsfs 1996/01/01 Math RSFS package v1.0 (jk)
\symrsfs=\mathgroup6
)
(/usr/local/texlive/2012/texmf-dist/tex/latex/preprint/fullpage.sty
Package: fullpage 1999/02/23 1.1 (PWD)
\FP@margin=\skip51
)
(/usr/local/texlive/2012/texmf-dist/tex/latex/amscls/amsthm.sty
Package: amsthm 2009/07/02 v2.20.1
\thm@style=\toks23
\thm@bodyfont=\toks24
\thm@headfont=\toks25
\thm@notefont=\toks26
\thm@headpunct=\toks27
\thm@preskip=\skip52
\thm@postskip=\skip53
\thm@headsep=\skip54
\dth@everypar=\toks28
)
(./A Brief Introduction to Symplectic Integrators in Numerical Analysis.aux)
\openout1 = `"A Brief Introduction to Symplectic Integrators in Numerical Analy
sis.aux"'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 25.
LaTeX Font Info: ... okay on input line 25.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 25.
LaTeX Font Info: ... okay on input line 25.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 25.
LaTeX Font Info: ... okay on input line 25.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 25.
LaTeX Font Info: ... okay on input line 25.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 25.
LaTeX Font Info: ... okay on input line 25.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 25.
LaTeX Font Info: ... okay on input line 25.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 25.
LaTeX Font Info: ... okay on input line 25.
\AtBeginShipoutBox=\box28
Package hyperref Info: Link coloring OFF on input line 25.
(/usr/local/texlive/2012/texmf-dist/tex/latex/hyperref/nameref.sty
Package: nameref 2010/04/30 v2.40 Cross-referencing by name of section
(/usr/local/texlive/2012/texmf-dist/tex/generic/oberdiek/gettitlestring.sty
Package: gettitlestring 2010/12/03 v1.4 Cleanup title references (HO)
)
\c@section@level=\count114
)
LaTeX Info: Redefining \ref on input line 25.
LaTeX Info: Redefining \pageref on input line 25.
LaTeX Info: Redefining \nameref on input line 25.
(./A Brief Introduction to Symplectic Integrators in Numerical Analysis.out)
(./A Brief Introduction to Symplectic Integrators in Numerical Analysis.out)
\@outlinefile=\write3
\openout3 = `"A Brief Introduction to Symplectic Integrators in Numerical Analy
sis.out"'.
(/usr/local/texlive/2012/texmf-dist/tex/context/base/supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count115
\scratchdimen=\dimen126
\scratchbox=\box29
\nofMPsegments=\count116
\nofMParguments=\count117
\everyMPshowfont=\toks29
\MPscratchCnt=\count118
\MPscratchDim=\dimen127
\MPnumerator=\count119
\makeMPintoPDFobject=\count120
\everyMPtoPDFconversion=\toks30
) (/usr/local/texlive/2012/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty
Package: epstopdf-base 2010/02/09 v2.5 Base part for package epstopdf
(/usr/local/texlive/2012/texmf-dist/tex/latex/oberdiek/grfext.sty
Package: grfext 2010/08/19 v1.1 Manage graphics extensions (HO)
)
Package grfext Info: Graphics extension search list:
(grfext) [.png,.pdf,.jpg,.mps,.jpeg,.jbig2,.jb2,.PNG,.PDF,.JPG,.JPE
G,.JBIG2,.JB2,.eps]
(grfext) \AppendGraphicsExtensions on input line 452.
(/usr/local/texlive/2012/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv
e
))
LaTeX Font Info: Try loading font information for U+msa on input line 27.
(/usr/local/texlive/2012/texmf-dist/tex/latex/amsfonts/umsa.fd
File: umsa.fd 2009/06/22 v3.00 AMS symbols A
)
LaTeX Font Info: Try loading font information for U+msb on input line 27.
(/usr/local/texlive/2012/texmf-dist/tex/latex/amsfonts/umsb.fd
File: umsb.fd 2009/06/22 v3.00 AMS symbols B
)
LaTeX Font Info: Try loading font information for U+rsfs on input line 27.
(/usr/local/texlive/2012/texmf-dist/tex/latex/jknapltx/ursfs.fd
File: ursfs.fd 1998/03/24 rsfs font definition file (jk)
)
Underfull \hbox (badness 10000) in paragraph at lines 33--37
[]
Underfull \hbox (badness 10000) in paragraph at lines 33--37
[]
[1
{/usr/local/texlive/2012/texmf-var/fonts/map/pdftex/updmap/pdftex.map}]
[2]
Underfull \hbox (badness 10000) in paragraph at lines 41--44
[]
[3] [4]
Package epstopdf Info: Source file: <ExplicitEulerPlotOfAnalyticVsNumSoln.eps>
(epstopdf) date: 2012-12-25 16:08:08
(epstopdf) size: 30893 bytes
(epstopdf) Output file: <ExplicitEulerPlotOfAnalyticVsNumSoln-eps-c
onverted-to.pdf>
(epstopdf) date: 2012-12-29 01:00:55
(epstopdf) size: 47254 bytes
(epstopdf) Command: <repstopdf --outfile=ExplicitEulerPlotOfAnalyti
cVsNumSoln-eps-converted-to.pdf ExplicitEulerPlotOfAnalyticVsNumSoln.eps>
(epstopdf) \includegraphics on input line 114.
Package epstopdf Info: Output file is already uptodate.
<ExplicitEulerPlotOfAnalyticVsNumSoln-eps-converted-to.pdf, id=68, 562.1pt x 42
1.575pt>
File: ExplicitEulerPlotOfAnalyticVsNumSoln-eps-converted-to.pdf Graphic file (t
ype pdf)
<use ExplicitEulerPlotOfAnalyticVsNumSoln-eps-converted-to.pdf>
Package pdftex.def Info: ExplicitEulerPlotOfAnalyticVsNumSoln-eps-converted-to.
pdf used on input line 114.
(pdftex.def) Requested size: 317.08606pt x 237.81078pt.
Package epstopdf Info: Source file: <ExplicitEulerPhasePlanePortrait.eps>
(epstopdf) date: 2012-12-25 16:08:38
(epstopdf) size: 20172 bytes
(epstopdf) Output file: <ExplicitEulerPhasePlanePortrait-eps-conver
ted-to.pdf>
(epstopdf) date: 2012-12-29 01:34:10
(epstopdf) size: 26630 bytes
(epstopdf) Command: <repstopdf --outfile=ExplicitEulerPhasePlanePor
trait-eps-converted-to.pdf ExplicitEulerPhasePlanePortrait.eps>
(epstopdf) \includegraphics on input line 123.
Package epstopdf Info: Output file is already uptodate.
<ExplicitEulerPhasePlanePortrait-eps-converted-to.pdf, id=69, 562.1pt x 421.575
pt>
File: ExplicitEulerPhasePlanePortrait-eps-converted-to.pdf Graphic file (type p
df)
<use ExplicitEulerPhasePlanePortrait-eps-converted-to.pdf>
Package pdftex.def Info: ExplicitEulerPhasePlanePortrait-eps-converted-to.pdf u
sed on input line 123.
(pdftex.def) Requested size: 317.08606pt x 237.81078pt.
Package epstopdf Info: Source file: <ExplicitEulerAnalytVsNumEnergyPlot.eps>
(epstopdf) date: 2012-12-25 16:09:11
(epstopdf) size: 19353 bytes
(epstopdf) Output file: <ExplicitEulerAnalytVsNumEnergyPlot-eps-con
verted-to.pdf>
(epstopdf) date: 2012-12-29 01:34:11
(epstopdf) size: 26705 bytes
(epstopdf) Command: <repstopdf --outfile=ExplicitEulerAnalytVsNumEn
ergyPlot-eps-converted-to.pdf ExplicitEulerAnalytVsNumEnergyPlot.eps>
(epstopdf) \includegraphics on input line 128.
Package epstopdf Info: Output file is already uptodate.
<ExplicitEulerAnalytVsNumEnergyPlot-eps-converted-to.pdf, id=70, 562.1pt x 421.
575pt>
File: ExplicitEulerAnalytVsNumEnergyPlot-eps-converted-to.pdf Graphic file (typ
e pdf)
<use ExplicitEulerAnalytVsNumEnergyPlot-eps-converted-to.pdf>
Package pdftex.def Info: ExplicitEulerAnalytVsNumEnergyPlot-eps-converted-to.pd
f used on input line 128.
(pdftex.def) Requested size: 317.08606pt x 237.81078pt.
Underfull \hbox (badness 10000) in paragraph at lines 110--132
[]
Underfull \hbox (badness 10000) in paragraph at lines 110--132
[]
Underfull \hbox (badness 10000) in paragraph at lines 110--132
[]
Underfull \hbox (badness 10000) in paragraph at lines 110--132
[]
LaTeX Warning: `!h' float specifier changed to `!ht'.
LaTeX Warning: `!h' float specifier changed to `!ht'.
LaTeX Warning: `!h' float specifier changed to `!ht'.
[5]
LaTeX Warning: Text page 6 contains only floats.
Overfull \vbox (2.85817pt too high) has occurred while \output is active []
[6 <./ExplicitEulerPlotOfAnalyticVsNumSoln-eps-converted-to.pdf> <./ExplicitEul
erPhasePlanePortrait-eps-converted-to.pdf>]
Package epstopdf Info: Source file: <SymplecticEulerPlotofAnalyVsNumSoln.eps>
(epstopdf) date: 2012-12-25 18:54:05
(epstopdf) size: 255110 bytes
(epstopdf) Output file: <SymplecticEulerPlotofAnalyVsNumSoln-eps-co
nverted-to.pdf>
(epstopdf) date: 2012-12-29 03:55:13
(epstopdf) size: 180713 bytes
(epstopdf) Command: <repstopdf --outfile=SymplecticEulerPlotofAnaly
VsNumSoln-eps-converted-to.pdf SymplecticEulerPlotofAnalyVsNumSoln.eps>
(epstopdf) \includegraphics on input line 157.
Package epstopdf Info: Output file is already uptodate.
<SymplecticEulerPlotofAnalyVsNumSoln-eps-converted-to.pdf, id=99, 562.1pt x 421
.575pt>
File: SymplecticEulerPlotofAnalyVsNumSoln-eps-converted-to.pdf Graphic file (ty
pe pdf)
<use SymplecticEulerPlotofAnalyVsNumSoln-eps-converted-to.pdf>
Package pdftex.def Info: SymplecticEulerPlotofAnalyVsNumSoln-eps-converted-to.p
df used on input line 157.
(pdftex.def) Requested size: 211.38832pt x 158.54051pt.
Package epstopdf Info: Source file: <ZoomedInSymplecticEulerPlotofAnalyVsNumSol
n.eps>
(epstopdf) date: 2012-12-25 18:54:58
(epstopdf) size: 9320 bytes
(epstopdf) Output file: <ZoomedInSymplecticEulerPlotofAnalyVsNumSol
n-eps-converted-to.pdf>
(epstopdf) date: 2012-12-29 03:55:13
(epstopdf) size: 8725 bytes
(epstopdf) Command: <repstopdf --outfile=ZoomedInSymplecticEulerPlo
tofAnalyVsNumSoln-eps-converted-to.pdf ZoomedInSymplecticEulerPlotofAnalyVsNumS
oln.eps>
(epstopdf) \includegraphics on input line 164.
Package epstopdf Info: Output file is already uptodate.
<ZoomedInSymplecticEulerPlotofAnalyVsNumSoln-eps-converted-to.pdf, id=100, 562.
1pt x 421.575pt>
File: ZoomedInSymplecticEulerPlotofAnalyVsNumSoln-eps-converted-to.pdf Graphic
file (type pdf)
<use ZoomedInSymplecticEulerPlotofAnalyVsNumSoln-eps-converted-to.pdf>
Package pdftex.def Info: ZoomedInSymplecticEulerPlotofAnalyVsNumSoln-eps-conver
ted-to.pdf used on input line 164.
(pdftex.def) Requested size: 211.38832pt x 158.54051pt.
Package epstopdf Info: Source file: <SymplecticEulerPhaseSpacePlot.eps>
(epstopdf) date: 2012-12-25 18:55:57
(epstopdf) size: 1313504 bytes
(epstopdf) Output file: <SymplecticEulerPhaseSpacePlot-eps-converte
d-to.pdf>
(epstopdf) date: 2012-12-29 04:10:47
(epstopdf) size: 901888 bytes
(epstopdf) Command: <repstopdf --outfile=SymplecticEulerPhaseSpaceP
lot-eps-converted-to.pdf SymplecticEulerPhaseSpacePlot.eps>
(epstopdf) \includegraphics on input line 173.
Package epstopdf Info: Output file is already uptodate.
<SymplecticEulerPhaseSpacePlot-eps-converted-to.pdf, id=101, 562.1pt x 421.575p
t>
File: SymplecticEulerPhaseSpacePlot-eps-converted-to.pdf Graphic file (type pdf
)
<use SymplecticEulerPhaseSpacePlot-eps-converted-to.pdf>
Package pdftex.def Info: SymplecticEulerPhaseSpacePlot-eps-converted-to.pdf use
d on input line 173.
(pdftex.def) Requested size: 232.52844pt x 174.39714pt.
Overfull \hbox (21.14012pt too wide) in paragraph at lines 173--174
[][]
[]
Package epstopdf Info: Source file: <ZoomedInSymplecticEulerPhaseSpacePlot.eps>
(epstopdf) date: 2012-12-25 18:56:45
(epstopdf) size: 28868 bytes
(epstopdf) Output file: <ZoomedInSymplecticEulerPhaseSpacePlot-eps-
converted-to.pdf>
(epstopdf) date: 2012-12-29 04:10:48
(epstopdf) size: 14165 bytes
(epstopdf) Command: <repstopdf --outfile=ZoomedInSymplecticEulerPha
seSpacePlot-eps-converted-to.pdf ZoomedInSymplecticEulerPhaseSpacePlot.eps>
(epstopdf) \includegraphics on input line 180.
Package epstopdf Info: Output file is already uptodate.
<ZoomedInSymplecticEulerPhaseSpacePlot-eps-converted-to.pdf, id=102, 562.1pt x
421.575pt>
File: ZoomedInSymplecticEulerPhaseSpacePlot-eps-converted-to.pdf Graphic file (
type pdf)
<use ZoomedInSymplecticEulerPhaseSpacePlot-eps-converted-to.pdf>
Package pdftex.def Info: ZoomedInSymplecticEulerPhaseSpacePlot-eps-converted-to
.pdf used on input line 180.
(pdftex.def) Requested size: 232.52844pt x 174.39714pt.
Overfull \hbox (21.14012pt too wide) in paragraph at lines 180--181
[][]
[]
Package epstopdf Info: Source file: <SymplecticEulerPlotofAnalytVsNumEnergy.eps
>
(epstopdf) date: 2012-12-25 18:52:44
(epstopdf) size: 96466 bytes
(epstopdf) Output file: <SymplecticEulerPlotofAnalytVsNumEnergy-eps
-converted-to.pdf>
(epstopdf) date: 2012-12-29 04:13:24
(epstopdf) size: 55425 bytes
(epstopdf) Command: <repstopdf --outfile=SymplecticEulerPlotofAnaly
tVsNumEnergy-eps-converted-to.pdf SymplecticEulerPlotofAnalytVsNumEnergy.eps>
(epstopdf) \includegraphics on input line 189.
Package epstopdf Info: Output file is already uptodate.
<SymplecticEulerPlotofAnalytVsNumEnergy-eps-converted-to.pdf, id=103, 562.1pt x
421.575pt>
File: SymplecticEulerPlotofAnalytVsNumEnergy-eps-converted-to.pdf Graphic file
(type pdf)
<use SymplecticEulerPlotofAnalytVsNumEnergy-eps-converted-to.pdf>
Package pdftex.def Info: SymplecticEulerPlotofAnalytVsNumEnergy-eps-converted-t
o.pdf used on input line 189.
(pdftex.def) Requested size: 232.52844pt x 174.39714pt.
Overfull \hbox (21.14012pt too wide) in paragraph at lines 189--190
[][]
[]
Package epstopdf Info: Source file: <ZoomedInSymplecticEulerPlotofAnalytVsNumEn
ergy.eps>
(epstopdf) date: 2012-12-25 18:53:09
(epstopdf) size: 50305 bytes
(epstopdf) Output file: <ZoomedInSymplecticEulerPlotofAnalytVsNumEn
ergy-eps-converted-to.pdf>
(epstopdf) date: 2012-12-29 04:13:25
(epstopdf) size: 20760 bytes
(epstopdf) Command: <repstopdf --outfile=ZoomedInSymplecticEulerPlo
tofAnalytVsNumEnergy-eps-converted-to.pdf ZoomedInSymplecticEulerPlotofAnalytVs
NumEnergy.eps>
(epstopdf) \includegraphics on input line 196.
Package epstopdf Info: Output file is already uptodate.
<ZoomedInSymplecticEulerPlotofAnalytVsNumEnergy-eps-converted-to.pdf, id=104, 5
62.1pt x 421.575pt>
File: ZoomedInSymplecticEulerPlotofAnalytVsNumEnergy-eps-converted-to.pdf Graph
ic file (type pdf)
<use ZoomedInSymplecticEulerPlotofAnalytVsNumEnergy-eps-converted-to.pdf>
Package pdftex.def Info: ZoomedInSymplecticEulerPlotofAnalytVsNumEnergy-eps-con
verted-to.pdf used on input line 196.
(pdftex.def) Requested size: 232.52844pt x 174.39714pt.
Overfull \hbox (21.14012pt too wide) in paragraph at lines 196--197
[][]
[]
Underfull \hbox (badness 10000) in paragraph at lines 152--202
[]
Underfull \hbox (badness 10000) in paragraph at lines 152--202
[]
Underfull \hbox (badness 10000) in paragraph at lines 152--202
[]
Underfull \hbox (badness 10000) in paragraph at lines 152--202
[]
[7 <./ExplicitEulerAnalytVsNumEnergyPlot-eps-converted-to.pdf>]
LaTeX Warning: `!h' float specifier changed to `!ht'.
LaTeX Warning: `!h' float specifier changed to `!ht'.
[8 <./SymplecticEulerPlotofAnalyVsNumSoln-eps-converted-to.pdf> <./ZoomedInSymp
lecticEulerPlotofAnalyVsNumSoln-eps-converted-to.pdf>] [9 <./SymplecticEulerPha
seSpacePlot-eps-converted-to.pdf> <./ZoomedInSymplecticEulerPhaseSpacePlot-eps-
converted-to.pdf> <./SymplecticEulerPlotofAnalytVsNumEnergy-eps-converted-to.pd
f> <./ZoomedInSymplecticEulerPlotofAnalytVsNumEnergy-eps-converted-to.pdf>]
Overfull \hbox (19.63268pt too wide) in paragraph at lines 204--204
[]\OT1/cmr/bx/n/17.28 Second-Order Meth-ods: Second-Order Ex-plicit Runge-
[]
Package epstopdf Info: Source file: <SecondOrderOde23PlotAnalyticVsNumerSoln.ep
s>
(epstopdf) date: 2012-12-25 18:00:36
(epstopdf) size: 1633609 bytes
(epstopdf) Output file: <SecondOrderOde23PlotAnalyticVsNumerSoln-ep
s-converted-to.pdf>
(epstopdf) date: 2012-12-29 04:30:50
(epstopdf) size: 1534641 bytes
(epstopdf) Command: <repstopdf --outfile=SecondOrderOde23PlotAnalyt
icVsNumerSoln-eps-converted-to.pdf SecondOrderOde23PlotAnalyticVsNumerSoln.eps>
(epstopdf) \includegraphics on input line 208.
Package epstopdf Info: Output file is already uptodate.
<SecondOrderOde23PlotAnalyticVsNumerSoln-eps-converted-to.pdf, id=179, 562.1pt
x 421.575pt>
File: SecondOrderOde23PlotAnalyticVsNumerSoln-eps-converted-to.pdf Graphic file
(type pdf)
<use SecondOrderOde23PlotAnalyticVsNumerSoln-eps-converted-to.pdf>
Package pdftex.def Info: SecondOrderOde23PlotAnalyticVsNumerSoln-eps-converted-
to.pdf used on input line 208.
(pdftex.def) Requested size: 317.08606pt x 237.81078pt.
Package epstopdf Info: Source file: <Ode23SecondOrderPhasePlanePortforSHO.eps>
(epstopdf) date: 2012-12-25 17:59:05
(epstopdf) size: 178251 bytes
(epstopdf) Output file: <Ode23SecondOrderPhasePlanePortforSHO-eps-c
onverted-to.pdf>
(epstopdf) date: 2012-12-29 04:30:52
(epstopdf) size: 107409 bytes
(epstopdf) Command: <repstopdf --outfile=Ode23SecondOrderPhasePlane
PortforSHO-eps-converted-to.pdf Ode23SecondOrderPhasePlanePortforSHO.eps>
(epstopdf) \includegraphics on input line 214.
Package epstopdf Info: Output file is already uptodate.
<Ode23SecondOrderPhasePlanePortforSHO-eps-converted-to.pdf, id=180, 562.1pt x 4
21.575pt>
File: Ode23SecondOrderPhasePlanePortforSHO-eps-converted-to.pdf Graphic file (t
ype pdf)
<use Ode23SecondOrderPhasePlanePortforSHO-eps-converted-to.pdf>
Package pdftex.def Info: Ode23SecondOrderPhasePlanePortforSHO-eps-converted-to.
pdf used on input line 214.
(pdftex.def) Requested size: 317.08606pt x 237.81078pt.
Package epstopdf Info: Source file: <SecondOrderOde23PlotofAnalytVsNumEnergy.ep
s>
(epstopdf) date: 2012-12-25 18:01:14
(epstopdf) size: 215557 bytes
(epstopdf) Output file: <SecondOrderOde23PlotofAnalytVsNumEnergy-ep
s-converted-to.pdf>
(epstopdf) date: 2012-12-29 04:30:53
(epstopdf) size: 329416 bytes
(epstopdf) Command: <repstopdf --outfile=SecondOrderOde23PlotofAnal
ytVsNumEnergy-eps-converted-to.pdf SecondOrderOde23PlotofAnalytVsNumEnergy.eps>
(epstopdf) \includegraphics on input line 220.
Package epstopdf Info: Output file is already uptodate.
<SecondOrderOde23PlotofAnalytVsNumEnergy-eps-converted-to.pdf, id=181, 562.1pt
x 421.575pt>
File: SecondOrderOde23PlotofAnalytVsNumEnergy-eps-converted-to.pdf Graphic file
(type pdf)
<use SecondOrderOde23PlotofAnalytVsNumEnergy-eps-converted-to.pdf>
Package pdftex.def Info: SecondOrderOde23PlotofAnalytVsNumEnergy-eps-converted-
to.pdf used on input line 220.
(pdftex.def) Requested size: 317.08606pt x 237.81078pt.
Underfull \hbox (badness 10000) in paragraph at lines 205--225
[]
Underfull \hbox (badness 10000) in paragraph at lines 205--225
[]
Underfull \hbox (badness 10000) in paragraph at lines 205--225
[]
[10 <./SecondOrderOde23PlotAnalyticVsNumerSoln-eps-converted-to.pdf>]
LaTeX Warning: `!h' float specifier changed to `!ht'.
[11 <./Ode23SecondOrderPhasePlanePortforSHO-eps-converted-to.pdf>] [12 <./Secon
dOrderOde23PlotofAnalytVsNumEnergy-eps-converted-to.pdf>]
Package epstopdf Info: Source file: <VelocityVerletPlotofAnalyVsNumSoln.eps>
(epstopdf) date: 2012-12-25 19:25:20
(epstopdf) size: 261293 bytes
(epstopdf) Output file: <VelocityVerletPlotofAnalyVsNumSoln-eps-con
verted-to.pdf>
(epstopdf) date: 2012-12-29 09:53:03
(epstopdf) size: 188204 bytes
(epstopdf) Command: <repstopdf --outfile=VelocityVerletPlotofAnalyV
sNumSoln-eps-converted-to.pdf VelocityVerletPlotofAnalyVsNumSoln.eps>
(epstopdf) \includegraphics on input line 282.
Package epstopdf Info: Output file is already uptodate.
<VelocityVerletPlotofAnalyVsNumSoln-eps-converted-to.pdf, id=224, 562.1pt x 421
.575pt>
File: VelocityVerletPlotofAnalyVsNumSoln-eps-converted-to.pdf Graphic file (typ
e pdf)
<use VelocityVerletPlotofAnalyVsNumSoln-eps-converted-to.pdf>
Package pdftex.def Info: VelocityVerletPlotofAnalyVsNumSoln-eps-converted-to.pd
f used on input line 282.
(pdftex.def) Requested size: 211.38832pt x 158.54051pt.
Package epstopdf Info: Source file: <ZoomedInVelocityVerletPlotofAnalytVsNumSol
n.eps>
(epstopdf) date: 2012-12-25 19:22:19
(epstopdf) size: 9132 bytes
(epstopdf) Output file: <ZoomedInVelocityVerletPlotofAnalytVsNumSol
n-eps-converted-to.pdf>
(epstopdf) date: 2012-12-29 09:53:04
(epstopdf) size: 8799 bytes
(epstopdf) Command: <repstopdf --outfile=ZoomedInVelocityVerletPlot
ofAnalytVsNumSoln-eps-converted-to.pdf ZoomedInVelocityVerletPlotofAnalytVsNumS
oln.eps>
(epstopdf) \includegraphics on input line 289.
Package epstopdf Info: Output file is already uptodate.
<ZoomedInVelocityVerletPlotofAnalytVsNumSoln-eps-converted-to.pdf, id=225, 562.
1pt x 421.575pt>
File: ZoomedInVelocityVerletPlotofAnalytVsNumSoln-eps-converted-to.pdf Graphic
file (type pdf)
<use ZoomedInVelocityVerletPlotofAnalytVsNumSoln-eps-converted-to.pdf>
Package pdftex.def Info: ZoomedInVelocityVerletPlotofAnalytVsNumSoln-eps-conver
ted-to.pdf used on input line 289.
(pdftex.def) Requested size: 211.38832pt x 158.54051pt.
Package epstopdf Info: Source file: <VelocityVerletPhaseSpacePlot.eps>
(epstopdf) date: 2012-12-25 19:25:45
(epstopdf) size: 1307852 bytes
(epstopdf) Output file: <VelocityVerletPhaseSpacePlot-eps-converted
-to.pdf>
(epstopdf) date: 2012-12-29 10:08:18
(epstopdf) size: 891339 bytes
(epstopdf) Command: <repstopdf --outfile=VelocityVerletPhaseSpacePl
ot-eps-converted-to.pdf VelocityVerletPhaseSpacePlot.eps>
(epstopdf) \includegraphics on input line 298.
Package epstopdf Info: Output file is already uptodate.
<VelocityVerletPhaseSpacePlot-eps-converted-to.pdf, id=226, 562.1pt x 421.575pt
>
File: VelocityVerletPhaseSpacePlot-eps-converted-to.pdf Graphic file (type pdf)
<use VelocityVerletPhaseSpacePlot-eps-converted-to.pdf>
Package pdftex.def Info: VelocityVerletPhaseSpacePlot-eps-converted-to.pdf used
on input line 298.
(pdftex.def) Requested size: 232.52844pt x 174.39714pt.
Overfull \hbox (21.14012pt too wide) in paragraph at lines 298--299
[][]
[]
Underfull \hbox (badness 7740) in paragraph at lines 299--299
[]\OT1/cmr/m/n/12 Figure 15: []Plot of the position-
[]
Package epstopdf Info: Source file: <ZoomedInVelocityVerletPhaseSpacePlot.eps>
(epstopdf) date: 2012-12-25 19:20:19
(epstopdf) size: 18484 bytes
(epstopdf) Output file: <ZoomedInVelocityVerletPhaseSpacePlot-eps-c
onverted-to.pdf>
(epstopdf) date: 2012-12-29 10:09:04
(epstopdf) size: 8681 bytes
(epstopdf) Command: <repstopdf --outfile=ZoomedInVelocityVerletPhas
eSpacePlot-eps-converted-to.pdf ZoomedInVelocityVerletPhaseSpacePlot.eps>
(epstopdf) \includegraphics on input line 305.
Package epstopdf Info: Output file is already uptodate.
<ZoomedInVelocityVerletPhaseSpacePlot-eps-converted-to.pdf, id=227, 562.1pt x 4
21.575pt>
File: ZoomedInVelocityVerletPhaseSpacePlot-eps-converted-to.pdf Graphic file (t
ype pdf)
<use ZoomedInVelocityVerletPhaseSpacePlot-eps-converted-to.pdf>
Package pdftex.def Info: ZoomedInVelocityVerletPhaseSpacePlot-eps-converted-to.
pdf used on input line 305.
(pdftex.def) Requested size: 232.52844pt x 174.39714pt.
Overfull \hbox (21.14012pt too wide) in paragraph at lines 305--306
[][]
[]
Package epstopdf Info: Source file: <VelocityVerletPlotofAnalytVsNumEnergy.eps>
(epstopdf) date: 2012-12-25 19:21:37
(epstopdf) size: 96507 bytes
(epstopdf) Output file: <VelocityVerletPlotofAnalytVsNumEnergy-eps-
converted-to.pdf>
(epstopdf) date: 2012-12-29 10:31:05
(epstopdf) size: 55810 bytes
(epstopdf) Command: <repstopdf --outfile=VelocityVerletPlotofAnalyt
VsNumEnergy-eps-converted-to.pdf VelocityVerletPlotofAnalytVsNumEnergy.eps>
(epstopdf) \includegraphics on input line 313.
Package epstopdf Info: Output file is already uptodate.
<VelocityVerletPlotofAnalytVsNumEnergy-eps-converted-to.pdf, id=228, 562.1pt x
421.575pt>
File: VelocityVerletPlotofAnalytVsNumEnergy-eps-converted-to.pdf Graphic file (
type pdf)
<use VelocityVerletPlotofAnalytVsNumEnergy-eps-converted-to.pdf>
Package pdftex.def Info: VelocityVerletPlotofAnalytVsNumEnergy-eps-converted-to
.pdf used on input line 313.
(pdftex.def) Requested size: 300.64291pt x 225.47928pt.
Underfull \hbox (badness 10000) in paragraph at lines 277--317
[]
Underfull \hbox (badness 10000) in paragraph at lines 277--317
[]
LaTeX Warning: `!h' float specifier changed to `!ht'.
[13 <./VelocityVerletPlotofAnalyVsNumSoln-eps-converted-to.pdf> <./ZoomedInVelo
cityVerletPlotofAnalytVsNumSoln-eps-converted-to.pdf>] [14 <./VelocityVerletPha
seSpacePlot-eps-converted-to.pdf> <./ZoomedInVelocityVerletPhaseSpacePlot-eps-c
onverted-to.pdf> <./VelocityVerletPlotofAnalytVsNumEnergy-eps-converted-to.pdf>
]
Overfull \hbox (15.21269pt too wide) in paragraph at lines 319--319
[]\OT1/cmr/bx/n/17.28 Fourth-Order Meth-ods: Fourth-Order Ex-plicit Runge-
[]
Package epstopdf Info: Source file: <FourthOrderOde45PlotofAnalytVsNumSoln.eps>
(epstopdf) date: 2012-12-25 18:25:44
(epstopdf) size: 6038848 bytes
(epstopdf) Output file: <FourthOrderOde45PlotofAnalytVsNumSoln-eps-
converted-to.pdf>
(epstopdf) date: 2012-12-29 04:37:32
(epstopdf) size: 8949029 bytes
(epstopdf) Command: <repstopdf --outfile=FourthOrderOde45PlotofAnal
ytVsNumSoln-eps-converted-to.pdf FourthOrderOde45PlotofAnalytVsNumSoln.eps>
(epstopdf) \includegraphics on input line 325.
Package epstopdf Info: Output file is already uptodate.
<FourthOrderOde45PlotofAnalytVsNumSoln-eps-converted-to.pdf, id=282, 562.1pt x
421.575pt>
File: FourthOrderOde45PlotofAnalytVsNumSoln-eps-converted-to.pdf Graphic file (
type pdf)
<use FourthOrderOde45PlotofAnalytVsNumSoln-eps-converted-to.pdf>
Package pdftex.def Info: FourthOrderOde45PlotofAnalytVsNumSoln-eps-converted-to
.pdf used on input line 325.
(pdftex.def) Requested size: 317.08606pt x 237.81078pt.
Package epstopdf Info: Source file: <FourthOrderOde45PhasePlanePlot.eps>
(epstopdf) date: 2012-12-25 18:14:12
(epstopdf) size: 1713122 bytes
(epstopdf) Output file: <FourthOrderOde45PhasePlanePlot-eps-convert
ed-to.pdf>
(epstopdf) date: 2012-12-29 04:37:35
(epstopdf) size: 996911 bytes
(epstopdf) Command: <repstopdf --outfile=FourthOrderOde45PhasePlane
Plot-eps-converted-to.pdf FourthOrderOde45PhasePlanePlot.eps>
(epstopdf) \includegraphics on input line 331.
Package epstopdf Info: Output file is already uptodate.
<FourthOrderOde45PhasePlanePlot-eps-converted-to.pdf, id=283, 562.1pt x 421.575
pt>
File: FourthOrderOde45PhasePlanePlot-eps-converted-to.pdf Graphic file (type pd
f)
<use FourthOrderOde45PhasePlanePlot-eps-converted-to.pdf>
Package pdftex.def Info: FourthOrderOde45PhasePlanePlot-eps-converted-to.pdf us
ed on input line 331.
(pdftex.def) Requested size: 317.08606pt x 237.81078pt.
Package epstopdf Info: Source file: <FourthOrderOde45AnalytVsNumEnergyPlot.eps>
(epstopdf) date: 2012-12-25 18:15:30
(epstopdf) size: 1582259 bytes
(epstopdf) Output file: <FourthOrderOde45AnalytVsNumEnergyPlot-eps-
converted-to.pdf>
(epstopdf) date: 2012-12-29 04:37:38
(epstopdf) size: 963564 bytes
(epstopdf) Command: <repstopdf --outfile=FourthOrderOde45AnalytVsNu
mEnergyPlot-eps-converted-to.pdf FourthOrderOde45AnalytVsNumEnergyPlot.eps>
(epstopdf) \includegraphics on input line 337.
Package epstopdf Info: Output file is already uptodate.
<FourthOrderOde45AnalytVsNumEnergyPlot-eps-converted-to.pdf, id=284, 562.1pt x
421.575pt>
File: FourthOrderOde45AnalytVsNumEnergyPlot-eps-converted-to.pdf Graphic file (
type pdf)
<use FourthOrderOde45AnalytVsNumEnergyPlot-eps-converted-to.pdf>
Package pdftex.def Info: FourthOrderOde45AnalytVsNumEnergyPlot-eps-converted-to
.pdf used on input line 337.
(pdftex.def) Requested size: 317.08606pt x 237.81078pt.
Underfull \hbox (badness 10000) in paragraph at lines 320--342
[]
Underfull \hbox (badness 10000) in paragraph at lines 320--342
[]
Underfull \hbox (badness 10000) in paragraph at lines 320--342
[]
Underfull \hbox (badness 10000) in paragraph at lines 320--342
[]
Underfull \hbox (badness 10000) in paragraph at lines 320--342
[]