-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathasclKeywords.txt
3393 lines (3393 loc) · 75.7 KB
/
asclKeywords.txt
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
# awk -F: '{printf("%s:%s\n",$1,$2)}' ~/Downloads/ascl2.txt |awk '{if(NF==2) print $0; else printf("# %s\n",$0)}' > asclKeywords.txt
# see also https://ascl.net/code/utility/ascl2 (need to be adm)
# ASCL ID Title:
ascl:9903.001 LENSKY
ascl:9904.001 BSGMODEL
ascl:9905.001 CONSKY
ascl:9905.002 ICOSAHEDRON
ascl:9906.001 SLOPES
ascl:9906.002 EXTINCT
ascl:9909.001 PMCode
ascl:9909.002 ANGSIZ
ascl:9909.003 ISIS
ascl:9909.004 CMBFAST
ascl:9909.005 BLOCK
ascl:9910.001 Cloudy
ascl:9910.002 SPECTRUM
ascl:9910.003 FASTELL
ascl:9910.004 COSMICS
ascl:9910.005 XSPEC
ascl:9910.006 BHSKY
ascl:9910.007 WINGSPAN
ascl:9910.008 XSTAR
ascl:9910.009 RADPACK
ascl:9911.001 DUSTY
ascl:9911.002 IRAF
ascl:9911.003 AIPS
ascl:9911.004 CHIANTI
ascl:9912.001 SPH_1D
ascl:9912.002 FTOOLS
# ascl:9912.003 RVSAO 2.0
ascl:9912.003 RVSAO
ascl:0003.001 GADGET-2
ascl:0003.002 SAOImage DS9:
ascl:0003.002 SAOImage
ascl:0003.002 DS9
ascl:0008.001 DDSCAT
ascl:0008.002 RATRAN
ascl:0011.001 StarFinder
ascl:0101.001 MILLISEARCH
ascl:0104.001 MLAPM
ascl:0104.002 CSENV
ascl:0202.001 PopRatio
ascl:1004.001 GIM2D
ascl:1007.001 PINTofALE
ascl:1007.002 INFALL
ascl:1007.003 GEMINI
ascl:1007.004 CMBEASY
# ascl:1007.005 Arcetri Spectral Code for Thin Plasmas
ascl:1007.006 AMIGA
ascl:1010.001 CFITSIO
ascl:1010.002 fpack
ascl:1010.003 AMBER
ascl:1010.004 Needatool
# ascl:1010.005 Particle module of Piernik MHD code
ascl:1010.006 DSPSR
ascl:1010.007 JAVELIN
ascl:1010.008 midIR_sensitivity
ascl:1010.009 ModeCode
# ascl:1010.010 Fast WMAP Likelihood Code and GSR PC Functions
ascl:1010.011 PSpectRe
ascl:1010.012 glafic
ascl:1010.013 AstroGK
ascl:1010.014 Athena
# ascl:1010.015 Fyris Alpha
ascl:1010.016 SpDust
ascl:1010.017 AOFlagger
# ascl:1010.018 Emu CMB
ascl:1010.019 NBSymple
ascl:1010.020 Libpsht
ascl:1010.021 velfit
ascl:1010.022 GR1D
ascl:1010.023 AstroSim
ascl:1010.024 ADAPTSMOOTH
ascl:1010.025 SimFast21
ascl:1010.026 SingLe
ascl:1010.027 SNANA
ascl:1010.028 GALPROP
ascl:1010.029 DNEST
ascl:1010.030 CosmicEmu
ascl:1010.031 DimReduce
# ascl:1010.032 Extreme Deconvolution
# ascl:1010.033 GALEV Evolutionary Synthesis Models
ascl:1010.033 GALEV
ascl:1010.034 iCosmo
ascl:1010.035 SLR
ascl:1010.036 Montage
ascl:1010.037 FastChi
# ascl:1010.038 Low Resolution Spectral Templates For AGNs and Galaxies From 0.03 -- 30 microns
# ascl:1010.039 Parameter Estimation from Time-Series Data with Correlated Errors
# ascl:1010.040 Cosmic String Simulations
# ascl:1010.041 FASTLens (FAst STatistics for weak Lensing)
ascl:1010.041 FASTLens
ascl:1010.042 WeightMixer
ascl:1010.043 FSPS
ascl:1010.044 MAESTRO
ascl:1010.045 PLUTO
ascl:1010.046 indexf
# ascl:1010.047 ISW and Weak Lensing Likelihood Code
ascl:1010.048 OCTGRAV
# ascl:1010.049 Gas-momentum-kinetic SZ cross-correlations
ascl:1010.050 LensPerfect
ascl:1010.051 NEMO
ascl:1010.052 EAZY
# ascl:1010.053 Halofitting codes for DGP and Degravitation
ascl:1010.054 MagnetiCS.c
ascl:1010.055 SYNOW
ascl:1010.056 PHOENIX
# ascl:1010.057 Tiny Tim
ascl:1010.057 TinyTim
ascl:1010.058 VINE
ascl:1010.059 CESAM
ascl:1010.060 Pencil
ascl:1010.061 EyE
ascl:1010.062 MissFITS
ascl:1010.063 SCAMP
ascl:1010.064 SExtractor
# ascl:1010.065 Higher Post Newtonian Gravity Calculations
ascl:1010.066 SkyMaker
ascl:1010.067 Stuff
ascl:1010.068 SWarp
ascl:1010.069 WeightWatcher
ascl:1010.070 Fisher.py
ascl:1010.071 WSHAPE
ascl:1010.072 Enzo
ascl:1010.073 partiview
ascl:1010.074 StarCrash
ascl:1010.075 Radex
ascl:1010.076 Starlab
ascl:1010.077 LAMDA
ascl:1010.078 AstroMD
ascl:1010.079 Geant4
ascl:1010.080 GRACOS
ascl:1010.081 MGGPOD
ascl:1010.082 FLASH
ascl:1010.083 MESA
ascl:1010.084 WhiskyMHD
# ascl:1010.085 Network Tools for Astronomical Data Retrieval
# ascl:1011.001 Identikit 1
ascl:1011.001 Identikit
ascl:1011.002 DAOSPEC
ascl:1011.003 ZPEG
ascl:1011.004 MARS
# ascl:1011.005 Shape of Cosmic String Loops
ascl:1011.006 DAME
ascl:1011.007 RAMSES
ascl:1011.008 Binsim
ascl:1011.009 DRAGON
# ascl:1011.010 Global Sky Model (GSM)
ascl:1011.011 turboGL
ascl:1011.012 DEFROST
ascl:1011.013 EasyLTB
ascl:1011.014 CO5BOLD
ascl:1011.015 Geokerr
# ascl:1011.016 Non-LTE Models and Theoretical Spectra of Accretion Disks in Active Galactic Nuclei. III. Integrated Spectra for Hydrogen-Helium Disks
# ascl:1011.017 Occultation and Microlensing
# ascl:1011.018 Transit of a Spherical Planet of a Stellar Chromosphere which is Geometrically Thin
ascl:1011.019 FLY
ascl:1011.020 VisIVO
ascl:1011.021 GRALE
ascl:1011.022 yt
ascl:1011.023 HyRec
# ascl:1101.001 Second-order Tight-coupling Code
# ascl:1101.002 NDSPMHD Smoothed Particle Magnetohydrodynamics Code
ascl:1101.002 NDSPMHD
ascl:1101.003 IGMtransfer
ascl:1101.004 InterpMC
ascl:1101.005 CMHOG
ascl:1101.006 NIRVANA
ascl:1101.007 Galaxia
ascl:1101.008 CRASH
ascl:1101.009 MasQU
ascl:1101.010 TOPCAT
ascl:1102.001 N-MODY
ascl:1102.002 PBL
ascl:1102.003 GRAVLENS
ascl:1102.004 LENSTOOL
ascl:1102.005 MRLENS
# ascl:1102.006 NBODY Codes
ascl:1102.006 NBODY
ascl:1102.007 PixeLens
ascl:1102.008 PMFAST
ascl:1102.009 AHF
ascl:1102.010 SEREN
# ascl:1102.011 Identikit 2
ascl:1102.012 CPROPS
ascl:1102.013 Cactus
# ascl:1102.014 Einstein Toolkit for Relativistic Astrophysics
ascl:1102.015 PMFASTIC
ascl:1102.016 HERACLES
ascl:1102.017 FARGO
ascl:1102.018 Karma
ascl:1102.019 HOP
ascl:1102.020 SKID
ascl:1102.021 DIRT
ascl:1102.022 PDRT
ascl:1102.023 21cmFAST
ascl:1102.024 DiFX2
ascl:1102.025 LensPix
ascl:1102.026 CAMB
ascl:1102.027 ZENO
ascl:1102.028 ZEUS-MP/2
ascl:1103.001 Difmap
ascl:1103.002 PGPLOT
ascl:1103.003 S2PLOT
ascl:1103.004 SPLASH
ascl:1103.005 Splotch
# ascl:1103.006 GLESP 2.0
ascl:1103.006 GLESP
ascl:1103.007 VisIt
# ascl:1103.008 Parallel HOP
ascl:1103.009 SPHRAY
ascl:1103.010 Hydra
ascl:1103.011 AP3M
ascl:1103.012 Pyflation
ascl:1103.014 ParaView
ascl:1103.015 Cloudy_3D
ascl:1104.001 TomograPy
ascl:1104.002 AstroBEAR
ascl:1104.003 Starburst99
ascl:1104.004 MASSCLEAN
ascl:1104.005 GALAXEV
ascl:1104.006 LECTOR
ascl:1104.007 ULySS
ascl:1104.008 Rmodel
ascl:1104.009 r-Java
ascl:1104.010 GALFIT
ascl:1104.011 DAOPHOT
ascl:1104.012 CHIWEI
ascl:1104.013 BEARCLAW
# ascl:1104.014 A Correction to the Standard Galactic Reddening Map
ascl:1105.001 STILTS
ascl:1105.002 PACCE
# ascl:1105.003 The DTFE public software
ascl:1105.003 DTFE
ascl:1105.004 SLiM
ascl:1105.005 ChaNGa
ascl:1105.006 SPARC
# ascl:1105.007 Sunspot Models
# ascl:1105.008 Flux Tube Model
# ascl:1105.009 Ray Tracing Codes
ascl:1105.010 CASTRO
ascl:1105.011 Ganalyzer
ascl:1105.012 Stagger
# ascl:1105.013 CAMB Sources
ascl:1105.014 PSRCHIVE
ascl:1106.001 AlterBBN
ascl:1106.002 PHOEBE
ascl:1106.003 PLplot
ascl:1106.004 E3D
ascl:1106.005 R3D
ascl:1106.006 MECI
ascl:1106.007 MIRIAD
ascl:1106.008 GRAFIC-2
# ascl:1106.009 PARAMESH V4.1
ascl:1106.010 MAGPHYS
ascl:1106.011 DRAGON
ascl:1106.012 SLUG
ascl:1106.013 MGCAMB
# ascl:1106.014 Transit Analysis Package (TAP and autoKep)
ascl:1106.015 OrbFit
ascl:1106.016 Nightfall
ascl:1106.017 CAOS
# ascl:1106.018 CMB B-modes from Faraday Rotation
# ascl:1106.019 Application of Compressive Sampling to Radio Astronomy I
ascl:1106.020 CLASS
ascl:1106.021 StringFast
ascl:1106.022 MPI-Defrost
ascl:1106.023 CMBACT
ascl:1106.024 ELMAG
ascl:1106.025 CosmoMC
ascl:1106.026 RECFAST
ascl:1107.001 SNID
ascl:1107.002 GIBIS
ascl:1107.003 FITSManager
# ascl:1107.004 Flexible DM-NRG
ascl:1107.005 Sherpa
ascl:1107.006 AIRES
ascl:1107.007 AMUSE
ascl:1107.008 STARS
ascl:1107.009 REAS3
ascl:1107.010 XDSPRES
ascl:1107.011 ARCHANGEL
ascl:1107.012 LIME
ascl:1107.013 CASA
ascl:1107.014 Clumpfind
ascl:1107.015 McLuster
ascl:1107.016 SIGPROC
ascl:1107.017 PRESTO
ascl:1107.018 HEALPix
ascl:1107.019 PSRPOP
ascl:1108.001 IMCAT
ascl:1108.002 SHERA
# ascl:1108.003 WCSLIB and PGSBOX
ascl:1108.003 WCSLIB
ascl:1108.003 PGSBOX
ascl:1108.004 Galacticus
ascl:1108.005 Gaepsi
ascl:1108.006 STARLIGHT
ascl:1108.007 PÉGASE
ascl:1108.008 PÉGASE-HR
ascl:1108.009 LePHARE
ascl:1108.010 Hyperz
ascl:1108.011 BPZ
ascl:1108.012 TITAN
ascl:1108.013 STELLA
ascl:1108.014 RADICAL
ascl:1108.015 DISKSTRUCT
ascl:1108.016 RADMC
ascl:1108.017 SHELLSPEC
ascl:1108.018 STECKMAP
ascl:1108.019 BOREAS
ascl:1109.001 PySpecKit
ascl:1109.002 ADIPLS
ascl:1109.003 SKIRT
ascl:1109.004 HAZEL
ascl:1109.005 PolSpice
ascl:1109.006 MultiNest
ascl:1109.007 SuperBayeS
# ascl:1109.008 Multipole Vectors
ascl:1109.009 CMBquick
ascl:1109.010 PyModelFit
ascl:1109.011 GalactICS
ascl:1109.012 EnBiD
ascl:1109.013 CULSP
# ascl:1109.014 Supernova Flux-averaging Likelihood Code
ascl:1109.015 WCSTools
ascl:1109.016 aXe
ascl:1109.017 IRDR
ascl:1109.018 GIPSY
ascl:1109.019 SkyCat
ascl:1109.020 CMFGEN
ascl:1109.021 TLUSTY
ascl:1109.022 Synspec
ascl:1109.023 MOKA
ascl:1109.024 Jupiter
ascl:1110.001 analytic_infall
ascl:1110.002 DarkSUSY
ascl:1110.003 iGalFit
ascl:1110.004 SHTOOLS
ascl:1110.005 ZEBRA
ascl:1110.006 STIFF
ascl:1110.007 GammaLib
ascl:1110.008 Glnemo2
ascl:1110.009 AAOGlimpse
ascl:1110.010 MOCASSIN
ascl:1110.011 Pacerman
ascl:1110.012 Starlink
ascl:1110.013 S2HAT
ascl:1110.014 pureS2HAT
ascl:1110.015 atlant
ascl:1110.016 REBOUND
ascl:1110.017 POWMES
ascl:1110.018 MADmap
ascl:1110.019 CosmoNest
ascl:1110.020 CROSS_CMBFAST
ascl:1110.021 Univiewer
ascl:1110.022 simple_cosfitter
ascl:1110.023 SiFTO
# ascl:1110.024 CosmoMC SNLS
ascl:1110.025 MIS
ascl:1111.001 HIPE
ascl:1111.002 CRBLASTER
ascl:1111.003 Saada
ascl:1111.004 CIGALE
ascl:1111.005 SPECTCOL
ascl:1111.006 MOPEX
ascl:1111.007 CUBISM
ascl:1111.008 SITools2
ascl:1111.009 MESS
# ascl:1111.010 Starbase Data Tables
ascl:1111.011 3DEX
ascl:1111.012 VAPOR
ascl:1111.013 FIBRE-pac
ascl:1111.014 FITSH
ascl:1111.015 TIPSY
ascl:1112.001 Eclipse
ascl:1112.002 Funtools
# ascl:1112.003 THERMINATOR 2
ascl:1112.003 THERMINATOR
ascl:1112.004 PHOX
ascl:1112.005 GIDGET
ascl:1112.006 PhAst
ascl:1112.007 FLAGCAL
ascl:1112.008 GGobi
ascl:1112.009 LISACode
ascl:1112.010 MRS3D
ascl:1112.011 CMBview
ascl:1112.012 CORA
ascl:1112.013 XEphem
ascl:1112.014 PyEphem
ascl:1112.015 Dexter
ascl:1112.016 PREDICT
ascl:1112.017 ASpec
ascl:1112.018 SwiftVis
ascl:1112.019 Aladin
ascl:1201.001 McScatter
ascl:1201.002 Roche
ascl:1201.003 SeBa
ascl:1201.004 emGain
ascl:1201.005 2LPTIC
ascl:1201.006 VIM
ascl:1201.007 Fisher4Cast
ascl:1201.008 Mercury
ascl:1201.009 ExoFit
ascl:1201.010 HNBody
ascl:1201.011 Duchamp
ascl:1201.012 CLUMPY
ascl:1201.013 SPS
ascl:1201.014 Hammurabi
ascl:1201.015 FFTW
ascl:1201.016 LumFunc
ascl:1201.017 Inflation
ascl:1202.001 CISM_DX
ascl:1202.002 ZODIPIC
ascl:1202.003 NOVAS
ascl:1202.004 TALYS
ascl:1202.005 Mangle
ascl:1202.006 CORSIKA
ascl:1202.007 CRUNCH3D
ascl:1202.008 Chombo
ascl:1202.009 MOOG
ascl:1202.010 SPECTRE
# ascl:1202.011 Lattimer-Swesty Equation of State Code
ascl:1202.012 CoCoNuT
ascl:1202.013 SME
ascl:1202.014 FISA
ascl:1202.015 RADMC-3D
ascl:1203.001 AE
ascl:1203.002 GALAPAGOS
ascl:1203.003 spec2d
ascl:1203.004 FERENGI
ascl:1203.005 Gyoto
ascl:1203.006 EMACSS
ascl:1203.007 EBTEL
ascl:1203.008 MegaLUT
ascl:1203.009 MYRIAD
ascl:1203.010 Youpi
ascl:1203.011 SALT2
ascl:1203.012 Astrometrica
ascl:1203.013 Figaro
ascl:1204.001 WM-basic
ascl:1204.002 pyBLoCXS
ascl:1204.003 BUDDA
ascl:1204.004 Fosite
ascl:1204.005 MC3D
ascl:1204.006 GRASIL
ascl:1204.007 VH-1
ascl:1204.008 StarFISH
ascl:1204.009 STOKES
ascl:1204.010 Shape
ascl:1204.011 EXCOP
ascl:1204.012 VirGO
ascl:1204.013 ORSA
ascl:1204.014 WOMBAT
ascl:1204.015 PROFIT
ascl:1204.016 ASCfit
ascl:1204.017 epsnoise
ascl:1205.001 Mechanic
ascl:1205.002 p3d
ascl:1205.003 MIA+EWS
ascl:1205.004 Turbospectrum
ascl:1205.005 Fv
ascl:1205.006 Flexion
ascl:1205.007 Iris
ascl:1205.008 Mayavi2
ascl:1205.009 ARES
# ascl:1205.010 Meudon PDR
ascl:1205.011 VOSpec
ascl:1206.001 RegiStax
# ascl:1206.002 FITS Liberator
ascl:1206.003 STSDAS
ascl:1206.004 MOLSCAT
ascl:1206.005 bhint
ascl:1206.006 statpl
ascl:1206.007 Plumix
ascl:1206.008 Catena
ascl:1206.009 Libimf
ascl:1206.010 mkj_libs
# ascl:1206.011 Double Eclipsing Binary Fitting
# ascl:1206.012 Time Utilities
ascl:1206.013 ImageJ
ascl:1206.014 ImageHealth
ascl:1207.001 EXOFAST
ascl:1207.002 HiGPUs
ascl:1207.003 VAC
ascl:1207.004 Hyperion
ascl:1207.005 L.A.Cosmic
ascl:1207.006 dcr
ascl:1207.007 Astropysics
ascl:1207.008 xSonify
ascl:1207.009 PyFITS
ascl:1207.010 PySALT
ascl:1207.011 PyRAF
ascl:1207.012 PCA
ascl:1207.013 JKTEBOP
ascl:1207.014 wvrgcal
ascl:1208.001 Astrometry.net
ascl:1208.002 BINSYN
ascl:1208.003 APT
ascl:1208.004 PyKE
ascl:1208.005 PSM
ascl:1208.006 ccogs
# ascl:1208.007 Big MACS
ascl:1208.008 TiRiFiC
ascl:1208.009 BLOBCAT
ascl:1208.010 BASE
ascl:1208.011 Fewbody
ascl:1208.012 Swarm-NG
ascl:1208.013 SolarSoft
ascl:1208.014 MPI-AMRVAC
ascl:1208.015 Lare3d
ascl:1208.016 VARTOOLS
ascl:1208.017 APLpy
ascl:1208.018 CUBEP3M
ascl:1208.019 MPFIT
ascl:1208.020 ParselTongue
ascl:1208.021 EzGal
# ascl:1209.001 Bayesian Blocks
ascl:1209.002 JAGS
ascl:1209.003 LSD
ascl:1209.004 CHORIZOS
ascl:1209.005 HARM
ascl:1209.006 macula
ascl:1209.007 TMCalc
ascl:1209.008 Phantom-GRAPE
ascl:1209.009 ANNz
ascl:1209.010 MeqTrees
ascl:1209.011 DiskFit
ascl:1209.012 Scanamorphos
ascl:1209.013 IRACproc
ascl:1209.014 FAMIAS
ascl:1209.015 Aspects
ascl:1210.001 GP2PCF
ascl:1210.002 pPXF
ascl:1210.003 GOSSIP
ascl:1210.004 EZ
ascl:1210.005 SGNAPS
ascl:1210.006 TA-DA
ascl:1210.007 FLUKA
ascl:1210.008 Rockstar
ascl:1210.009 PAHFIT
ascl:1210.010 CALCLENS
# ascl:1210.011 Consistent Trees
ascl:1210.012 SearchCal
ascl:1210.013 ConvPhot
ascl:1210.014 TRIP
ascl:1210.015 Tempo2
ascl:1210.016 Specview
ascl:1210.017 McPHAC
# ascl:1210.018 Systemic Console
ascl:1210.019 QFitsView
ascl:1210.020 GASGANO
ascl:1210.021 SMART
ascl:1210.022 HAM2D
ascl:1210.023 inf_solv
ascl:1210.024 ORBADV
ascl:1210.025 TwoDSSM
ascl:1210.026 PVS-GRMHD
ascl:1210.027 PyCosmic
ascl:1210.028 QYMSYM
ascl:1210.029 Sapporo
ascl:1210.030 BOOTTRAN
ascl:1210.031 RVLIN
ascl:1211.001 S2LET
ascl:1211.002 FreeEOS
# ascl:1211.003 WVT Binning
ascl:1211.004 CORRFIT
# ascl:1211.005 C-m Emu
# ascl:1211.006 Voronoi binning method
ascl:1212.001 Bonsai
ascl:1212.002 XPHOT
ascl:1212.003 MPWide
ascl:1212.004 MOLIERE-5
# ascl:1212.005 General complex polynomial root solver
ascl:1212.006 CosmoPMC
ascl:1212.007 WOLF
ascl:1212.008 SIR
ascl:1212.009 Aegean
ascl:1212.010 Synth3
ascl:1212.011 DrizzlePac
ascl:1212.012 ddisk
ascl:1212.013 EXSdetect
ascl:1212.014 Thrust
ascl:1212.015 TMAP
ascl:1301.001 PSFEx
ascl:1302.001 MARX
ascl:1302.002 ISIS
ascl:1302.003 ACS
ascl:1302.004 pNbody
ascl:1302.005 EPICS
ascl:1302.006 Minerva
ascl:1302.007 GRID-core
ascl:1302.008 FASTPHOT
# ascl:1302.009 IAS Stacking Library in IDL
ascl:1302.010 ICORE
ascl:1302.011 GALA
ascl:1302.012 ME(SSY)**2
ascl:1302.013 NIFTY
# ascl:1302.014 SYNMAG Photometry
ascl:1302.014 SYNMAG
ascl:1302.015 DisPerSE
ascl:1302.016 XDQSO
ascl:1302.017 ESO-MIDAS
ascl:1303.001 SWIFT
ascl:1303.002 emcee
ascl:1303.003 CosmoHammer
ascl:1303.004 UCL_PDR
ascl:1303.005 SMMOL
ascl:1303.006 UCL_CHEM
ascl:1303.007 micrOMEGAs
ascl:1303.008 TYCHO
ascl:1303.009 MAGIX
ascl:1303.010 TAC-maker
ascl:1303.011 MOPSIC
ascl:1303.012 TGCat
ascl:1303.013 idistort
ascl:1303.014 BSE
ascl:1303.015 SSE
# ascl:1303.016 2MASS Kit
ascl:1303.017 CADRE
ascl:1303.018 Galactus
ascl:1303.019 GBTIDL
ascl:1303.020 Ginga
ascl:1303.021 Xmatch
ascl:1303.022 ionFR
ascl:1303.023 pysynphot
ascl:1303.024 ATLAS12
ascl:1303.025 DPUSER
ascl:1303.026 ACORNS-ADI
ascl:1303.027 GaPP
ascl:1303.028 Stellarics
ascl:1303.029 iSAP
ascl:1303.030 Sunrise
ascl:1304.001 PEC
ascl:1304.002 Astropy
ascl:1304.003 GALSVM
ascl:1304.004 Wqed
ascl:1304.005 VOBOZ/ZOBOV
ascl:1304.006 CosmicEmuLog
ascl:1304.007 DESPOTIC
ascl:1304.008 Diffusion.f
ascl:1304.009 Sérsic
ascl:1304.011 TPZ
ascl:1304.012 ORIGAMI
ascl:1304.013 SFH
ascl:1304.014 MPgrafic
ascl:1304.015 TVD
ascl:1304.016 Qhull
ascl:1304.017 CosmoRec
ascl:1304.018 SZpack
ascl:1304.019 IFrIT
ascl:1304.020 pyCloudy
ascl:1304.021 PyNeb
ascl:1304.022 Copter
ascl:1305.001 ESTER
ascl:1305.002 pynbody
ascl:1305.003 TPM
ascl:1305.004 AdaptaHOP
ascl:1305.005 PkdGRAV2
# ascl:1305.006 Pressure-Entropy SPH
ascl:1305.007 PINOCCHIO
ascl:1305.008 YNOGK
ascl:1305.009 GaussFit
ascl:1305.010 GILDAS
ascl:1305.011 FITDisk
ascl:1305.012 MapCUMBA
# ascl:1305.013 Non-Gaussian Realisations
ascl:1305.014 TAU
# ascl:1305.015 Merger Trees
ascl:1306.001 SAC
ascl:1306.002 grmonty
ascl:1306.003 Harmony
ascl:1306.004 PROM4
ascl:1306.005 PROS
ascl:1306.006 BEHR
ascl:1306.007 Tapir
# ascl:1306.008 MAPPINGS III
ascl:1306.009 STF
ascl:1306.010 MADCOW
ascl:1306.011 Pico
# ascl:1306.012 LRG DR7 Likelihood Software
ascl:1306.013 Bessel
ascl:1306.014 ZEUS-2D
ascl:1306.015 VHD
ascl:1306.016 Yaxx
ascl:1307.001 DustEM
# ascl:1307.002 Monte Python
ascl:1307.003 K3Match
ascl:1307.004 FieldInf
ascl:1307.005 LENSVIEW
ascl:1307.006 im2shape
ascl:1307.007 AstroTaverna
ascl:1307.008 Obit
ascl:1307.009 MAH
ascl:1307.010 cosmoxi2d
ascl:1307.011 PhoSim
ascl:1307.012 ITERA
ascl:1307.013 SIMX
ascl:1307.014 Shapelets
# ascl:1307.015 CTI Correction Code
ascl:1307.016 orbfit
ascl:1307.017 NEST
ascl:1307.018 ETC++
ascl:1307.019 PURIFY
ascl:1307.020 SOPT
ascl:1308.001 SMILE
ascl:1308.002 LOSSCONE
ascl:1308.003 MapCurvature
ascl:1308.004 LensEnt2
ascl:1308.005 APPSPACK
ascl:1308.006 BASIN
ascl:1308.007 SYNAPPS
ascl:1308.008 SYN++
ascl:1308.009 CReSyPS
ascl:1308.010 GYRE
ascl:1308.011 CRUSH
ascl:1308.012 RADLite
# ascl:1308.013 THELI GUI
ascl:1308.014 SPEX
ascl:1308.015 Ceph_code
ascl:1308.016 JHelioviewer
ascl:1308.017 ChiantiPy
ascl:1308.018 MoogStokes
ascl:1309.001 AstroImageJ
ascl:1309.002 VAPHOT
ascl:1309.003 LOSP
ascl:1309.004 Spherical
ascl:1309.005 SATMC
ascl:1309.006 VOPlot
ascl:1309.007 VOMegaPlot
ascl:1309.008 VOStat
ascl:1310.001 ORAC-DR
ascl:1310.002 PyMSES
ascl:1310.003 AIDA
ascl:1310.004 AIRY
# ascl:1310.005 ASPRO 2
ascl:1310.005 ASPRO
ascl:1310.006 AIPSLite
ascl:1310.007 SMURF
ascl:1310.008 SPECX
ascl:1311.001 SciDB
ascl:1311.002 PyCOOL
ascl:1311.003 AstroAsciiData
ascl:1311.004 PlanetPack
ascl:1311.005 Spheroid
ascl:1311.006 CIAO
ascl:1311.007 CUPID
ascl:1311.008 CUPID
ascl:1311.009 CosmoTherm
ascl:1311.010 ARPACK
ascl:1311.011 MUSIC
ascl:1311.012 ETC
ascl:1312.001 SERPent
ascl:1312.002 WND-CHARM
ascl:1312.003 IMCOM
ascl:1312.004 BIE
ascl:1312.005 XAssist
ascl:1312.006 LTL
ascl:1312.007 SkyNet
ascl:1312.008 BAMBI
ascl:1312.009 YODA
ascl:1312.010 GalaxyCount
ascl:1312.011 A_phot
ascl:1312.012 BINGO
ascl:1312.013 CJAM
ascl:1312.014 SL1M
ascl:1401.001 Kirin
ascl:1401.002 SpacePy
ascl:1401.003 PyMidas
ascl:1401.004 Reflex
ascl:1401.005 PyDrizzle
ascl:1401.006 convolve_image.pro
ascl:1401.007 abundance
ascl:1401.008 massconvert
# ascl:1401.009 PPF module for CAMB
ascl:1401.010 SunPy
ascl:1402.001 Vissage
ascl:1402.002 Glue
ascl:1402.003 astroplotlib
ascl:1402.004 PyVO
# ascl:1402.005 Aladin Lite
ascl:1402.005 AladinLite
ascl:1402.005 Aladin-Lite
ascl:1402.006 Munipack
ascl:1402.007 SPLAT
ascl:1402.008 SPLAT-VO
ascl:1402.009 GalSim
ascl:1402.010 CPL
ascl:1402.011 KROME
ascl:1402.012 QUICKCV
ascl:1402.013 CASSIS
ascl:1402.014 ARTIST
ascl:1402.015 BF_dist
ascl:1402.016 FAMA
ascl:1402.017 UVMULTIFIT
ascl:1402.018 TARDIS
ascl:1402.019 ANAigm
ascl:1402.020 XNS
ascl:1402.021 PyGFit
ascl:1402.022 DexM
ascl:1402.023 HydraLens
ascl:1402.024 QuickReduce
ascl:1402.025 BAOlab
ascl:1402.026 athena
# ascl:1402.027 Darth Fader
# ascl:1402.028 Commander 2
ascl:1402.029 wssa_utils
ascl:1402.030 P2SAD
ascl:1402.031 gyrfalcON
ascl:1402.032 HALOFIT
ascl:1402.033 libsharp
ascl:1402.034 PyWiFeS
ascl:1402.035 MGHalofit
ascl:1403.001 GPU-D
ascl:1403.002 pyExtinction
ascl:1403.003 MLZ
ascl:1403.004 Lightcone
ascl:1403.005 GRay
ascl:1403.006 CHIMERA
# ascl:1403.007 Unified EOS for neutron stars
ascl:1403.008 SURF
ascl:1403.009 ISAP
# ascl:1403.010 Inverse Beta
ascl:1403.011 RMHB
ascl:1403.012 YNOGKM
ascl:1403.013 BAOlab
# ascl:1403.014 T(dust) as a function of sSFR
ascl:1403.015 computePk
ascl:1403.016 Viewpoints
ascl:1403.017 MGE_FIT_SECTORS
ascl:1403.018 JAM
ascl:1403.019 KINEMETRY
ascl:1403.020 disc2vel
ascl:1403.021 CCDPACK
ascl:1403.022 KAPPA
ascl:1403.023 ASTERIX
ascl:1403.024 GAIA
ascl:1403.025 SLALIB
ascl:1403.026 SOFA
# ascl:1404.001 LTS_LINEFIT & LTS_PLANEFIT
ascl:1404.001 LTS_LINEFIT
ascl:1404.001 LTS_PLANEFIT
ascl:1404.002 ZDCF
ascl:1404.004 SAS
ascl:1404.005 SER
ascl:1404.006 TORUS
ascl:1404.007 AMBIG
ascl:1404.008 Comet
ascl:1404.009 carma_pack
ascl:1404.010 VictoriaReginaModels
# ascl:1404.011 CAP_LOESS_1D & CAP_LOESS_2D
ascl:1404.012 RegPT
ascl:1404.013 WFC3UV_GC
ascl:1404.014 SpecPro
ascl:1404.015 TTVFast
ascl:1404.016 AST
ascl:1404.017 Spextool
ascl:1405.001 LBLRTM
ascl:1405.002 TelFit
# ascl:1405.003 The Hammer
ascl:1405.003 Hammer
ascl:1405.004 Defringeflat
ascl:1405.005 HIIPHOT
ascl:1405.006 PROPER
ascl:1405.007 FORWARD
ascl:1405.008 TRIPP
ascl:1405.009 ATV
ascl:1405.010 FLUXES
ascl:1405.011 DATACUBE
ascl:1405.012 PISA
ascl:1405.013 PHOTOM
ascl:1405.014 POLPACK
ascl:1405.015 CURSA
ascl:1405.016 DIPSO
ascl:1405.017 ESP
ascl:1405.018 ECHOMOP
ascl:1406.001 ASURV
ascl:1406.002 PAMELA
ascl:1406.003 CoREAS
ascl:1406.004 Autoastrom
ascl:1406.005 PERIOD
ascl:1406.006 FROG
ascl:1406.007 RV
ascl:1406.008 ASTROM
ascl:1406.009 VADER
ascl:1406.010 MATCH
ascl:1406.011 TSP
ascl:1406.012 POLMAP
ascl:1406.013 CGS4DR
ascl:1406.014 IRAS90
ascl:1406.015 IRCAMDR
ascl:1406.016 IUEDR
ascl:1406.017 COCO
ascl:1406.018 GAUSSCLUMPS
ascl:1406.019 JCMTDR
ascl:1406.020 STARMAN
# ascl:1407.001 The Starfish Diagram
ascl:1407.001 Starfish
ascl:1407.002 TWODSPEC
ascl:1407.003 SPECDRE
ascl:1407.004 MCMAC
# ascl:1407.005 MATLAB package for astronomy and astrophysics
ascl:1407.006 SAMI
ascl:1407.007 ASTRORAY
ascl:1407.008 Exopop
ascl:1407.009 Period04
ascl:1407.010 CLE
ascl:1407.011 kungifu
ascl:1407.012 PINGSoft2
ascl:1407.013 VStar
ascl:1407.014 VIDE
ascl:1407.015 BayesFlare
ascl:1407.016 Brut
# ascl:1407.017 e-MERLIN data reduction pipeline
ascl:1407.018 AstroML
ascl:1407.019 EZ_Ages
ascl:1407.020 Halogen
ascl:1408.001 Imfit
ascl:1408.002 LIA
ascl:1408.003 PIA
ascl:1408.004 HEAsoft
ascl:1408.005 POET
ascl:1408.006 SPAM
ascl:1408.007 Skycorr
ascl:1408.008 GALIC
ascl:1408.009 IIPImage
ascl:1408.010 VisiOmatic
ascl:1408.011 GALAPAGOS-C
ascl:1408.012 LightcurveMC
ascl:1408.013 NumCosmo
ascl:1408.014 pieflag
ascl:1408.015 VPFIT
ascl:1408.016 vpguess
ascl:1408.017 RDGEN
ascl:1408.018 CosmoPhotoz
ascl:1408.019 O2scl
ascl:1408.020 bamr
ascl:1408.021 APS
ascl:1408.022 PhotoRApToR
ascl:1408.023 WSClean
ascl:1409.001 mixT
# ascl:1409.002 Tsyganenko Geomagnetic Field Models
ascl:1409.003 LANL*
ascl:1409.004 IFSRED
ascl:1409.005 IFSFIT
ascl:1409.006 iSpec
ascl:1409.007 ORBS
ascl:1409.008 CHLOE
ascl:1409.009 Nahoon
ascl:1409.010 Slim
ascl:1409.011 rmfit
ascl:1409.012 CosmoSIS
ascl:1409.013 IM3SHAPE
ascl:1410.001 DIAMONDS
ascl:1410.002 MEPSA
ascl:1410.003 GIZMO
ascl:1410.004 UVOTPY
ascl:1410.005 RICH
ascl:1411.001 pyGadgetReader
ascl:1411.002 pysovo
ascl:1411.003 voevent-parse
ascl:1411.004 OPERA
ascl:1411.005 HOPE
# ascl:1411.006 RC3 mosaicking pipeline
ascl:1411.007 segueSelect
ascl:1411.008 galpy
ascl:1411.009 iDealCam
ascl:1411.010 Raga
ascl:1411.011 PyMGC3
ascl:1411.012 util_2comp
ascl:1411.013 NEAT
ascl:1411.014 NAFE
ascl:1411.015 SPOTROD
ascl:1411.016 Flicker
ascl:1411.017 ECCSAMPLES
# ascl:1411.018 GPI Pipeline
ascl:1411.019 Anmap
# ascl:1411.020 JCMT COADD
ascl:1411.021 POSTMORTEM
# ascl:1411.022 Starlink Figaro
ascl:1411.023 NDF
ascl:1411.024 CGS3DR
# ascl:1411.025 SPT Lensing Likelihood
ascl:1411.026 sic
ascl:1411.027 BKGE
ascl:1412.001 SoFiA
ascl:1412.002 Cheetah
ascl:1412.003 UTM
ascl:1412.004 DAMIT
ascl:1412.005 BRUCE/KYLIE
ascl:1412.006 HMF
ascl:1412.007 PIAO
ascl:1412.008 Hrothgar
ascl:1412.009 URCHIN
ascl:1412.010 MMAS
ascl:1412.011 TraP
ascl:1412.012 GeoTOA
ascl:1412.013 CRPropa
ascl:1412.014 SOPHIA
ascl:1501.001 PynPoint