-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew_bundle
12987 lines (10711 loc) · 393 KB
/
new_bundle
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
#
# To unbundle, sh this file
#
echo Unbundling file ./modest-save/modest_wg9.html ... 1>&2
cat >./modest-save/modest_wg9.html <<'End of ./modest-save/modest_wg9.html'
<html>
<title>
MODEST WG9
</title>
<BODY bgcolor=#f7dfb2>
<!--#include virtual="modest_footer.inc" -->
<br>
<h1>MODEST Working Group 9:
<br>
<a href=http://dipastro.pd.astro.it/globulars/modest_wg9.html>Observations</a>
</h1><br>
<a href=http://dipastro.pd.astro.it/globulars/modest_wg9.html>
<img src=wg9_image.jpg align=right>
</a>
In recent years, theoretical models of dense stellar systems have
become increasingly sophisticated. It is now possible to develop
realistic N-body models with up to many tens of thousands of stars;
the evolution of binaries and single stars in dense environments can
be followed as the cluster evolves as a whole and all of the models
can be tested extensively against the observations.
<p>
On the observational side,the advent of space telescopes and of
ground-based 10-m size telescopes, have provided a huge amount of
data, spanning the range of wavelengths from radio to X-rays. The
development of astrometrical techniques, and the availability of
multifiber high resolution spectrographs allows astrometry and
observational kinematics, with radial velocities and proper motions,
both from the ground and with HST, measured for up to 10,000 stars per
cluster. Large-field imaging cameras now routinely provide photometric
data for up to a few hundred thousands stars per cluster. HST and
interferometric techniques provide a deep view in the very center of
dense stellar systems. A complete inventory of kinematic and
photometric properties, from X-ray to near-infrared, of all luminous
stars from the very center to the outskirts of clusters and nearby
galaxies is now a reality. And an increasing number of catalogs of
kinematic and photometric data are now available on the Web. There is
a significant progress in the determination of geometrical distances
to globular clusters, which will provide a solid foundation for the
calibration of their ages and an important step in the distance
ladder, both with a significant impact in cosmology. And finally,
there has been a great deal of progress in the understanding of
extragalactic globular cluster systems, with a complex variety of
luminosities, masses, ages, metallicities, and dynamical evolution,
and their role in galaxy formation.
<p>
It is now time to directly compare the output of the models with the
observation, and MODEST is the ideal framework to do it. This working
group is intended to collect the most up-to-date observational data,
to help develop observational projects to provide input parameters,
and to test the more and more realistic models developed within
MODEST.
<br><br><br>
<table>
<tr><td width=100>Contact:</td>
<td><a href=mailto:[email protected]>Giampaolo Piotto</a>
</tr>
<tr><td> </td></tr>
<tr><td>Web site:</td>
<td><a href=http://dipastro.pd.astro.it/globulars/modest_wg9.html>WG9</a></td>
</tr>
</table>
<br><hr WIDTH="100%">
<font SIZE=-2>
Page last modified:
Wednesday, 28-Jul-2003 19:37:50 EST.
<br>Please direct comments, criticisms, corrections
and contributions to Steve McMillan: <i>
<a HREF="mailto:[email protected]">
steve (at) physics.drexel.edu</a></i>.
</font>
</body>
</html>
End of ./modest-save/modest_wg9.html
echo Unbundling file ./modest-save/modest_wg9.html ... 1>&2
cat >./modest-save/modest_wg9.html <<'End of ./modest-save/modest_wg9.html'
<html>
<title>
MODEST WG9
</title>
<BODY bgcolor=#f7dfb2>
<!--#include virtual="modest_footer.inc" -->
<br>
<h1>MODEST Working Group 9:
<br>
<a href=http://dipastro.pd.astro.it/globulars/modest_wg9.html>Observations</a>
</h1><br>
<a href=http://dipastro.pd.astro.it/globulars/modest_wg9.html>
<img src=wg9_image.jpg align=right>
</a>
In recent years, theoretical models of dense stellar systems have
become increasingly sophisticated. It is now possible to develop
realistic N-body models with up to many tens of thousands of stars;
the evolution of binaries and single stars in dense environments can
be followed as the cluster evolves as a whole and all of the models
can be tested extensively against the observations.
<p>
On the observational side,the advent of space telescopes and of
ground-based 10-m size telescopes, have provided a huge amount of
data, spanning the range of wavelengths from radio to X-rays. The
development of astrometrical techniques, and the availability of
multifiber high resolution spectrographs allows astrometry and
observational kinematics, with radial velocities and proper motions,
both from the ground and with HST, measured for up to 10,000 stars per
cluster. Large-field imaging cameras now routinely provide photometric
data for up to a few hundred thousands stars per cluster. HST and
interferometric techniques provide a deep view in the very center of
dense stellar systems. A complete inventory of kinematic and
photometric properties, from X-ray to near-infrared, of all luminous
stars from the very center to the outskirts of clusters and nearby
galaxies is now a reality. And an increasing number of catalogs of
kinematic and photometric data are now available on the Web. There is
a significant progress in the determination of geometrical distances
to globular clusters, which will provide a solid foundation for the
calibration of their ages and an important step in the distance
ladder, both with a significant impact in cosmology. And finally,
there has been a great deal of progress in the understanding of
extragalactic globular cluster systems, with a complex variety of
luminosities, masses, ages, metallicities, and dynamical evolution,
and their role in galaxy formation.
<p>
It is now time to directly compare the output of the models with the
observation, and MODEST is the ideal framework to do it. This working
group is intended to collect the most up-to-date observational data,
to help develop observational projects to provide input parameters,
and to test the more and more realistic models developed within
MODEST.
<br><br><br>
<table>
<tr><td width=100>Contact:</td>
<td><a href=mailto:[email protected]>Giampaolo Piotto</a>
</tr>
<tr><td> </td></tr>
<tr><td>Web site:</td>
<td><a href=http://dipastro.pd.astro.it/globulars/modest_wg9.html>WG9</a></td>
</tr>
</table>
<br><hr WIDTH="100%">
<font SIZE=-2>
Page last modified:
Wednesday, 28-Jul-2003 19:37:50 EST.
<br>Please direct comments, criticisms, corrections
and contributions to Steve McMillan: <i>
<a HREF="mailto:[email protected]">
steve (at) physics.drexel.edu</a></i>.
</font>
</body>
</html>
End of ./modest-save/modest_wg9.html
echo Unbundling file ./modest-save/modest_wg7.html ... 1>&2
cat >./modest-save/modest_wg7.html <<'End of ./modest-save/modest_wg7.html'
<HTML>
<TITLE>
MODEST WG7
</TITLE>
<BODY bgcolor=#f7dfb2>
<!--#include virtual="modest_footer.inc" -->
<br>
<h1>MODEST Working Group 7:
<br>
<a href= http://www.maths.ed.ac.uk/~douglas/wg7.html>Validation</a>
</h1><br>
<a href= http://www.maths.ed.ac.uk/~douglas/wg7.html>
<img src=wg7_image.gif align=right>
</a>
The evolution of dense stellar systems is such a complicated problem
that no exact solutions and few exact constraints are known.
Therefore the reliability of simulations can best be checked by
cross-validation. The aim of this working group is to compare results
from different simulation methods on a small suite of well specified
test problems. The results can be used to check that a new code is
working correctly, or that approximate methods give results consistent
with more elaborate methods.
<br><br><br>
<table>
<tr><td width=100>Contact:</td>
<td><a href=mailto:[email protected]>Douglas Heggie</a>
</tr>
<tr><td> </td></tr>
<tr><td>Web site:</td>
<td><a href= http://www.maths.ed.ac.uk/~douglas/wg7.html>WG7</a></td>
</tr>
</table>
<br><HR WIDTH="100%">
<FONT SIZE=-2>
Page last modified:
<!--#echo var="LAST_MODIFIED" -->.
<!--#config timefmt="%d-%h-%Y" -->
<br>Please direct comments, criticisms, corrections
and contributions to Steve McMillan: <I>
<A HREF="mailto:[email protected]">
steve (at) physics.drexel.edu</A></I>.
</FONT>
</body>
</HTML>
End of ./modest-save/modest_wg7.html
echo Unbundling file ./modest-save/modest_wg7.html ... 1>&2
cat >./modest-save/modest_wg7.html <<'End of ./modest-save/modest_wg7.html'
<HTML>
<TITLE>
MODEST WG7
</TITLE>
<BODY bgcolor=#f7dfb2>
<!--#include virtual="modest_footer.inc" -->
<br>
<h1>MODEST Working Group 7:
<br>
<a href= http://www.maths.ed.ac.uk/~douglas/wg7.html>Validation</a>
</h1><br>
<a href= http://www.maths.ed.ac.uk/~douglas/wg7.html>
<img src=wg7_image.gif align=right>
</a>
The evolution of dense stellar systems is such a complicated problem
that no exact solutions and few exact constraints are known.
Therefore the reliability of simulations can best be checked by
cross-validation. The aim of this working group is to compare results
from different simulation methods on a small suite of well specified
test problems. The results can be used to check that a new code is
working correctly, or that approximate methods give results consistent
with more elaborate methods.
<br><br><br>
<table>
<tr><td width=100>Contact:</td>
<td><a href=mailto:[email protected]>Douglas Heggie</a>
</tr>
<tr><td> </td></tr>
<tr><td>Web site:</td>
<td><a href= http://www.maths.ed.ac.uk/~douglas/wg7.html>WG7</a></td>
</tr>
</table>
<br><HR WIDTH="100%">
<FONT SIZE=-2>
Page last modified:
<!--#echo var="LAST_MODIFIED" -->.
<!--#config timefmt="%d-%h-%Y" -->
<br>Please direct comments, criticisms, corrections
and contributions to Steve McMillan: <I>
<A HREF="mailto:[email protected]">
steve (at) physics.drexel.edu</A></I>.
</FONT>
</body>
</HTML>
End of ./modest-save/modest_wg7.html
echo Unbundling file ./modest-save/modest_wg3.html ... 1>&2
cat >./modest-save/modest_wg3.html <<'End of ./modest-save/modest_wg3.html'
<HTML>
<TITLE>
MODEST WG3
</TITLE>
<BODY bgcolor=#f7dfb2>
<!--#include virtual="modest_footer.inc" -->
<br>
<h1>MODEST Working Group 3:
<br>
<a href=http://www.ari.uni-heidelberg.de/modest>Stellar Dynamics</a>
</h1><br>
<a href=http://www.ari.uni-heidelberg.de/modest>
<img src=wg3_image.jpg align=right>
</a>
Dynamics of (globular) star clusters, galaxies and galactic nuclei;
galaxies in the young universe. Study of the effects of rotation, mass
segregation, primordial binaries and central massive objects on the
evolution of dense stellar systems. Using Direct N-body Simulations,
anisotropic gaseous models, direct solutions of the Fokker-Planck
equation and Monte Carlo methods to simulate numerically the effects
of stellar evolution, a realistic mass spectrum, galactic tidal fields
on the evolution of dense young or globular star clusters.
<br><br><br>
<table>
<tr><td width=100>Contact:</td>
<td><a href=mailto:[email protected]>Rainer Spurzem</a>
</tr>
<tr><td> </td></tr>
<tr><td>Web site:</td>
<td><a href=http://www.ari.uni-heidelberg.de/modest>WG3</a></td>
</tr>
</table>
<br><HR WIDTH="100%">
<FONT SIZE=-2>
Page last modified:
<!--#echo var="LAST_MODIFIED" -->.
<!--#config timefmt="%d-%h-%Y" -->
<br>Please direct comments, criticisms, corrections
and contributions to Steve McMillan: <I>
<A HREF="mailto:[email protected]">
steve (at) physics.drexel.edu</A></I>.
</FONT>
</body>
</HTML>
End of ./modest-save/modest_wg3.html
echo Unbundling file ./modest-save/modest_wg3.html ... 1>&2
cat >./modest-save/modest_wg3.html <<'End of ./modest-save/modest_wg3.html'
<HTML>
<TITLE>
MODEST WG3
</TITLE>
<BODY bgcolor=#f7dfb2>
<!--#include virtual="modest_footer.inc" -->
<br>
<h1>MODEST Working Group 3:
<br>
<a href=http://www.ari.uni-heidelberg.de/modest>Stellar Dynamics</a>
</h1><br>
<a href=http://www.ari.uni-heidelberg.de/modest>
<img src=wg3_image.jpg align=right>
</a>
Dynamics of (globular) star clusters, galaxies and galactic nuclei;
galaxies in the young universe. Study of the effects of rotation, mass
segregation, primordial binaries and central massive objects on the
evolution of dense stellar systems. Using Direct N-body Simulations,
anisotropic gaseous models, direct solutions of the Fokker-Planck
equation and Monte Carlo methods to simulate numerically the effects
of stellar evolution, a realistic mass spectrum, galactic tidal fields
on the evolution of dense young or globular star clusters.
<br><br><br>
<table>
<tr><td width=100>Contact:</td>
<td><a href=mailto:[email protected]>Rainer Spurzem</a>
</tr>
<tr><td> </td></tr>
<tr><td>Web site:</td>
<td><a href=http://www.ari.uni-heidelberg.de/modest>WG3</a></td>
</tr>
</table>
<br><HR WIDTH="100%">
<FONT SIZE=-2>
Page last modified:
<!--#echo var="LAST_MODIFIED" -->.
<!--#config timefmt="%d-%h-%Y" -->
<br>Please direct comments, criticisms, corrections
and contributions to Steve McMillan: <I>
<A HREF="mailto:[email protected]">
steve (at) physics.drexel.edu</A></I>.
</FONT>
</body>
</HTML>
End of ./modest-save/modest_wg3.html
echo Unbundling file ./modest-save/modest-2.html ... 1>&2
cat >./modest-save/modest-2.html <<'End of ./modest-save/modest-2.html'
<HTML>
<TITLE>
MODEST-2
</TITLE>
<style>
h1 {font: 36pt 'New Century Schoolbook'; font-weight: bold; color:
black}
h2 {font: 36pt 'New Century Schoolbook'; font-weight: bold; color:
yellow}
h3 {font: 18pt 'New Century Schoolbook'; font-weight: bold; color:
black}
h4 {font: 18pt 'New Century Schoolbook'; font-weight: bold; color:
yellow}
h5 {font: 6pt 'New Century Schoolbook'; font-weight: bold; color:
yellow}
h3 em {font: 24pt 'New Century Schoolbook';
font-weight: bold; color: red}
</style>
<BODY bgcolor=#f7dfb2>
<!--#include virtual="modest_conf_footer.inc" -->
<CENTER> <H1>
MODEST-2
</H1> </CENTER>
<H3> SUMMARY </H3>
MODEST-2 took place on December 16-17, 2002, in Amsterdam. The
meeting was organized by Simon Portegies Zwart and Piet Hut.
<!--
For more
information, follow the links below, or contact Simon Portegies Zwart
(spz (at) science.uva.nl or surf to his <a
HREF=http://carol.wins.uva.nl/~spz/>home page</A>).
-->
<br><br><br>
<table>
<tbody><tr>
<td align=left valign=top>
<a href=modest2poster.ps><img src="./modest2poster.jpg" align-left
height=175><br>
download the poster</a>
</td>
<td align="left" valign="top">
<H3>
<dl><dd>
<a href="http://carol.wins.uva.nl/%7Espz/act/modest2/invitation.html">
Invitation</a>
<p>
</p></dd>
<!--
<dd>
<a href="http://carol.wins.uva.nl/%7Espz/act/modest2/registration.html">
Registration</a>
<p>
</p></dd><dd>
<a href="http://carol.wins.uva.nl/%7Espz/act/modest2/reservation.html">
Hotel reservation</a>
<p>
</p></dd><dd>
<a href="http://carol.wins.uva.nl/%7Espz/act/modest2/directions.html">
Travel directions</a>
<p>
</p></dd>
-->
<dd>
<a href="http://carol.wins.uva.nl/%7Espz/act/modest2/participants.html">
Participants</a>
</dd></p>
</p></dd><dd>
<a href=modest2-pics>
Conference photographs</a>
</dd></p>
</H3>
</td>
</tr>
</tbody></table>
<br><HR WIDTH="100%">
<FONT SIZE=-2>
Page last modified:
<!--#echo var="LAST_MODIFIED" -->.
<!--#config timefmt="%d-%h-%Y" -->
<br>Please direct comments, criticisms, corrections
and contributions to Steve McMillan: <I>
<A HREF="mailto:[email protected]">
steve (at) physics.drexel.edu</A></I>.
</FONT>
</BODY>
</HTML>
End of ./modest-save/modest-2.html
echo Unbundling file ./modest-save/modest-2.html ... 1>&2
cat >./modest-save/modest-2.html <<'End of ./modest-save/modest-2.html'
<HTML>
<TITLE>
MODEST-2
</TITLE>
<style>
h1 {font: 36pt 'New Century Schoolbook'; font-weight: bold; color:
black}
h2 {font: 36pt 'New Century Schoolbook'; font-weight: bold; color:
yellow}
h3 {font: 18pt 'New Century Schoolbook'; font-weight: bold; color:
black}
h4 {font: 18pt 'New Century Schoolbook'; font-weight: bold; color:
yellow}
h5 {font: 6pt 'New Century Schoolbook'; font-weight: bold; color:
yellow}
h3 em {font: 24pt 'New Century Schoolbook';
font-weight: bold; color: red}
</style>
<BODY bgcolor=#f7dfb2>
<!--#include virtual="modest_conf_footer.inc" -->
<CENTER> <H1>
MODEST-2
</H1> </CENTER>
<H3> SUMMARY </H3>
MODEST-2 took place on December 16-17, 2002, in Amsterdam. The
meeting was organized by Simon Portegies Zwart and Piet Hut.
<!--
For more
information, follow the links below, or contact Simon Portegies Zwart
(spz (at) science.uva.nl or surf to his <a
HREF=http://carol.wins.uva.nl/~spz/>home page</A>).
-->
<br><br><br>
<table>
<tbody><tr>
<td align=left valign=top>
<a href=modest2poster.ps><img src="./modest2poster.jpg" align-left
height=175><br>
download the poster</a>
</td>
<td align="left" valign="top">
<H3>
<dl><dd>
<a href="http://carol.wins.uva.nl/%7Espz/act/modest2/invitation.html">
Invitation</a>
<p>
</p></dd>
<!--
<dd>
<a href="http://carol.wins.uva.nl/%7Espz/act/modest2/registration.html">
Registration</a>
<p>
</p></dd><dd>
<a href="http://carol.wins.uva.nl/%7Espz/act/modest2/reservation.html">
Hotel reservation</a>
<p>
</p></dd><dd>
<a href="http://carol.wins.uva.nl/%7Espz/act/modest2/directions.html">
Travel directions</a>
<p>
</p></dd>
-->
<dd>
<a href="http://carol.wins.uva.nl/%7Espz/act/modest2/participants.html">
Participants</a>
</dd></p>
</p></dd><dd>
<a href=modest2-pics>
Conference photographs</a>
</dd></p>
</H3>
</td>
</tr>
</tbody></table>
<br><HR WIDTH="100%">
<FONT SIZE=-2>
Page last modified:
<!--#echo var="LAST_MODIFIED" -->.
<!--#config timefmt="%d-%h-%Y" -->
<br>Please direct comments, criticisms, corrections
and contributions to Steve McMillan: <I>
<A HREF="mailto:[email protected]">
steve (at) physics.drexel.edu</A></I>.
</FONT>
</BODY>
</HTML>
End of ./modest-save/modest-2.html
echo Unbundling file ./modest-save/modest_wg6.html ... 1>&2
cat >./modest-save/modest_wg6.html <<'End of ./modest-save/modest_wg6.html'
<HTML>
<TITLE>
MODEST WG6
</TITLE>
<BODY bgcolor=#f7dfb2>
<!--#include virtual="modest_footer.inc" -->
<br>
<h1>MODEST Working Group 6:
<br>
<a href=http://bima.astro.umd.edu/nemo/modest-wg6/>Data Structures</a>
</h1><br>
<a href=http://bima.astro.umd.edu/nemo/modest-wg6/>
<img src=wg6_image.gif align=right>
</a>
The data structures used in the codes are important in order for
different modules to properly exchange and interpret as much
of their information as possible.
The current activity is on defining a framework
so we agree on nomenclature and contents of the data, as depicted
in the figure to the right. We don't need to come up with
a FITS like standard, although something like that would be nice
(the new
<A HREF=http://vizier.u-strasbg.fr/doc/VOTable/>VOTable</A>
comes to mind here).
<br><br><br>
<table>
<tr><td width=100>Contact:</td>
<td><a href=mailto:[email protected]>Peter Teuben</a>
</tr>
<tr><td> </td></tr>
<tr><td valign=top>Web site:</td>
<td valign=top><a
href=http://bima.astro.umd.edu/nemo/modest-wg6/>WG6</a>, see
also <A HREF=http://bima.astro.umd.edu/nemo/tvo/>
Theory in a Virtual Observatory</A> pages for examples.
</td>
</tr>
</table>
<br><HR WIDTH="100%">
<FONT SIZE=-2>
Page last modified:
<!--#echo var="LAST_MODIFIED" -->.
<!--#config timefmt="%d-%h-%Y" -->
<br>Please direct comments, criticisms, corrections
and contributions to Steve McMillan: <I>
<A HREF="mailto:[email protected]">
steve (at) physics.drexel.edu</A></I>.
</FONT>
</body>
</HTML>
End of ./modest-save/modest_wg6.html
echo Unbundling file ./modest-save/modest_wg6.html ... 1>&2
cat >./modest-save/modest_wg6.html <<'End of ./modest-save/modest_wg6.html'
<HTML>
<TITLE>
MODEST WG6
</TITLE>
<BODY bgcolor=#f7dfb2>
<!--#include virtual="modest_footer.inc" -->
<br>
<h1>MODEST Working Group 6:
<br>
<a href=http://bima.astro.umd.edu/nemo/modest-wg6/>Data Structures</a>
</h1><br>
<a href=http://bima.astro.umd.edu/nemo/modest-wg6/>
<img src=wg6_image.gif align=right>
</a>
The data structures used in the codes are important in order for
different modules to properly exchange and interpret as much
of their information as possible.
The current activity is on defining a framework
so we agree on nomenclature and contents of the data, as depicted
in the figure to the right. We don't need to come up with
a FITS like standard, although something like that would be nice
(the new
<A HREF=http://vizier.u-strasbg.fr/doc/VOTable/>VOTable</A>
comes to mind here).
<br><br><br>
<table>
<tr><td width=100>Contact:</td>
<td><a href=mailto:[email protected]>Peter Teuben</a>
</tr>
<tr><td> </td></tr>
<tr><td valign=top>Web site:</td>
<td valign=top><a
href=http://bima.astro.umd.edu/nemo/modest-wg6/>WG6</a>, see
also <A HREF=http://bima.astro.umd.edu/nemo/tvo/>
Theory in a Virtual Observatory</A> pages for examples.
</td>
</tr>
</table>
<br><HR WIDTH="100%">
<FONT SIZE=-2>
Page last modified:
<!--#echo var="LAST_MODIFIED" -->.
<!--#config timefmt="%d-%h-%Y" -->
<br>Please direct comments, criticisms, corrections
and contributions to Steve McMillan: <I>
<A HREF="mailto:[email protected]">
steve (at) physics.drexel.edu</A></I>.
</FONT>
</body>
</HTML>
End of ./modest-save/modest_wg6.html
echo Unbundling file ./modest-save/modest_wg2.html ... 1>&2
cat >./modest-save/modest_wg2.html <<'End of ./modest-save/modest_wg2.html'
<HTML>
<TITLE>
MODEST WG2
</TITLE>
<BODY bgcolor=#f7dfb2>
<!--#include virtual="modest_footer.inc" -->
<br>
<h1>MODEST Working Group 2:
<br>
<a href=http://www.astro.uu.nl/~pols/modest/WG2.html>Stellar Evolution</a>
</h1><br>
<a href=http://www.astro.uu.nl/~pols/modest/WG2.html>
<img src=wg2_image.gif align=right>
</a>
Stars in clusters evolve, and this evolution provides a crucial
feedback on the evolution of the cluster as a whole - through mass
loss, interaction, and collisions between stars. Conversely, the
dynamical cluster environment strongly modifies the evolution of many
of its members, and the often exotic stars that result can be an
important diagnostic of the (hydro)dynamical processes that take
place.
<p> Our challenge is to model the evolution of any star that can be
present in a dense cluster, whether single, binary or a member of a
higher-order multiple. This includes non-canonical stars that result
from stellar mergers and collisions. We thus require a stellar
evolution code that can run autonomously from an arbitrary initial
configuration to the end of a star's nuclear and thermal
evolution. The code should be sufficiently fast so as not grind a
cluster simulation to a halt. Above all, it should be robust and give
a meaningful result under any conceivable circumstance.
<br><br><br>
<table>
<tr><td width=100>Contact:</td>
<td><a href=mailto:[email protected]>Onno Pols</a>
</tr>
<tr><td> </td></tr>
<tr><td>Web site:</td>
<td><a href=http://www.astro.uu.nl/~pols/modest/WG2.html>WG2</a></td>
</tr>
</table>
<br><HR WIDTH="100%">
<FONT SIZE=-2>
Page last modified:
<!--#echo var="LAST_MODIFIED" -->.
<!--#config timefmt="%d-%h-%Y" -->
<br>Please direct comments, criticisms, corrections
and contributions to Steve McMillan: <I>
<A HREF="mailto:[email protected]">
steve (at) physics.drexel.edu</A></I>.
</FONT>
</body>
</HTML>
End of ./modest-save/modest_wg2.html
echo Unbundling file ./modest-save/modest_wg2.html ... 1>&2
cat >./modest-save/modest_wg2.html <<'End of ./modest-save/modest_wg2.html'
<HTML>
<TITLE>
MODEST WG2
</TITLE>
<BODY bgcolor=#f7dfb2>
<!--#include virtual="modest_footer.inc" -->
<br>
<h1>MODEST Working Group 2:
<br>
<a href=http://www.astro.uu.nl/~pols/modest/WG2.html>Stellar Evolution</a>
</h1><br>
<a href=http://www.astro.uu.nl/~pols/modest/WG2.html>
<img src=wg2_image.gif align=right>
</a>
Stars in clusters evolve, and this evolution provides a crucial
feedback on the evolution of the cluster as a whole - through mass
loss, interaction, and collisions between stars. Conversely, the
dynamical cluster environment strongly modifies the evolution of many
of its members, and the often exotic stars that result can be an
important diagnostic of the (hydro)dynamical processes that take
place.
<p> Our challenge is to model the evolution of any star that can be
present in a dense cluster, whether single, binary or a member of a
higher-order multiple. This includes non-canonical stars that result
from stellar mergers and collisions. We thus require a stellar
evolution code that can run autonomously from an arbitrary initial
configuration to the end of a star's nuclear and thermal
evolution. The code should be sufficiently fast so as not grind a
cluster simulation to a halt. Above all, it should be robust and give
a meaningful result under any conceivable circumstance.
<br><br><br>
<table>
<tr><td width=100>Contact:</td>
<td><a href=mailto:[email protected]>Onno Pols</a>
</tr>
<tr><td> </td></tr>
<tr><td>Web site:</td>
<td><a href=http://www.astro.uu.nl/~pols/modest/WG2.html>WG2</a></td>
</tr>
</table>
<br><HR WIDTH="100%">
<FONT SIZE=-2>
Page last modified:
<!--#echo var="LAST_MODIFIED" -->.
<!--#config timefmt="%d-%h-%Y" -->
<br>Please direct comments, criticisms, corrections
and contributions to Steve McMillan: <I>
<A HREF="mailto:[email protected]">
steve (at) physics.drexel.edu</A></I>.
</FONT>
</body>
</HTML>
End of ./modest-save/modest_wg2.html
echo Unbundling file ./modest-save/modest_wg4.html ... 1>&2
cat >./modest-save/modest_wg4.html <<'End of ./modest-save/modest_wg4.html'
<HTML>
<TITLE>
MODEST WG4
</TITLE>
<BODY bgcolor=#f7dfb2>
<!--#include virtual="modest_footer.inc" -->
<br>
<h1>MODEST Working Group 4:
<br>
<a href=http://obswww.unige.ch/~freitag/MODEST_WG4/>Stellar Collisions</a>
</h1><br>
<a href=http://obswww.unige.ch/~freitag/MODEST_WG4/>
<img src=wg4_image.gif align=right>
</a>
Collisions between stars in dense stellar systems are thought to
produce tell-tale `stellar exotica,' i.e. stars with a peculiar
structure and evolution, like blue stragglers or very massive
stars. They also influence the overall dynamics by changing the
number, masses and orbits of stars. In galactic nuclei, collisional
mass loss contributes to the feeding of massive black holes. Our goals
are to understand and describe stellar collisions through
hydrodynamical simulations and (semi)analytical calculations and to
develop numerical methods to incorporate that knowledge into stellar
dynamical models.
<br><br><br>
<table>
<tr><td width=100>Contact:</td>
<td><a href=mailto:[email protected]>Marc Freitag</a>
</tr>
<tr><td> </td></tr>
<tr><td>Web site:</td>
<td><a href=http://obswww.unige.ch/~freitag/MODEST_WG4>WG4</a></td>
</tr>
</table>
<br><HR WIDTH="100%">
<FONT SIZE=-2>
Page last modified:
<!--#echo var="LAST_MODIFIED" -->.
<!--#config timefmt="%d-%h-%Y" -->
<br>Please direct comments, criticisms, corrections
and contributions to Steve McMillan: <I>
<A HREF="mailto:[email protected]">
steve (at) physics.drexel.edu</A></I>.
</FONT>
</body>
</HTML>
End of ./modest-save/modest_wg4.html
echo Unbundling file ./modest-save/modest_wg4.html ... 1>&2
cat >./modest-save/modest_wg4.html <<'End of ./modest-save/modest_wg4.html'
<HTML>
<TITLE>
MODEST WG4
</TITLE>
<BODY bgcolor=#f7dfb2>
<!--#include virtual="modest_footer.inc" -->
<br>
<h1>MODEST Working Group 4:
<br>
<a href=http://obswww.unige.ch/~freitag/MODEST_WG4/>Stellar Collisions</a>
</h1><br>
<a href=http://obswww.unige.ch/~freitag/MODEST_WG4/>
<img src=wg4_image.gif align=right>
</a>
Collisions between stars in dense stellar systems are thought to
produce tell-tale `stellar exotica,' i.e. stars with a peculiar
structure and evolution, like blue stragglers or very massive
stars. They also influence the overall dynamics by changing the
number, masses and orbits of stars. In galactic nuclei, collisional
mass loss contributes to the feeding of massive black holes. Our goals
are to understand and describe stellar collisions through
hydrodynamical simulations and (semi)analytical calculations and to
develop numerical methods to incorporate that knowledge into stellar
dynamical models.
<br><br><br>
<table>
<tr><td width=100>Contact:</td>
<td><a href=mailto:[email protected]>Marc Freitag</a>