-
Notifications
You must be signed in to change notification settings - Fork 0
/
INDEX
9632 lines (9632 loc) · 168 KB
/
INDEX
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
#[environment 12]
*environment*
find-path
let&
#[environment 13]
%make-manifold-point
&angular
*
*environment*
*saved-environment-values*
+
-
->H-state
->L-state
->local
->state
/
|1form-field->basis-components|
|1form-field->components|
|1form-field->vector-field|
|1form-field-procedure|
|1form-field?|
|3vector-components->antisymmetric|
|4tuple->ct|
|4tuple->space|
:g
:l_sun
:m_sun
:q
:r_sun
<
<=
<manifold-point>
=
>
>=
Alt
C->Cp
Cartan->Cartan-over-map
Cartan->Christoffel
Cartan->basis
Cartan->forms
Cartan-transform
Cartan?
Christoffel->Cartan
Christoffel->basis
Christoffel->symbols
Christoffel?
D
D-as-matrix
D-phase-space
Dt
Dt-procedure
Euler->M
Euler->omega
Euler->omega-body
Euler-Lagrange-operator
Euler-angles
Euler-chart
Euler-state->L-body
Euler-state->L-space
Euler-state->omega-body
F->C
F->CH
F->CT
F->K
GMsun
Gamma
Gamma-bar
Gram-Schmidt
H->Hp
H-state->matrix
H-state?
Hamilton-equations
Hamiltonian->Lagrangian
Hamiltonian->Lagrangian-procedure
Hamiltonian->state-derivative
Hodge-star
Hpendulum
Hstate->Lstate
I
J-func
J-matrix
Jacobian
L-body
L-body-Euler
L-space
L-space-Euler
LE
Lagrange-equations
Lagrange-equations-1
Lagrange-equations-first-order
Lagrange-equations-operator
Lagrange-interpolation-function
Lagrangian->Hamiltonian
Lagrangian->Hamiltonian-procedure
Lagrangian->Routhian
Lagrangian->acceleration
Lagrangian->energy
Lagrangian->power-loss
Lagrangian->state-derivative
Lagrangian-action
Lagrangian-state->Routhian-state
Laplacian
Legendre-transform
Legendre-transform-procedure
Lie-D
Lie-derivative
Lie-transform
Lstate->Hstate
M->omega
M->omega-body
M-of-q->omega-body-of-t
M-of-q->omega-of-t
Noether-integral
P
Phi
Phi*
Poisson-bracket
Q
Qdot
Qdotdot
R1
R1-rect
R2
R2-polar
R2-rect
R3
R3-cyl
R3-rect
R3-spherical
R4
R4-cyl
R4-rect
R^n
R^n-type
Ricci
Riemann
Riemann-curvature
Routh-equations
Routh-equations-bad
Routhian->acceleration
Routhian->acceleration-bad
Routhian->state-derivative
Routhian-state->Lagrangian-state
Rx
Rx-matrix
Ry
Ry-matrix
Rz
Rz-matrix
S1
S1-circular
S1-gnomic
S1-slope
S1-tilted
S2
S2-Riemann
S2-gnomic
S2-metric
S2-spherical
S2-stereographic
S2-tilted
S2p
S2p-Riemann
S2p-gnomic
S2p-spherical
S2p-stereographic
S2p-tilted
S3
S3-gnomic
S3-spherical
S3-stereographic
S3-tilted
SO3
SO3-type
SR-coordinates?
SR-name
S^2
S^2-coordinates
S^2-type
S^n
S^n-coordinates
S^n-gnomic
S^n-stereographic
S^n-type
T-body
T-body-Euler
T-func
T-quaternion-state
T-rigid-body
Taylor-series-coefficients
abs
acceleration
acceleration-tuple
accelerations
acos
acosh
add-v/cs
add-velocities
alternate-angles
alternate-chart
angle
angle&axis->rotation-matrix
anticommutator
antisymmetric->column-matrix
apply
arg-scale
arg-shift
argument-types
arity
asin
asinh
atan
atanh
attach-coordinate-system
attach-patch
background-temperature
base-frame-chart
base-frame-point
basis->1form-basis
basis->basis-over-map
basis->coordinate-system
basis->dimension
basis->vector-basis
basis-components->1form-field
basis-components->vector-field
basis?
boost-direction
c:generate
c:lookup
canonical-H?
canonical-K?
canonical-transform?
canonical?
chart
clip
clip-state
commutator
compatible-H-state?
completely-antisymmetric
components->1form-field
components->metric
components->vector-field
compose
compositional-canonical?
conjugate
constant-manifold-function
contract
coordinate
coordinate-basis-1form-field
coordinate-basis-1form-field-procedure
coordinate-basis-vector-field
coordinate-basis-vector-field-procedure
coordinate-basis?
coordinate-origin
coordinate-reps
coordinate-system
coordinate-system->1form-basis
coordinate-system->Lame-coefficients
coordinate-system->basis
coordinate-system->inverse-metric
coordinate-system->metric
coordinate-system->metric-components
coordinate-system->orthonormal-vector-basis
coordinate-system->vector-basis
coordinate-system-at
coordinate-system-dimension
coordinate-tuple
coordinates
coordinates->event
coordinatize
corresponding-velocities
cos
cosh
cot
count-occurrences
covariant-derivative
covariant-derivative-argument-types
covariant-derivative-form
covariant-derivative-function
covariant-derivative-ordinary
covariant-derivative-vector
covariant-differential
cross-product
csc
csch
cube
curl
curvature-components
d
d->dms
declare-argument-types!
declare-index-types!
degrees->radians
degrees-of-freedom
derivative
determinant
differential
differential-of-function
differential-of-map
diffop-name
dimension
divergence
dms->d
dms->radians
dot-product
drop1
drop2
earth-escape-velocity
earth-gravitational-acceleration
earth-incident-sunlight
earth-mass
earth-mean-density
earth-orbital-velocity
earth-radius
earth-surface-area
earth-surface-temperature
embedding-map->metric-components
event->coordinates
evolution
exp
exp10
exp2
expt
extended-rotation
exterior-derivative
exterior-derivative-procedure
ff:zero
ff:zero-like
ff:zero?
find-invariant-curve
find-path
fixed-point-eigen
flow-derivative
flow-transform
form-field->form-field-over-map
form-field?
frame?
function->1form-field
gcd
general-boost
general-boost2
generalized-LE
geodesic-equation
get-coordinate-rep
get-coordinates
get-rank
gradient
gudermannian
h->hms
has-argument-types?
has-index-types?
hms->h
hms->radians
hours->radians
i:contract
i:outer-product
identity-like
identity?
imag-part
index-types
indexed->typed
inexact?
install-coordinates
interior-product
inverse-gudermannian
invert
lagrange
linear-function->multiplier
linear-interpolants
list-with-inserted-coord
literal-1form-field
literal-Cartan
literal-Christoffel-1
literal-Christoffel-2
literal-Christoffel-names
literal-Hamiltonian-state
literal-Lagrangian-state
literal-field
literal-manifold-function
literal-manifold-map
literal-metric
literal-scalar-field
literal-vector-field
local-state-derivative
log
log10
log2
lower
m:antisymmetric?
magnitude
make-4tuple
make-Cartan
make-Christoffel
make-Christoffel-1
make-Hamiltonian
make-Lagrangian
make-SR-coordinates
make-SR-frame
make-basis
make-constant-vector-field
make-linear-interpolator
make-manifold
make-manifold-point
make-metric
make-path
make-polar
make-rectangular
manifold-function-cofunction?
manifold-point-representation
manifold-point?
matrix->H-state
maybe-simplify-coeff-functions
memoized-simplify
metric->Christoffel-1
metric->Christoffel-2
metric->components
metric->connection-1
metric->connection-2
metric->inverse-components
metric-over-map
metric:invert
momenta
momentum
momentum-tuple
multiplicative-transpose
my-manifold-point?
negate
one-like
one-manifold-function
one-manifold-function?
one?
orthonormalize
osculating-path
outer-product
p->r
parallel-transport-equation
parametric-path-action
parsec
partial
partial-derivative
patch
path->state-path
pendulum-Hamiltonian
pendulum-advance
pendulum-circulating-aa-state-to-state
pendulum-circulating-action
pendulum-circulating-action-to-E
pendulum-circulating-angle
pendulum-circulating-angular-momentum
pendulum-circulating-dt
pendulum-circulating-frequency
pendulum-circulating-phase
pendulum-circulating-state-to-aa-state
pendulum-f
pendulum-frequency
pendulum-g
pendulum-global-aa-state-to-state
pendulum-integration
pendulum-inverse-f
pendulum-inverse-g
pendulum-oscillating-aa-state-to-state
pendulum-oscillating-action
pendulum-oscillating-action-to-E
pendulum-oscillating-angle
pendulum-oscillating-angular-momentum
pendulum-oscillating-dt
pendulum-oscillating-frequency
pendulum-oscillating-phase
pendulum-oscillating-state-to-aa-state
pendulum-separatrix-action
pendulum-separatrix-angle
pendulum-separatrix-angular-momentum
pendulum-state-to-global-aa-state
pendulum-sysder
phase-space-derivative
point
point->manifold
polar->rectangular
polar-canonical
polar-canonical-inverse
pressure@stp
procedure->1form-field
procedure->nform-field
procedure->vector-field
proper-space-interval
proper-time-interval
pullback
pullback-form
pullback-function
pullback-vector-field
pushforward-function
pushforward-vector
qp->H-state-path
qp-canonical?
qp-submatrix
quaternion-state->omega-body
quaternion-state->omega-space
qv->local-path
qw-state->L-body
qw-state->L-space
r->p
r->s
radially-mapping-points
radians->degrees
radians->dms
radians->hms
radians->hours
raise
raise1
raise2
rank->arity
real-part
rectangular->polar
rectangular->spherical
ref
relative-error
room-temperature
rotate-x
rotate-x-2
rotate-x-matrix
rotate-x-matrix-2
rotate-x-tuple
rotate-x-tuple-2
rotate-y
rotate-y-2
rotate-y-matrix
rotate-y-matrix-2
rotate-y-tuple
rotate-y-tuple-2
rotate-z
rotate-z-2
rotate-z-matrix
rotate-z-matrix-2
rotate-z-tuple
rotate-z-tuple-2
s->r
s:sigma
s:sigma/l
s:sigma/r
s:sigma/r/l
sec
sech
set-coordinate-reps!
sharpen
shift-t
sigma
simplify-coeff-function
simplify-coeff-functions?
simplify-numerical-expression
sin
sinh
size
solve-linear
solve-linear-left
solve-linear-right
sound-speed@stp
spacetime
spacetime-rect
spacetime-sphere
specify-manifold
speed-of-light
spherical->rectangular
sqrt
square
state->n-dof
state->p
state->q
state->qddot
state->qdot
state->qp
state->t
structure->typed
structure-constant
sun-luminosity
sun-mass
sun-radius
sun-rotation-period
sun-surface-temperature
symmetrize-Cartan
symmetrize-Christoffel
symplectic-matrix?
symplectic-transform?
symplectic-two-form
symplectic-unit
symplectic?
tan
tanh
tensor-product2
tensor-test
the-ether
the-real-line
time
time-independent-canonical?
torsion
torsion-vector
trace
trace2down
trace2up
transfer-point
transpose
transpose-function
triangle-iterate
trim-last-argument
two-particle-center-of-mass
two-particle-center-of-mass-canonical
type
type-predicate
typed->indexed
typed->structure
typical-coords
typical-point
uninstall-coordinates
unit-convert
unstable-manifold
v/c
vector->vector-constructor
vector-basis->dual
vector-field->1form-field
vector-field->basis-components
vector-field->components
vector-field->vector-field-over-map
vector-field-procedure
vector-field?
velocities
velocity
velocity-tuple
vf:zero
vf:zero-like
vf:zero?
vol@stp
w2
water-boiling-temperature
water-freezing-temperature
wcross->w
wedge
wedge2
which-way?
with-incremental-simplifier
x->xms
xms->x
zero-coordinate-function
zero-like
zero-manifold-function
zero-manifold-function?
zero?
#[package 14 (user)]
%append
%copy-lam-1
%copy-lam-2
%copy-node-1
%copy-node-2
%expression/bind
%expression/copy
%expression/equal?
%make-stack&queue
%map
%map-1
%map-2
%reverse
%reverse!
%table+/make
%table/make
%unify-1
%unify-2
&
&AU
&E
&G
&M
&P
&T
&a
&ere
&and
&arcsec
&atto
&becquerel
&c
&calorie
&candela
¢i
¢imeter
&coulomb
&d
&da
&day
&deci
°ree
&deka
&dyne
&esu
&ev
&exa
&f
&farad
&femto
&foot
&giga
&gram
&gray
&h
&hecto
&henry
&hertz
&hour
&inch
&joule
&k
&katal
&kelvin
&kilo
&kilogram
&lumen
&lux
&ly
&m
&mega
&meter
µ
&mile
&milli
&minute
&mole
&n
&nano
&newton
&ohm
&or
&p
&pascal
&pc
&peta
&pico
£
&radian
&second
&sidereal-year
&siemens
&sievert
&slug
&steradian
&tera
&tesla
&u
&unitless
&volt
&watt
&weber
&year
*$fpf
*$poly
*$rcf
*active-tags*
*allow-warnings?*
*allowable-roundoffs*
*allowing-incompatible-multiplication*
*alpha-rename-lazily?*
*and
*associations*
*assumption-tolerance-multiplier*
*at-least-one*
*at-least-three*
*at-least-two*
*at-least-zero*
*auditing-memoizers*
*background-color*
*birkholz*
*bisect-break*
*bisect-error?*
*bisect-wallp*
*can-use-colors*
*careful-conversion*
*compile-integrand?
*compiled-sysder-table*
*compiled-sysder-table-size*
*compiler-simplifier*
*compiling-sysder?
*complete-solutions*
*conjugate-transparent-operators*
*constants*
*contract-order*
*corrector-convergence-margin*
*default-advancer-tolerance*
*definite-integral-allowable-error*
*dense-break-even*
*divide-out-terms*
*down*
*enable-generic-apply*
*enable-literal-apply*
*environment*
*euclid-breakpoint-arity*
*exactly-one*
*exactly-three*
*exactly-two*
*exactly-zero*
*factoring*
*first-step-scale*
*fixed-point-wallpaper*
*foreground-color*
*frame-height*
*frame-width*
*frame-x-position*
*frame-y-position*
*frequency-domain-sampling-interval*
*frequency-half-width*
*function*
*gcd-cut-losses*
*gcd-hit*
*gcd-memoizer-enabled*
*gcd-miss*
*gear-damping*
*gear-dead-zone-high*
*gear-dead-zone-low*
*gear-decrease-order*
*gear-error-too-big*
*gear-fixed-point-failure-contraction*
*gear-fixed-point-margin*
*gear-max-order*
*gear-max-step-increase*
*gear-min-order*
*gear-order-refractory-period*
*gear-protect*
*gear-step-refractory-period*
*generic-operator-table*
*global-env*
*global-lam*
*global-vars*
*gnuplotting*
*heuristic-numbers*
*heuristic-sparse-gcd-bad-decision*
*heuristic-sparse-gcd-enabled*
*heuristic-sparse-gcd-lose*
*heuristic-sparse-gcd-trials*
*heuristic-sparse-gcd-win*
*important-numbers*
*improper-integral-breakpoint*
*independent-variable-tolerance*
*infinities*
*inhibit-expt-simplify*
*integrate-n*
*integrate-series
*interpolate-primes-stream*
*interpolate-size*
*interpolate-skeleton-using-vandermonde*
*kahan-threshold*
*kahan-wallp*
*kernel-operator-table*
*known-reals*
*last-compiled-result
*last-expression-printed*
*last-expression-to-compiler
*last-notes*
*last-notes-shown*
*last-state*
*literal-reconstruction*
*machine-epsilon*
*matrix*
*max-compiled-sysder-table-size*
*max-tableau-depth*
*max-tableau-width*
*memoizers*
*memoizing-sysder*
*minimum-allowable-full-pivot*
*minimum-allowable-gj-pivot*
*multiplier-names*
*new-bs-steps*
*no-rationals-in-divide*
*no-value*
*norm-breakpoint*
*not-seen*
*notes*
*nsamples*
*ntraces*
*number*
*number-of-calls-to-fail*
*numbers-are-constant-functions*
*numerical-constants*
*ode-integration-method*
*one-or-two*
*only-printing*
*opaque-procedure-table*
*operators*
*or
*outstanding-contradictions*
*permissive-units*
*progress-monitor*
*qc-2halfsteps-reduction-factor*
*qc-damping*
*qc-fullstep-reduction-factor*
*qc-halfstep-reduction-factor*
*qc-press*
*qc-trigger-point*
*qc-wallp?
*qc-zero-protect*
*quad-epsilon*
*quadrature-neighborhood-width*
*recompute-input-sets?*
*reverse-associations*
*roundoff-cutoff*
*samritchie-memoizing*
*scope-left-edge*
*scope-top-edge*
*search-schedule*
*sgcd-restart-limit*
*sgcd-stage-limit*
*sgcd-tuning*
*sgcd-wallp*
*showing-notes*
*spice-good-step*
*spice-order-too-big*
*spice-order-too-small*
*spice-step-expansion*
*spice-step-reduction*
*spice-step-too-big*
*spice-step-too-small*
*sqrt-machine-epsilon*
*standard-operators*
*structure-unparse-level*
*suppressed-argument-list*
*suppressed-argument-list-counter*
*t
*taking-notes*
*the-scope*
*time-domain-sampling-interval*
*time-half-width*
*time-tolerance*
*time-upper-limit*
*top-level*
*trace-height-pixels*
*trace-separation-pixels*
*trace-shrink*
*trace-width-pixels*
*ugcd-testing*
*ugcd-wallp*
*underdetermined-solutions*
*unit-constructor*
*units
*up*
*vector*
*vector-fixed-point-iteration-loss*
*vector-fixed-point-ridiculously-large*
*warn-body?*
*with-extra-equations*
*with-residual-equations*
*with-tough-equations*
*zero-threshold*
+$fpf
+$poly
+$rcf
+b
-$fpf
-$poly
-$rcf
-2pi
->
->expression
->flonum
->graph
->poisson-form
->quad
-b
-one
-pi
-pi/2
-pi/3
-pi/4
-pi/6
/$rcf
/t
/units
|10log10|
|2-down?|
|2-tensor?|
|2-up?|
|2/pi|
|20log10|
|2d-show-expression|
|2pi|
|2x|
|3pi/4|
|4x4->quaternion|
:+2pi
:+infinity
:+pi
:+pi/2
:+pi/3
:+pi/4
:+pi/6
:-2pi
:-infinity
:-one
:-pi
:-pi/2
:-pi/3
:-pi/4
:-pi/6
:2pi
:F