tbx 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (81) hide show
  1. checksums.yaml +7 -0
  2. data/.github/workflows/rake.yml +15 -0
  3. data/.github/workflows/release.yml +29 -0
  4. data/.gitignore +16 -0
  5. data/.rspec +3 -0
  6. data/.rubocop.yml +17 -0
  7. data/.rubocop_todo.yml +16 -0
  8. data/CHANGELOG.md +5 -0
  9. data/CLAUDE.md +124 -0
  10. data/CODE_OF_CONDUCT.md +10 -0
  11. data/Gemfile +15 -0
  12. data/README.adoc +156 -0
  13. data/Rakefile +12 -0
  14. data/lib/tbx/admin.rb +35 -0
  15. data/lib/tbx/admin_grp.rb +25 -0
  16. data/lib/tbx/admin_note.rb +25 -0
  17. data/lib/tbx/back.rb +17 -0
  18. data/lib/tbx/body.rb +17 -0
  19. data/lib/tbx/change.rb +19 -0
  20. data/lib/tbx/concept_entry.rb +33 -0
  21. data/lib/tbx/date.rb +16 -0
  22. data/lib/tbx/descrip.rb +35 -0
  23. data/lib/tbx/descrip_grp.rb +31 -0
  24. data/lib/tbx/descrip_note.rb +25 -0
  25. data/lib/tbx/document.rb +23 -0
  26. data/lib/tbx/ec.rb +28 -0
  27. data/lib/tbx/encoding_desc.rb +17 -0
  28. data/lib/tbx/file_desc.rb +21 -0
  29. data/lib/tbx/foreign.rb +29 -0
  30. data/lib/tbx/hi.rb +19 -0
  31. data/lib/tbx/item.rb +29 -0
  32. data/lib/tbx/item_grp.rb +29 -0
  33. data/lib/tbx/item_set.rb +21 -0
  34. data/lib/tbx/lang_sec.rb +33 -0
  35. data/lib/tbx/namespaces.rb +9 -0
  36. data/lib/tbx/note.rb +29 -0
  37. data/lib/tbx/p.rb +31 -0
  38. data/lib/tbx/ph.rb +14 -0
  39. data/lib/tbx/publication_stmt.rb +17 -0
  40. data/lib/tbx/ref.rb +25 -0
  41. data/lib/tbx/ref_object.rb +21 -0
  42. data/lib/tbx/ref_object_sec.rb +19 -0
  43. data/lib/tbx/revision_desc.rb +19 -0
  44. data/lib/tbx/sc.rb +22 -0
  45. data/lib/tbx/source_desc.rb +19 -0
  46. data/lib/tbx/tbx_header.rb +21 -0
  47. data/lib/tbx/term.rb +19 -0
  48. data/lib/tbx/term_note.rb +35 -0
  49. data/lib/tbx/term_note_grp.rb +29 -0
  50. data/lib/tbx/term_sec.rb +37 -0
  51. data/lib/tbx/text_element.rb +19 -0
  52. data/lib/tbx/title.rb +19 -0
  53. data/lib/tbx/title_stmt.rb +21 -0
  54. data/lib/tbx/transac.rb +25 -0
  55. data/lib/tbx/transac_grp.rb +27 -0
  56. data/lib/tbx/transac_note.rb +25 -0
  57. data/lib/tbx/version.rb +5 -0
  58. data/lib/tbx/xref.rb +21 -0
  59. data/lib/tbx.rb +67 -0
  60. data/reference-docs/schemas/TBX-Basic_DCA.sch +142 -0
  61. data/reference-docs/schemas/TBX-Basic_dialect_v1/DCA/Example_Astronomy_DCA_VALID.tbx +4032 -0
  62. data/reference-docs/schemas/TBX-Basic_dialect_v1/DCA/TBX-Basic_DCA.sch +142 -0
  63. data/reference-docs/schemas/TBX-Basic_dialect_v1/DCT/Example_Astronomy_DCT_VALID.tbx +4021 -0
  64. data/reference-docs/schemas/TBX-Basic_dialect_v1/DCT/TBX-Basic.nvdl +33 -0
  65. data/reference-docs/schemas/TBX-Basic_dialect_v1/DCT/TBX-Basic_DCT.sch +48 -0
  66. data/reference-docs/schemas/TBX-Basic_dialect_v1/Modules/TBX_basic_module/Basic Module Definition.docx +0 -0
  67. data/reference-docs/schemas/TBX-Basic_dialect_v1/Modules/TBX_basic_module/Basic Module Definition.pdf +0 -0
  68. data/reference-docs/schemas/TBX-Basic_dialect_v1/Modules/TBX_basic_module/Basic.rng +164 -0
  69. data/reference-docs/schemas/TBX-Basic_dialect_v1/Modules/TBX_basic_module/Basic.sch +60 -0
  70. data/reference-docs/schemas/TBX-Basic_dialect_v1/Modules/TBX_basic_module/Basic.tbxmd +125 -0
  71. data/reference-docs/schemas/TBX-Basic_dialect_v1/Modules/TBX_min_module/Min Module Definition.docx +0 -0
  72. data/reference-docs/schemas/TBX-Basic_dialect_v1/Modules/TBX_min_module/Min Module Definition.pdf +0 -0
  73. data/reference-docs/schemas/TBX-Basic_dialect_v1/Modules/TBX_min_module/Min.rng +77 -0
  74. data/reference-docs/schemas/TBX-Basic_dialect_v1/Modules/TBX_min_module/Min.sch +24 -0
  75. data/reference-docs/schemas/TBX-Basic_dialect_v1/Modules/TBX_min_module/Min.tbxmd +42 -0
  76. data/reference-docs/schemas/TBX-Basic_dialect_v1/TBX-Basic Definition.docx +0 -0
  77. data/reference-docs/schemas/TBX-Basic_dialect_v1/TBX-Basic Definition.pdf +0 -0
  78. data/reference-docs/schemas/TBX_core.xsd +534 -0
  79. data/reference-docs/schemas/TBXcoreStructV03.rng +713 -0
  80. data/tbx.gemspec +35 -0
  81. metadata +140 -0
@@ -0,0 +1,4032 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <?xml-model href="https://raw.githubusercontent.com/LTAC-Global/TBX_Core_RNG/master/TBXcoreStructV03.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
3
+ <?xml-model href="https://raw.githubusercontent.com/LTAC-Global/TBX-Basic_dialect/master/DCA/TBX-Basic_DCA.sch" type="application/xml" schematypens="http://purl.oclc.org/dsdl/schematron"?>
4
+ <tbx type="TBX-Basic" style="dca" xml:lang="en" xmlns="urn:iso:std:iso:30042:ed-2">
5
+ <tbxHeader>
6
+ <fileDesc>
7
+ <publicationStmt>
8
+ <p>This is a Publication Statement</p>
9
+ <p>This is another P of Publication Statement</p>
10
+ </publicationStmt>
11
+ <sourceDesc>
12
+ <p>TBX file, created via MultiTerm Export</p>
13
+ </sourceDesc>
14
+ </fileDesc>
15
+ </tbxHeader>
16
+
17
+ <text>
18
+ <body>
19
+ <conceptEntry id="c1">
20
+ <transacGrp>
21
+ <transac type="transactionType">origination</transac>
22
+ <date>2010-04-17</date>
23
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
24
+ </transacGrp>
25
+ <transacGrp>
26
+ <transac type="transactionType">modification</transac>
27
+ <date>2010-05-01</date>
28
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
29
+ </transacGrp>
30
+
31
+ <descrip type="subjectField">General</descrip>
32
+ <xref type="xGraphic" target="https://en.wikipedia.org/wiki/Galaxy_cluster#/media/File:Galaxy_cluster_IDCS_J1426.jpg">Open_Cluster.JPG</xref>
33
+ <note>G-Source: http://www.physics.drexel.edu/observatory/dump.shtml</note>
34
+ <langSec xml:lang="en">
35
+ <transacGrp>
36
+ <transac type="transactionType">origination</transac>
37
+ <date>2010-04-17</date>
38
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
39
+ </transacGrp>
40
+ <transacGrp>
41
+ <transac type="transactionType">modification</transac>
42
+ <date>2010-04-17</date>
43
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
44
+ </transacGrp>
45
+ <transacGrp>
46
+ <transac type="transactionType">origination</transac>
47
+ <date>2010-04-17</date>
48
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
49
+ </transacGrp>
50
+ <transacGrp>
51
+ <transac type="transactionType">modification</transac>
52
+ <date>2010-04-17</date>
53
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
54
+ </transacGrp>
55
+ <descripGrp>
56
+ <descrip type="definition">A group of stars formed together in the spiral
57
+ arms of a galaxy.</descrip>
58
+ <admin type="source">Oxford2007</admin>
59
+ </descripGrp>
60
+ <termSec>
61
+ <term>open cluster</term>
62
+
63
+
64
+ <termNote type="partOfSpeech">noun</termNote>
65
+ <termNote type="administrativeStatus">preferredTerm-admn-sts</termNote>
66
+ <descripGrp>
67
+ <descrip type="context">Over 1100 open clusters are known in our Milky
68
+ Way Galaxy, and this is probably only a small percentage of the
69
+ total population which is probably some factor higher; estimates of
70
+ as many as about 100,000 Milky Way open clusters have been given. </descrip>
71
+ <admin type="source">http://seds.org/MESSIER/open.html</admin>
72
+ </descripGrp>
73
+ </termSec>
74
+ <termSec>
75
+ <term>galactic cluster</term>
76
+
77
+
78
+ <termNote type="partOfSpeech">noun</termNote>
79
+ <termNote type="administrativeStatus">supersededTerm-admn-sts</termNote>
80
+ <descripGrp>
81
+ <descrip type="context">In contrast, the galactic cluster represented by
82
+ M29 is a grouping of stars—a “knot” of stars in the stellar
83
+ backdrop.</descrip>
84
+ <admin type="source">http://www.eastbayastro.org/2000/0900/r0900-8.htm</admin>
85
+ </descripGrp>
86
+ <note>Another name for an open star cluster. They are often termed Galactic
87
+ Clusters because they are found mainly in the plane of our galaxy. If
88
+ you were to view our galaxy from afar, you would find that all the
89
+ open/galactic clusters lie within the spiral arms of the galaxy.</note>
90
+ <note>N-Source:
91
+ http://www.delscope.demon.co.uk/astronomy/glossary.htm#G</note>
92
+ </termSec>
93
+ </langSec>
94
+ <langSec xml:lang="es">
95
+ <transacGrp>
96
+ <transac type="transactionType">origination</transac>
97
+ <date>2010-04-17</date>
98
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
99
+ </transacGrp>
100
+ <transacGrp>
101
+ <transac type="transactionType">modification</transac>
102
+ <date>2010-04-17</date>
103
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
104
+ </transacGrp>
105
+ <descripGrp>
106
+ <descrip type="definition">Una acumulación de una docena hasta varios miles
107
+ de jóvenes estrellas en el plano de las galaxias.</descrip>
108
+ <admin type="source">http://www.espacioprofundo.com.ar/diccionario/Glosario_de_Astronomia/vertermino/Cumulo_abierto.html</admin>
109
+ </descripGrp>
110
+ <termSec>
111
+ <term>cúmulo abierto</term>
112
+
113
+
114
+ <termNote type="partOfSpeech">noun</termNote>
115
+ <descripGrp>
116
+ <descrip type="context">M7 es uno de los cúmulos abiertos estelares más
117
+ prominentes del cielo. El cúmulo, dominado por brillantes estrellas
118
+ azules, puede ser visto a ojo desnudo en un cielo oscuro en la cola
119
+ de la constelación del Escorpión (Scorpius).Contiene unas 100
120
+ estrellas en total, tiene una edad aproximada de 200 millones de
121
+ años, mide 25 años luz de ancho, y se encuentra a unos 1000 años luz
122
+ de distancia.</descrip>
123
+ <admin type="source">http://observatorio.info/2009/11/m7-cumulo-abierto-en-scorpius-2/</admin>
124
+ </descripGrp>
125
+ </termSec>
126
+ </langSec>
127
+ </conceptEntry>
128
+
129
+
130
+ <conceptEntry id="c2">
131
+ <transacGrp>
132
+ <transac type="transactionType">origination</transac>
133
+ <date>2010-04-17</date>
134
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
135
+ </transacGrp>
136
+ <transacGrp>
137
+ <transac type="transactionType">modification</transac>
138
+ <date>2010-04-24</date>
139
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
140
+ </transacGrp>
141
+ <descrip type="subjectField">Stellar Birth</descrip>
142
+ <xref type="xGraphic" target="https://en.wikipedia.org/wiki/Accretion_disk#/media/File:Star_with_accretion_disk.jpg">Accretion_Disk.jpg</xref>
143
+ <note>G-Source:
144
+ http://www.cfht.hawaii.edu/Instruments/Spectroscopy/Espadons/www.ast.obs-mip.fr/users/donati/press/fuori_eng.html</note>
145
+ <langSec xml:lang="en">
146
+ <transacGrp>
147
+ <transac type="transactionType">origination</transac>
148
+ <date>2010-04-17</date>
149
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
150
+ </transacGrp>
151
+ <transacGrp>
152
+ <transac type="transactionType">modification</transac>
153
+ <date>2010-04-17</date>
154
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
155
+ </transacGrp>
156
+ <transacGrp>
157
+ <transac type="transactionType">origination</transac>
158
+ <date>2010-04-17</date>
159
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
160
+ </transacGrp>
161
+ <transacGrp>
162
+ <transac type="transactionType">modification</transac>
163
+ <date>2010-04-17</date>
164
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
165
+ </transacGrp>
166
+ <transacGrp>
167
+ <transac type="transactionType">origination</transac>
168
+ <date>2010-04-17</date>
169
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
170
+ </transacGrp>
171
+ <transacGrp>
172
+ <transac type="transactionType">modification</transac>
173
+ <date>2010-04-17</date>
174
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
175
+ </transacGrp>
176
+ <descripGrp>
177
+ <descrip type="definition">A structure that forms around a compact object
178
+ (e.g. a white dwarf, neutron star, or black hole) when matter flows
179
+ towards it.</descrip>
180
+ <admin type="source">Oxford2007</admin>
181
+ </descripGrp>
182
+ <termSec>
183
+ <term>circumstellar accretion disk</term>
184
+
185
+
186
+ <termNote type="partOfSpeech">noun</termNote>
187
+ <termNote type="administrativeStatus">preferredTerm-admn-sts</termNote>
188
+ <termNote type="termType">fullForm</termNote>
189
+ <descripGrp>
190
+ <descrip type="context">In contrast with the violence of merging, the
191
+ gradual growth of massive stars by accretion is likely to produce
192
+ less infrared variability, relatively thin circumstellar accretion
193
+ disks that maintain their orientation, and collimated bipolar
194
+ outflows that are scaled-up versions of those produced by low-mass
195
+ young stellar objects.</descrip>
196
+ <admin type="source">Bally2005</admin>
197
+ </descripGrp>
198
+ </termSec>
199
+ <termSec>
200
+ <term>accretion disc</term>
201
+
202
+
203
+ <termNote type="partOfSpeech">noun</termNote>
204
+ <termNote type="administrativeStatus">admittedTerm-admn-sts</termNote>
205
+ <descripGrp>
206
+ <descrip type="context">Accretion Disc Evolution in Single and Binary T
207
+ Tauri Stars</descrip>
208
+ <admin type="source">http://cdsweb.cern.ch/record/369655</admin>
209
+ </descripGrp>
210
+ </termSec>
211
+ <termSec>
212
+ <term>circumstellar disk</term>
213
+
214
+
215
+ <termNote type="partOfSpeech">noun</termNote>
216
+ <termNote type="administrativeStatus">admittedTerm-admn-sts</termNote>
217
+ <descripGrp>
218
+ <descrip type="context">Our results suggest a scenario of a central star
219
+ accreting material from a circumstellar disc at the centre of a cool
220
+ extended rotating torus, while driving a fast bipolar wind. </descrip>
221
+ <admin type="source">http://adsabs.harvard.edu/abs/2010MNRAS.402.1504D</admin>
222
+ </descripGrp>
223
+ </termSec>
224
+ </langSec>
225
+ <langSec xml:lang="es">
226
+ <transacGrp>
227
+ <transac type="transactionType">origination</transac>
228
+ <date>2010-04-17</date>
229
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
230
+ </transacGrp>
231
+ <transacGrp>
232
+ <transac type="transactionType">modification</transac>
233
+ <date>2010-04-17</date>
234
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
235
+ </transacGrp>
236
+ <transacGrp>
237
+ <transac type="transactionType">origination</transac>
238
+ <date>2010-04-17</date>
239
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
240
+ </transacGrp>
241
+ <transacGrp>
242
+ <transac type="transactionType">modification</transac>
243
+ <date>2010-04-17</date>
244
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
245
+ </transacGrp>
246
+ <descripGrp>
247
+ <descrip type="definition">Una estructura en forma de disco alrededor de un
248
+ objeto central masivo que alimenta el cuerpo central siendo atraido por
249
+ éste y contribuye a su aumento de masa.</descrip>
250
+ <admin type="source">http://es.wikipedia.org/wiki/Disco_de_acreci%C3%B3n</admin>
251
+ </descripGrp>
252
+ <termSec>
253
+ <term>disco de acreción</term>
254
+
255
+
256
+ <termNote type="partOfSpeech">noun</termNote>
257
+ <termNote type="administrativeStatus">preferredTerm-admn-sts</termNote>
258
+ <descripGrp>
259
+ <descrip type="context">Lo que alimenta esta actividad es el gas
260
+ extraído de la estrella normal, que, cayendo en espiral hacia el
261
+ agujero negro, se acumula en un denso disco de acreción.</descrip>
262
+ <admin type="source">http://www.amazings.com/ciencia/noticias/010210e.html</admin>
263
+ </descripGrp>
264
+ </termSec>
265
+ <termSec>
266
+ <term>disco de acrecimiento</term>
267
+
268
+
269
+ <termNote type="partOfSpeech">noun</termNote>
270
+ <termNote type="administrativeStatus">admittedTerm-admn-sts</termNote>
271
+ <descripGrp>
272
+ <descrip type="context">Imágenes de estrellas jóvenes con discos de
273
+ acrecimeinto y chorros colimados de material, tomadas con el
274
+ telescopio espacial Hubble.</descrip>
275
+ <admin type="source">http://www.laeff.inta.es/index.php?op=modload&amp;name=phpWiki&amp;file=index&amp;pagename=Research-Brown%20Dwarfs-BD_esp-DiscosAcrecimiento</admin>
276
+ </descripGrp>
277
+ </termSec>
278
+ </langSec>
279
+ </conceptEntry>
280
+
281
+
282
+ <conceptEntry id="c3">
283
+ <transacGrp>
284
+ <transac type="transactionType">origination</transac>
285
+ <date>2010-04-17</date>
286
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
287
+ </transacGrp>
288
+ <transacGrp>
289
+ <transac type="transactionType">modification</transac>
290
+ <date>2010-05-01</date>
291
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
292
+ </transacGrp>
293
+ <descrip type="subjectField">Stellar Death</descrip>
294
+ <xref type="xGraphic" target="https://en.wikipedia.org/wiki/Black_hole#/media/File:BH_LMC.png">Black_Hole.jpg</xref>
295
+ <note>G-Source: http://wallpaper-s.org/12__Supermassive_Black_Hole.htm</note>
296
+ <langSec xml:lang="en">
297
+ <transacGrp>
298
+ <transac type="transactionType">origination</transac>
299
+ <date>2010-04-17</date>
300
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
301
+ </transacGrp>
302
+ <transacGrp>
303
+ <transac type="transactionType">modification</transac>
304
+ <date>2010-04-17</date>
305
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
306
+ </transacGrp>
307
+ <descripGrp>
308
+ <descrip type="definition">A region of space where the gravitational force
309
+ is so strong that not even light can escape from it.</descrip>
310
+ <admin type="source">Cambridge2007</admin>
311
+ </descripGrp>
312
+ <termSec>
313
+ <term>black hole</term>
314
+
315
+
316
+ <termNote type="partOfSpeech">noun</termNote>
317
+ <descripGrp>
318
+ <descrip type="context">As matter spirals toward and into the black
319
+ hole, some of its gravitational potential energy may be efficiently
320
+ converted into relativistic jets launched by the magnetic field
321
+ along the spin axis.</descrip>
322
+ <admin type="source">Bally2005</admin>
323
+ </descripGrp>
324
+ </termSec>
325
+ </langSec>
326
+ <langSec xml:lang="es">
327
+ <transacGrp>
328
+ <transac type="transactionType">origination</transac>
329
+ <date>2010-04-17</date>
330
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
331
+ </transacGrp>
332
+ <transacGrp>
333
+ <transac type="transactionType">modification</transac>
334
+ <date>2010-04-17</date>
335
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
336
+ </transacGrp>
337
+ <descripGrp>
338
+ <descrip type="definition">Un punto super-denso en el espacio formado por el
339
+ colapso de una estrella donde nada puede escapar de su influencia
340
+ gravitacional. </descrip>
341
+ <admin type="source">www.atlasoftheuniverse.com/espanol/glossary.html</admin>
342
+ </descripGrp>
343
+ <termSec>
344
+ <term>agujero negro</term>
345
+
346
+
347
+ <termNote type="partOfSpeech">noun</termNote>
348
+ <descripGrp>
349
+ <descrip type="context">En teoría un agujero negro se origina hacia el
350
+ final de la vida de una estrella, cuando ésta se contrae mas allá de
351
+ un límite determinado - conocido como radio de Schwarzschild - y se
352
+ hace más pequeña y mas densa que una estrella de neutrones, tanto
353
+ que ni la luz puede escapar de su campo gravitatorio.</descrip>
354
+ <admin type="source">http://html.rincondelvago.com/agujeros-negros_5.html</admin>
355
+ </descripGrp>
356
+ </termSec>
357
+ </langSec>
358
+ </conceptEntry>
359
+
360
+
361
+ <conceptEntry id="c4">
362
+ <transacGrp>
363
+ <transac type="transactionType">origination</transac>
364
+ <date>2010-04-17</date>
365
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
366
+ </transacGrp>
367
+ <transacGrp>
368
+ <transac type="transactionType">modification</transac>
369
+ <date>2010-05-01</date>
370
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
371
+ </transacGrp>
372
+ <descrip type="subjectField">General</descrip>
373
+ <xref type="xGraphic" target="https://en.wikipedia.org/wiki/Gamma-ray_burst#/media/File:GRB080319B_illustration_NASA.jpg">Gamma_Ray_Burst.jpg</xref>
374
+ <note>G-Source:
375
+ http://nakedmaninthetree.wordpress.com/2009/02/22/galaxies-and-the-future/</note>
376
+ <langSec xml:lang="en">
377
+ <transacGrp>
378
+ <transac type="transactionType">origination</transac>
379
+ <date>2010-04-17</date>
380
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
381
+ </transacGrp>
382
+ <transacGrp>
383
+ <transac type="transactionType">modification</transac>
384
+ <date>2010-04-17</date>
385
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
386
+ </transacGrp>
387
+ <transacGrp>
388
+ <transac type="transactionType">origination</transac>
389
+ <date>2010-04-17</date>
390
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
391
+ </transacGrp>
392
+ <transacGrp>
393
+ <transac type="transactionType">modification</transac>
394
+ <date>2010-04-17</date>
395
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
396
+ </transacGrp>
397
+ <descripGrp>
398
+ <descrip type="definition">A temporary intese burst of gamma rays and X-rays
399
+ from a cosmic source.</descrip>
400
+ <admin type="source">Cambridge2007</admin>
401
+ </descripGrp>
402
+ <termSec>
403
+ <term>gamma-ray burst</term>
404
+
405
+
406
+ <termNote type="partOfSpeech">noun</termNote>
407
+ <termNote type="termType">fullForm</termNote>
408
+ <descripGrp>
409
+ <descrip type="context">The extremely rare merger of two stars close to
410
+ the upper-mass end of the initial mass function may be a possible
411
+ pathway to hypernova-generated gamma-ray bursts.</descrip>
412
+ <admin type="source">Bally2005</admin>
413
+ </descripGrp>
414
+ </termSec>
415
+ <termSec>
416
+ <term>GRB</term>
417
+
418
+
419
+ <termNote type="partOfSpeech">noun</termNote>
420
+ <termNote type="termType">acronym</termNote>
421
+ <descripGrp>
422
+ <descrip type="context">The off-axis collisions and merging of stars
423
+ near the top of the stellar mass spectrum may result in the
424
+ production of GRBs.</descrip>
425
+ <admin type="source">Bally2005</admin>
426
+ </descripGrp>
427
+ </termSec>
428
+ </langSec>
429
+ <langSec xml:lang="es">
430
+ <transacGrp>
431
+ <transac type="transactionType">origination</transac>
432
+ <date>2010-04-17</date>
433
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
434
+ </transacGrp>
435
+ <transacGrp>
436
+ <transac type="transactionType">modification</transac>
437
+ <date>2010-04-17</date>
438
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
439
+ </transacGrp>
440
+ <transacGrp>
441
+ <transac type="transactionType">origination</transac>
442
+ <date>2010-04-17</date>
443
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
444
+ </transacGrp>
445
+ <transacGrp>
446
+ <transac type="transactionType">modification</transac>
447
+ <date>2010-04-17</date>
448
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
449
+ </transacGrp>
450
+ <descripGrp>
451
+ <descrip type="definition">Destellos de rayos gamma que pueden durar desde
452
+ unos nanosegundos hasta cerca de una hora.</descrip>
453
+ <admin type="source">http://es.wikipedia.org/wiki/Brote_de_rayos_gamma</admin>
454
+ </descripGrp>
455
+ <termSec>
456
+ <term>explosión de rayos gamma</term>
457
+
458
+
459
+ <termNote type="partOfSpeech">noun</termNote>
460
+ <descripGrp>
461
+ <descrip type="context">Una poderosa explosión de rayos gamma, detectada
462
+ el 19 de marzo por el satélite Swift, de la NASA, batió el récord
463
+ como el objeto más distante que se pudo observar a simple
464
+ vista.</descrip>
465
+ <admin type="source">http://ciencia.nasa.gov/headlines/y2008/21mar_nakedeye.htm</admin>
466
+ </descripGrp>
467
+ </termSec>
468
+ <termSec>
469
+ <term>brote de rayos gamma</term>
470
+
471
+
472
+ <termNote type="partOfSpeech">noun</termNote>
473
+ <descripGrp>
474
+ <descrip type="context">John Ellis (entrevistado por Punset en su
475
+ despacho en el CERN en un programa de Redes) y sus colaboradores
476
+ mostraron cómo utilizar las propiedades de los grandes brotes de
477
+ rayos gamma (gamma-ray bursters o GRBs) para responder a esta
478
+ cuestión.</descrip>
479
+ <admin type="source">http://francisthemulenews.wordpress.com/2009/02/21/el-mayor-brote-de-rayos-gamma-grb-080916c-acerca-la-gravedad-cuantica-al-mundo-de-planck/</admin>
480
+ </descripGrp>
481
+ </termSec>
482
+ </langSec>
483
+ </conceptEntry>
484
+
485
+
486
+ <conceptEntry id="c5">
487
+ <transacGrp>
488
+ <transac type="transactionType">origination</transac>
489
+ <date>2010-04-17</date>
490
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
491
+ </transacGrp>
492
+ <transacGrp>
493
+ <transac type="transactionType">modification</transac>
494
+ <date>2010-05-01</date>
495
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
496
+ </transacGrp>
497
+ <descrip type="subjectField">General</descrip>
498
+ <xref type="xGraphic" target="https://en.wikipedia.org/wiki/Globular_cluster#/media/File:A_Swarm_of_Ancient_Stars_-_GPN-2000-000930.jpg">Globular_Cluster.jpg</xref>
499
+ <note>G-Source: http://www.astrographics.com/GalleryPrintsIndex/GP0046.html</note>
500
+ <langSec xml:lang="en">
501
+ <transacGrp>
502
+ <transac type="transactionType">origination</transac>
503
+ <date>2010-04-17</date>
504
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
505
+ </transacGrp>
506
+ <transacGrp>
507
+ <transac type="transactionType">modification</transac>
508
+ <date>2010-04-17</date>
509
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
510
+ </transacGrp>
511
+ <descripGrp>
512
+ <descrip type="definition">A roughly spherical group of old stars in the
513
+ halo of the galaxy.</descrip>
514
+ <admin type="source">Oxford2007</admin>
515
+ </descripGrp>
516
+ <termSec>
517
+ <term>globular cluster</term>
518
+
519
+
520
+ <termNote type="partOfSpeech">noun</termNote>
521
+ <descripGrp>
522
+ <descrip type="context">Although the standard accretion scenario may
523
+ well explain the formation of most massive stars, the existence of
524
+ blue stragglers in globular clusters indicates that mergers do occur
525
+ in nature.</descrip>
526
+ <admin type="source">Birth of High-Mass Stars</admin>
527
+ </descripGrp>
528
+ <note>Related Term: star cluster</note>
529
+ </termSec>
530
+ </langSec>
531
+ <langSec xml:lang="es">
532
+ <transacGrp>
533
+ <transac type="transactionType">origination</transac>
534
+ <date>2010-04-17</date>
535
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
536
+ </transacGrp>
537
+ <transacGrp>
538
+ <transac type="transactionType">modification</transac>
539
+ <date>2010-04-17</date>
540
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
541
+ </transacGrp>
542
+ <descripGrp>
543
+ <descrip type="definition">Un tipo de cúmulo estelar que consiste en una
544
+ agrupación de miles de estrellas viejas, gravitacionalmente ligadas, con
545
+ distribución aproximadamente esférica, y que orbita en torno a una
546
+ galaxia de manera similar a un satélite.</descrip>
547
+ <admin type="source">http://es.wikipedia.org/wiki/C%C3%BAmulo_globular</admin>
548
+ </descripGrp>
549
+ <termSec>
550
+ <term>cúmulo globular</term>
551
+
552
+
553
+ <termNote type="partOfSpeech">noun</termNote>
554
+ <descripGrp>
555
+ <descrip type="context"> De los 200 cúmulos globulares que sobreviven
556
+ hoy, M3 es uno de los más grande y luminoso, fácilmente observable
557
+ con binoculares en el hemisferio Norte del cielo.</descrip>
558
+ <admin type="source">http://www.tayabeixo.org/portadas/m3.htm</admin>
559
+ </descripGrp>
560
+ <note>Related Term: cúmulo estelar</note>
561
+ </termSec>
562
+ </langSec>
563
+ </conceptEntry>
564
+
565
+
566
+ <conceptEntry id="c6">
567
+ <transacGrp>
568
+ <transac type="transactionType">origination</transac>
569
+ <date>2010-04-17</date>
570
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
571
+ </transacGrp>
572
+ <transacGrp>
573
+ <transac type="transactionType">modification</transac>
574
+ <date>2010-05-01</date>
575
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
576
+ </transacGrp>
577
+ <descrip type="subjectField">General</descrip>
578
+ <xref type="xGraphic" target="https://en.wikipedia.org/wiki/Main_sequence#/media/File:HRDiagram.png">Main_Sequence.jpg</xref>
579
+ <langSec xml:lang="en">
580
+ <transacGrp>
581
+ <transac type="transactionType">origination</transac>
582
+ <date>2010-04-17</date>
583
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
584
+ </transacGrp>
585
+ <transacGrp>
586
+ <transac type="transactionType">modification</transac>
587
+ <date>2010-04-17</date>
588
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
589
+ </transacGrp>
590
+ <note>G-Source: http://www.skyofplenty.com/?page_id=374</note>
591
+ <descripGrp>
592
+ <descrip type="definition">Of or dealing with a major group of stars forming
593
+ a band stretching from upper left to lower right on a
594
+ Hertzsprung-Russell diagram when being plotted by luminosity and surface
595
+ temperature.</descrip>
596
+ <admin type="source">http://en.wiktionary.org/wiki/main-sequence</admin>
597
+ </descripGrp>
598
+ <termSec>
599
+ <term>main-sequence</term>
600
+
601
+
602
+ <termNote type="partOfSpeech">adjective</termNote>
603
+ <descripGrp>
604
+ <descrip type="context">However, immediately after its formation, the
605
+ merger product is likely to have a photospheric radius considerably
606
+ larger than that of a main-sequence star with the same
607
+ mass.</descrip>
608
+ <admin type="source">Bally2005</admin>
609
+ </descripGrp>
610
+ </termSec>
611
+ </langSec>
612
+ <langSec xml:lang="es">
613
+ <transacGrp>
614
+ <transac type="transactionType">origination</transac>
615
+ <date>2010-04-17</date>
616
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
617
+ </transacGrp>
618
+ <transacGrp>
619
+ <transac type="transactionType">modification</transac>
620
+ <date>2010-04-17</date>
621
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
622
+ </transacGrp>
623
+ <descripGrp>
624
+ <descrip type="definition">Pertenece a las estrellas en la región del
625
+ diagrama de Hertzsprung-Russell en la que se encuentran la mayor parte
626
+ de las estrellas que transforman hidrógeno en helio.</descrip>
627
+ <admin type="source">http://es.wikipedia.org/wiki/Secuencia_principal</admin>
628
+ </descripGrp>
629
+ <termSec>
630
+ <term>de secuencia principal</term>
631
+
632
+
633
+ <termNote type="partOfSpeech">adjective</termNote>
634
+ <descripGrp>
635
+ <descrip type="context">Por ejemplo, nuestro sol es una estrella de
636
+ secuencia principal regular de tamaño pequeño. </descrip>
637
+ <admin type="source">http://celestia.albacete.org/celestia/celestia/stars/secu5.htm</admin>
638
+ </descripGrp>
639
+ </termSec>
640
+ </langSec>
641
+ </conceptEntry>
642
+
643
+
644
+ <conceptEntry id="c7">
645
+ <transacGrp>
646
+ <transac type="transactionType">origination</transac>
647
+ <date>2010-04-17</date>
648
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
649
+ </transacGrp>
650
+ <transacGrp>
651
+ <transac type="transactionType">modification</transac>
652
+ <date>2010-04-24</date>
653
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
654
+ </transacGrp>
655
+ <descrip type="subjectField">Stellar Birth</descrip>
656
+ <xref type="xGraphic" target="https://en.wikipedia.org/wiki/Protostar#/media/File:A_diamond_in_the_dust.jpg">Protostar.JPG</xref>
657
+ <note>G-Source: http://www.konkoly.hu/KISAG/Science/star/star_intro.html</note>
658
+ <langSec xml:lang="en">
659
+ <transacGrp>
660
+ <transac type="transactionType">origination</transac>
661
+ <date>2010-04-17</date>
662
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
663
+ </transacGrp>
664
+ <transacGrp>
665
+ <transac type="transactionType">modification</transac>
666
+ <date>2010-04-17</date>
667
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
668
+ </transacGrp>
669
+ <descripGrp>
670
+ <descrip type="definition">A star in the earliest observable stage of
671
+ formation.</descrip>
672
+ <admin type="source">Cambridge2007</admin>
673
+ </descripGrp>
674
+ <termSec>
675
+ <term>protostar</term>
676
+
677
+
678
+ <termNote type="partOfSpeech">noun</termNote>
679
+ <descripGrp>
680
+ <descrip type="context">Alternatively, it has been suggested that
681
+ massive stars form from the merging of lower mass protostars in
682
+ high-density protostar clusters (Bonnell et al.1998; Stahler et al.
683
+ 2000; Bonnell 2002; Zinnecker &amp; Bate 2002).</descrip>
684
+ <admin type="source">Bally2005</admin>
685
+ </descripGrp>
686
+ </termSec>
687
+ </langSec>
688
+ <langSec xml:lang="es">
689
+ <transacGrp>
690
+ <transac type="transactionType">origination</transac>
691
+ <date>2010-04-17</date>
692
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
693
+ </transacGrp>
694
+ <transacGrp>
695
+ <transac type="transactionType">modification</transac>
696
+ <date>2010-04-17</date>
697
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
698
+ </transacGrp>
699
+ <note>G-Source:
700
+ http://geocities.ws/acarvajaltt/temas/estrellas_nacimiento_estelar.html</note>
701
+ <descripGrp>
702
+ <descrip type="definition">Una región muy densa o descorazonada de nubes
703
+ moleculares donde existen estrellas en proceso de formación.</descrip>
704
+ <admin type="source">www.astrocosmo.cl/glosario/glosar-p.htm</admin>
705
+ </descripGrp>
706
+ <termSec>
707
+ <term>protoestrella</term>
708
+
709
+
710
+ <termNote type="partOfSpeech">noun</termNote>
711
+ <descripGrp>
712
+ <descrip type="context">En estos primeros estadios, la protoestrella es
713
+ un objeto muy activo, y produce un viento bipolar formado por dos
714
+ chorros opuestos de material de alta velocidad. </descrip>
715
+ <admin type="source">http://www.fomento.es/MFOM/LANG_CASTELLANO/DIRECCIONES_GENERALES/INSTITUTO_GEOGRAFICO/Astronomia/InvestermSecacion/astronomia/protoestrellas.htm</admin>
716
+ </descripGrp>
717
+ </termSec>
718
+ </langSec>
719
+ </conceptEntry>
720
+
721
+
722
+ <conceptEntry id="c8">
723
+ <transacGrp>
724
+ <transac type="transactionType">origination</transac>
725
+ <date>2010-04-17</date>
726
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
727
+ </transacGrp>
728
+ <transacGrp>
729
+ <transac type="transactionType">modification</transac>
730
+ <date>2010-05-01</date>
731
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
732
+ </transacGrp>
733
+ <descrip type="subjectField">General</descrip>
734
+ <xref type="xGraphic" target="https://en.wikipedia.org/wiki/Star_cluster#/media/File:M92_arp_750pix.jpg">Star_Cluster.jpg</xref>
735
+ <note>G-Source: http://apod.nasa.gov/apod/ap060109.html</note>
736
+ <langSec xml:lang="en">
737
+ <transacGrp>
738
+ <transac type="transactionType">origination</transac>
739
+ <date>2010-04-17</date>
740
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
741
+ </transacGrp>
742
+ <transacGrp>
743
+ <transac type="transactionType">modification</transac>
744
+ <date>2010-04-17</date>
745
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
746
+ </transacGrp>
747
+ <descripGrp>
748
+ <descrip type="definition">A collection of stars formed together from the
749
+ same gas cloud and bound together by mutual gravitational
750
+ attraction.</descrip>
751
+ <admin type="source">Oxford2007</admin>
752
+ </descripGrp>
753
+ <termSec>
754
+ <term>star cluster</term>
755
+
756
+
757
+ <termNote type="partOfSpeech">noun</termNote>
758
+ <descripGrp>
759
+ <descrip type="context">Most star clusters are too far away and the
760
+ white dwarfs are too faint to be seen by ground-based telescopes,
761
+ but Hubble's powerful vision sees many of them.</descrip>
762
+ <admin type="source">http://hubblesite.org/newscenter/archive/releases/star%20cluster/2008/25/full/</admin>
763
+ </descripGrp>
764
+ <note>Related Term: globular cluster</note>
765
+ <note>Related Term: open cluster</note>
766
+ </termSec>
767
+ </langSec>
768
+ <langSec xml:lang="es">
769
+ <transacGrp>
770
+ <transac type="transactionType">origination</transac>
771
+ <date>2010-04-17</date>
772
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
773
+ </transacGrp>
774
+ <transacGrp>
775
+ <transac type="transactionType">modification</transac>
776
+ <date>2010-04-17</date>
777
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
778
+ </transacGrp>
779
+ <transacGrp>
780
+ <transac type="transactionType">origination</transac>
781
+ <date>2010-04-17</date>
782
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
783
+ </transacGrp>
784
+ <transacGrp>
785
+ <transac type="transactionType">modification</transac>
786
+ <date>2010-04-17</date>
787
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
788
+ </transacGrp>
789
+ <descripGrp>
790
+ <descrip type="definition">Un grupo de estrellas atraídas entre sí por su
791
+ gravedad mutua.</descrip>
792
+ <admin type="source">http://iopscience.iop.org/1538-3881/129/5/2281/pdf/1538-3881_129_5_2281.pdf</admin>
793
+ </descripGrp>
794
+ <termSec>
795
+ <term>cúmulo estelar</term>
796
+
797
+
798
+ <termNote type="partOfSpeech">noun</termNote>
799
+ <termNote type="administrativeStatus">preferredTerm-admn-sts</termNote>
800
+ <descripGrp>
801
+ <descrip type="context">“Es como encontrar un pez fuera del agua”, dice
802
+ Ed Churchwell, profesor de astronomía de la Universidad de
803
+ Wisconsin-Madison, quien con un equipo de científicos de UW-Madison,
804
+ de la Universidad de Wyoming, de la Universidad de Boston, del
805
+ Instituto de Ciencia Espacial de Boulder, Colorado, y del Centro de
806
+ Ciencia Spitzer descubrieron este inusual cúmulo estelar con la
807
+ ayuda del Telescopio Espacial Spitzer de la NASA. </descrip>
808
+ <admin type="source">http://www.astroseti.org/vernew.php?codigo=1117</admin>
809
+ </descripGrp>
810
+ </termSec>
811
+ <termSec>
812
+ <term>cúmulo de estrellas</term>
813
+
814
+
815
+ <termNote type="partOfSpeech">noun</termNote>
816
+ <termNote type="administrativeStatus">admittedTerm-admn-sts</termNote>
817
+ <descripGrp>
818
+ <descrip type="context">Los cúmulos de estrellas se clasifican en dos
819
+ grupos: cúmulos abiertos, que no poseen forma definida, y cúmulos
820
+ globulares, que son esféricos o casi esféricos.</descrip>
821
+ <admin type="source">http://www.astromia.com/universo/cumulos.htm</admin>
822
+ </descripGrp>
823
+ <note>Related Term: cúmulo globular</note>
824
+ <note>Related Term: cúmulo abierto</note>
825
+ </termSec>
826
+ </langSec>
827
+ </conceptEntry>
828
+
829
+
830
+ <conceptEntry id="c9">
831
+ <transacGrp>
832
+ <transac type="transactionType">origination</transac>
833
+ <date>2010-04-17</date>
834
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
835
+ </transacGrp>
836
+ <transacGrp>
837
+ <transac type="transactionType">modification</transac>
838
+ <date>2010-05-01</date>
839
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
840
+ </transacGrp>
841
+ <descrip type="subjectField">General</descrip>
842
+ <xref type="xGraphic" target="https://en.wikipedia.org/wiki/Milky_Way#/media/File:ESO-VLT-Laser-phot-33a-07.jpg">Milky_Way.jpg</xref>
843
+ <langSec xml:lang="en">
844
+ <transacGrp>
845
+ <transac type="transactionType">origination</transac>
846
+ <date>2010-04-17</date>
847
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
848
+ </transacGrp>
849
+ <transacGrp>
850
+ <transac type="transactionType">modification</transac>
851
+ <date>2010-04-17</date>
852
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
853
+ </transacGrp>
854
+ <transacGrp>
855
+ <transac type="transactionType">origination</transac>
856
+ <date>2010-04-17</date>
857
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
858
+ </transacGrp>
859
+ <transacGrp>
860
+ <transac type="transactionType">modification</transac>
861
+ <date>2010-04-17</date>
862
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
863
+ </transacGrp>
864
+ <transacGrp>
865
+ <transac type="transactionType">origination</transac>
866
+ <date>2010-04-17</date>
867
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
868
+ </transacGrp>
869
+ <transacGrp>
870
+ <transac type="transactionType">modification</transac>
871
+ <date>2010-04-17</date>
872
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
873
+ </transacGrp>
874
+ <note>G-Source: http://www.cfa.harvard.edu/~afrebel/milky-way-2.jpg</note>
875
+ <descripGrp>
876
+ <descrip type="definition">A band of faint light across the sky, visible to
877
+ the naked eye on a moonless night, consisting of stars and glowing gas
878
+ in the disk of our own Galaxy.</descrip>
879
+ <admin type="source">Oxford2007</admin>
880
+ </descripGrp>
881
+ <termSec>
882
+ <term>Galaxy</term>
883
+
884
+
885
+ <termNote type="partOfSpeech">noun</termNote>
886
+ <termNote type="termType">shortForm</termNote>
887
+ <descripGrp>
888
+ <descrip type="context">If merging is an important pathway to the
889
+ formation of massive stars, then it is expected that some
890
+ highluminosity IRAS sources in our Galaxy have brightened or faded
891
+ since the IRAS observations were made.</descrip>
892
+ <admin type="source">Bally2005</admin>
893
+ </descripGrp>
894
+ </termSec>
895
+ <termSec>
896
+ <term>Milky Way Galaxy</term>
897
+
898
+
899
+ <termNote type="partOfSpeech">noun</termNote>
900
+ <termNote type="termType">fullForm</termNote>
901
+ </termSec>
902
+ <termSec>
903
+ <term>Milky Way</term>
904
+
905
+
906
+ <termNote type="partOfSpeech">noun</termNote>
907
+ <termNote type="termType">shortForm</termNote>
908
+ </termSec>
909
+ </langSec>
910
+ <langSec xml:lang="es">
911
+ <transacGrp>
912
+ <transac type="transactionType">origination</transac>
913
+ <date>2010-04-17</date>
914
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
915
+ </transacGrp>
916
+ <transacGrp>
917
+ <transac type="transactionType">modification</transac>
918
+ <date>2010-04-17</date>
919
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
920
+ </transacGrp>
921
+ <transacGrp>
922
+ <transac type="transactionType">origination</transac>
923
+ <date>2010-04-17</date>
924
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
925
+ </transacGrp>
926
+ <transacGrp>
927
+ <transac type="transactionType">modification</transac>
928
+ <date>2010-04-17</date>
929
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
930
+ </transacGrp>
931
+ <transacGrp>
932
+ <transac type="transactionType">origination</transac>
933
+ <date>2010-04-17</date>
934
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
935
+ </transacGrp>
936
+ <transacGrp>
937
+ <transac type="transactionType">modification</transac>
938
+ <date>2010-04-17</date>
939
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
940
+ </transacGrp>
941
+ <note>G-Source: http://oacs-unah.edu.hn/an111/vrt/img/via_lactea.jpg</note>
942
+ <descripGrp>
943
+ <descrip type="definition">Una galaxia espiral en la que se encuentra el
944
+ Sistema Solar y, por ende, la Tierra.</descrip>
945
+ <admin type="source">http://es.wikipedia.org/wiki/Vía_Láctea</admin>
946
+ </descripGrp>
947
+ <termSec>
948
+ <term>Galaxia</term>
949
+
950
+
951
+ <termNote type="partOfSpeech">noun</termNote>
952
+ <termNote type="termType">shortForm</termNote>
953
+ <descripGrp>
954
+ <descrip type="context">La Vía Láctea, también llamada la Galaxia, es un
955
+ agrupamiento de estrellas con forma de disco, que incluye al Sol y a
956
+ su sistema solar.</descrip>
957
+ <admin type="source">www.todoelsistemasolar.com.ar/vlactea.htm</admin>
958
+ </descripGrp>
959
+ </termSec>
960
+ <termSec>
961
+ <term>Vía Láctea</term>
962
+
963
+
964
+ <termNote type="partOfSpeech">noun</termNote>
965
+ <termNote type="termType">shortForm</termNote>
966
+ <descripGrp>
967
+ <descrip type="context">La Via Láctea és una galaxia grande, espiral y
968
+ puede tener unos 100.000 millones de estrellas, entre ellas, el Sol. </descrip>
969
+ <admin type="source">http://www.astromia.com/universo/vialactea.htm</admin>
970
+ </descripGrp>
971
+ </termSec>
972
+ <termSec>
973
+ <term>galaxia Vía Láctea</term>
974
+
975
+
976
+ <termNote type="partOfSpeech">noun</termNote>
977
+ <termNote type="termType">fullForm</termNote>
978
+ <descripGrp>
979
+ <descrip type="context">La galaxia Vía Láctea es una galaxia espiral que
980
+ es nuestro hogar, al igual que el de otras 100 mil millones
981
+ estrellas. </descrip>
982
+ <admin type="source">http://www.windows.ucar.edu/tour/link=/the_universe/Milkyway.sp.html</admin>
983
+ </descripGrp>
984
+ </termSec>
985
+ </langSec>
986
+ </conceptEntry>
987
+
988
+
989
+ <conceptEntry id="c10">
990
+ <transacGrp>
991
+ <transac type="transactionType">origination</transac>
992
+ <date>2010-04-17</date>
993
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
994
+ </transacGrp>
995
+ <transacGrp>
996
+ <transac type="transactionType">modification</transac>
997
+ <date>2010-04-24</date>
998
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
999
+ </transacGrp>
1000
+ <descrip type="subjectField">General</descrip>
1001
+ <xref type="xGraphic" target="https://en.wikipedia.org/wiki/Star#/media/File:The_Sun_by_the_Atmospheric_Imaging_Assembly_of_NASA%27s_Solar_Dynamics_Observatory_-_20100819.jpg">Star.jpg</xref>
1002
+ <note>G-Source:
1003
+ http://lh4.ggpht.com/_EuutPdvjcY0/SQ2jGBKWO7I/AAAAAAAAALM/gjDMVimDQc8/005Est.jpg</note>
1004
+ <langSec xml:lang="en">
1005
+ <transacGrp>
1006
+ <transac type="transactionType">origination</transac>
1007
+ <date>2010-04-17</date>
1008
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1009
+ </transacGrp>
1010
+ <transacGrp>
1011
+ <transac type="transactionType">modification</transac>
1012
+ <date>2010-04-17</date>
1013
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1014
+ </transacGrp>
1015
+ <descripGrp>
1016
+ <descrip type="definition">A large, luminous ball of gas generating energy
1017
+ internally by nuclear fusion.</descrip>
1018
+ <admin type="source">Cambridge2007</admin>
1019
+ </descripGrp>
1020
+ <termSec>
1021
+ <term>star</term>
1022
+
1023
+
1024
+ <termNote type="partOfSpeech">noun</termNote>
1025
+ <descripGrp>
1026
+ <descrip type="context">While the behavior of stars forming by accretion
1027
+ is reasonably well understood,the consequences of merging have not
1028
+ been fully investermSecated.</descrip>
1029
+ <admin type="source">Bally2005</admin>
1030
+ </descripGrp>
1031
+ </termSec>
1032
+ </langSec>
1033
+ <langSec xml:lang="es">
1034
+ <transacGrp>
1035
+ <transac type="transactionType">origination</transac>
1036
+ <date>2010-04-17</date>
1037
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1038
+ </transacGrp>
1039
+ <transacGrp>
1040
+ <transac type="transactionType">modification</transac>
1041
+ <date>2010-04-17</date>
1042
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1043
+ </transacGrp>
1044
+ <descripGrp>
1045
+ <descrip type="definition">Una enorme y densa bola de gas que genera fusión
1046
+ nuclear, liberando así una gran cantidad de energía</descrip>
1047
+ <admin type="source">spaceplace.nasa.gov/sp/kids/spitzer/signs/sign_glossary.shtml</admin>
1048
+ </descripGrp>
1049
+ <termSec>
1050
+ <term>estrella</term>
1051
+
1052
+
1053
+ <termNote type="partOfSpeech">noun</termNote>
1054
+ <descripGrp>
1055
+ <descrip type="context">Las estrellas son enormes aglomeraciones de gas,
1056
+ principalmente Hidrogeno, cuya temperatura es tan alta debido a la
1057
+ fusión de este elemento, que irradian luz a lo largo de todo el
1058
+ espectro electromagnético. Poseen diferentes temperaturas que varían
1059
+ desde los 2000 grados Celsius hasta los 50000.</descrip>
1060
+ <admin type="source">http://www.astrosurf.com/astronosur/estrellas.htm</admin>
1061
+ </descripGrp>
1062
+ </termSec>
1063
+ </langSec>
1064
+ </conceptEntry>
1065
+
1066
+
1067
+ <conceptEntry id="c11">
1068
+ <transacGrp>
1069
+ <transac type="transactionType">origination</transac>
1070
+ <date>2010-04-17</date>
1071
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1072
+ </transacGrp>
1073
+ <transacGrp>
1074
+ <transac type="transactionType">modification</transac>
1075
+ <date>2010-05-01</date>
1076
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1077
+ </transacGrp>
1078
+ <descrip type="subjectField">General</descrip>
1079
+ <xref type="xGraphic" target="https://en.wikipedia.org/wiki/Ultraviolet#/media/File:UV_LED_Fluoresence.jpg">UV_Radiation.jpg</xref>
1080
+ <note>G-Source: http://drdima.files.wordpress.com/2009/05/sun-rays.jpg</note>
1081
+ <langSec xml:lang="en">
1082
+ <transacGrp>
1083
+ <transac type="transactionType">origination</transac>
1084
+ <date>2010-04-17</date>
1085
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1086
+ </transacGrp>
1087
+ <transacGrp>
1088
+ <transac type="transactionType">modification</transac>
1089
+ <date>2010-04-17</date>
1090
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1091
+ </transacGrp>
1092
+ <transacGrp>
1093
+ <transac type="transactionType">origination</transac>
1094
+ <date>2010-04-17</date>
1095
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1096
+ </transacGrp>
1097
+ <transacGrp>
1098
+ <transac type="transactionType">modification</transac>
1099
+ <date>2010-04-17</date>
1100
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1101
+ </transacGrp>
1102
+ <descripGrp>
1103
+ <descrip type="definition">The region of the electromagnetic spectrum
1104
+ spanning the wavelength range from the Lymann limit at 91.2 nm to 350
1105
+ nm.</descrip>
1106
+ <admin type="source">Oxford2007</admin>
1107
+ </descripGrp>
1108
+ <termSec>
1109
+ <term>UV radiation</term>
1110
+
1111
+
1112
+ <termNote type="partOfSpeech">noun</termNote>
1113
+ <termNote type="termType">shortForm</termNote>
1114
+ <descripGrp>
1115
+ <descrip type="context">UV radiation from stars and shocks likely
1116
+ provide the minimum level of ionization required to couple these
1117
+ fields strongly to the entangled medium.</descrip>
1118
+ <admin type="source">Bally2005</admin>
1119
+ </descripGrp>
1120
+ </termSec>
1121
+ <termSec>
1122
+ <term>ultraviolet radiation</term>
1123
+
1124
+
1125
+ <termNote type="partOfSpeech">noun</termNote>
1126
+ <termNote type="termType">fullForm</termNote>
1127
+ <descripGrp>
1128
+ <descrip type="context">Ultraviolet (UV) radiation is part of the
1129
+ electromagnetic spectrum emitted by the sun. </descrip>
1130
+ <admin type="source">http://www.who.int/uv/en/</admin>
1131
+ </descripGrp>
1132
+ </termSec>
1133
+ </langSec>
1134
+ <langSec xml:lang="es">
1135
+ <transacGrp>
1136
+ <transac type="transactionType">origination</transac>
1137
+ <date>2010-04-17</date>
1138
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1139
+ </transacGrp>
1140
+ <transacGrp>
1141
+ <transac type="transactionType">modification</transac>
1142
+ <date>2010-04-17</date>
1143
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1144
+ </transacGrp>
1145
+ <transacGrp>
1146
+ <transac type="transactionType">origination</transac>
1147
+ <date>2010-04-17</date>
1148
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1149
+ </transacGrp>
1150
+ <transacGrp>
1151
+ <transac type="transactionType">modification</transac>
1152
+ <date>2010-04-17</date>
1153
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1154
+ </transacGrp>
1155
+ <descripGrp>
1156
+ <descrip type="definition">La radiación electromagnética cuya longitud de
1157
+ onda está comprendida aproximadamente entre los 400 nm y los 15
1158
+ nm.</descrip>
1159
+ <admin type="source">http://es.wikipedia.org/wiki/Radiaci%C3%B3n_UV</admin>
1160
+ </descripGrp>
1161
+ <termSec>
1162
+ <term>radiación UV</term>
1163
+
1164
+
1165
+ <termNote type="partOfSpeech">noun</termNote>
1166
+ <termNote type="termType">shortForm</termNote>
1167
+ <descripGrp>
1168
+ <descrip type="context">Los usuarios de camas solares se someten a dosis
1169
+ considerables de radiaciones UV artificiales para conseguir un
1170
+ bronceado complementario al obtenido al tomar el sol.</descrip>
1171
+ <admin type="source">http://copublications.greenfacts.org/es/camas-solares/</admin>
1172
+ </descripGrp>
1173
+ </termSec>
1174
+ <termSec>
1175
+ <term>radiación ultravioleta</term>
1176
+
1177
+
1178
+ <termNote type="partOfSpeech">noun</termNote>
1179
+ <termNote type="termType">fullForm</termNote>
1180
+ <descripGrp>
1181
+ <descrip type="context">La radiación ultravioleta se encuentra entre la
1182
+ luz visible y los rayos X del espectro electromagnético.</descrip>
1183
+ <admin type="source">http://www.windows.ucar.edu/tour/link=/physical_science/magnetism/em_ultraviolet.sp.html</admin>
1184
+ </descripGrp>
1185
+ </termSec>
1186
+ </langSec>
1187
+ </conceptEntry>
1188
+
1189
+
1190
+ <conceptEntry id="c12">
1191
+ <transacGrp>
1192
+ <transac type="transactionType">origination</transac>
1193
+ <date>2010-04-17</date>
1194
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1195
+ </transacGrp>
1196
+ <transacGrp>
1197
+ <transac type="transactionType">modification</transac>
1198
+ <date>2010-05-01</date>
1199
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1200
+ </transacGrp>
1201
+ <descrip type="subjectField">General</descrip>
1202
+ <xref type="xGraphic" target="https://en.wikipedia.org/wiki/Magnetic_field#/media/File:VFPt_magnets_BHM.svg">Magnetic_Field.jpg</xref>
1203
+ <note>G-Source: http://www.greatdreams.com/magnet1.jpg</note>
1204
+ <langSec xml:lang="en">
1205
+ <transacGrp>
1206
+ <transac type="transactionType">origination</transac>
1207
+ <date>2010-04-17</date>
1208
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1209
+ </transacGrp>
1210
+ <transacGrp>
1211
+ <transac type="transactionType">modification</transac>
1212
+ <date>2010-04-17</date>
1213
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1214
+ </transacGrp>
1215
+ <descripGrp>
1216
+ <descrip type="definition">A region subject to the influence of magnetism
1217
+ that is manifested by the mechanical forces that it exerts upon
1218
+ electricity moving across it and upon the poles of magnets placed in
1219
+ it.</descrip>
1220
+ <admin type="source">Merriam-Webster2002</admin>
1221
+ </descripGrp>
1222
+ <termSec>
1223
+ <term>magnetic field</term>
1224
+
1225
+
1226
+ <termNote type="partOfSpeech">noun</termNote>
1227
+ <descripGrp>
1228
+ <descrip type="context">Detailed consideration of the merger process
1229
+ will require numerical modeling in which the hydrodynamics, effects
1230
+ of gravity,magnetic fields, and radiation are considered
1231
+ carefully.</descrip>
1232
+ <admin type="source">Bally2005</admin>
1233
+ </descripGrp>
1234
+ </termSec>
1235
+ </langSec>
1236
+ <langSec xml:lang="es">
1237
+ <transacGrp>
1238
+ <transac type="transactionType">origination</transac>
1239
+ <date>2010-04-17</date>
1240
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1241
+ </transacGrp>
1242
+ <transacGrp>
1243
+ <transac type="transactionType">modification</transac>
1244
+ <date>2010-04-17</date>
1245
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1246
+ </transacGrp>
1247
+ <descripGrp>
1248
+ <descrip type="definition">Un campo de fuerza creado como consecuencia del
1249
+ movimiento de cargas eléctricas, del flujo de la electricidad.</descrip>
1250
+ <admin type="source">http://www.greenfacts.org/es/glosario/abc/campo-magnetico.htm</admin>
1251
+ </descripGrp>
1252
+ <termSec>
1253
+ <term>campo magnético</term>
1254
+
1255
+
1256
+ <termNote type="partOfSpeech">noun</termNote>
1257
+ <descripGrp>
1258
+ <descrip type="context">El campo magnético es producido por la corriente
1259
+ eléctrica que circula por un conductor.</descrip>
1260
+ <admin type="source">http://teleformacion.edu.aytolacoruna.es/FISICA/document/teoria/A_Franco/elecmagnet/magnetico/cMagnetico.html</admin>
1261
+ </descripGrp>
1262
+ </termSec>
1263
+ </langSec>
1264
+ </conceptEntry>
1265
+
1266
+
1267
+ <conceptEntry id="c13">
1268
+ <transacGrp>
1269
+ <transac type="transactionType">origination</transac>
1270
+ <date>2010-04-17</date>
1271
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1272
+ </transacGrp>
1273
+ <transacGrp>
1274
+ <transac type="transactionType">modification</transac>
1275
+ <date>2010-05-01</date>
1276
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1277
+ </transacGrp>
1278
+ <descrip type="subjectField">General</descrip>
1279
+ <xref type="xGraphic" target="https://en.wikipedia.org/wiki/Blue_straggler#/media/File:Ngc6397_hst_blue_straggler.jpg">Blue_Straggler.jpg</xref>
1280
+ <note>G-Source: http://images.spaceref.com/news/2009/ooBlue_Straggler09.jpg</note>
1281
+ <langSec xml:lang="en">
1282
+ <transacGrp>
1283
+ <transac type="transactionType">origination</transac>
1284
+ <date>2010-04-17</date>
1285
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1286
+ </transacGrp>
1287
+ <transacGrp>
1288
+ <transac type="transactionType">modification</transac>
1289
+ <date>2010-04-17</date>
1290
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1291
+ </transacGrp>
1292
+ <descripGrp>
1293
+ <descrip type="definition">A blue main-sequence star, usually found in a
1294
+ globular or open cluster that appears to be slower in its evolution than
1295
+ other stars of similar mass and luminosity in the same
1296
+ cluster.</descrip>
1297
+ <admin type="source">Oxford2007</admin>
1298
+ </descripGrp>
1299
+ <termSec>
1300
+ <term>blue straggler</term>
1301
+
1302
+
1303
+ <termNote type="partOfSpeech">noun</termNote>
1304
+ <descripGrp>
1305
+ <descrip type="context">Numerical models of stellar collisions leading
1306
+ to the formation of blue stragglers in globular clusters (Lombardi
1307
+ et al. 2002, 2003; Fregeau et al. 2004) indicate that merger
1308
+ products have radii up to 30 times larger than that of an equivalent
1309
+ main-sequence star.</descrip>
1310
+ <admin type="source">Bally2005</admin>
1311
+ </descripGrp>
1312
+ </termSec>
1313
+ </langSec>
1314
+ <langSec xml:lang="es">
1315
+ <transacGrp>
1316
+ <transac type="transactionType">origination</transac>
1317
+ <date>2010-04-17</date>
1318
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1319
+ </transacGrp>
1320
+ <transacGrp>
1321
+ <transac type="transactionType">modification</transac>
1322
+ <date>2010-04-17</date>
1323
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1324
+ </transacGrp>
1325
+ <descripGrp>
1326
+ <descrip type="definition">Estrellas que aparentan una edad menor que la del
1327
+ sistema estelar al que pertenecen, si se supone que se formaron junto
1328
+ con él.</descrip>
1329
+ <admin type="source">http://es.wikipedia.org/wiki/Estrella_rezagada_azul</admin>
1330
+ </descripGrp>
1331
+ <termSec>
1332
+ <term>estrella rezagada azul</term>
1333
+
1334
+
1335
+ <termNote type="partOfSpeech">noun</termNote>
1336
+ <termNote type="administrativeStatus">preferredTerm-admn-sts</termNote>
1337
+ <descripGrp>
1338
+ <descrip type="context">Las últimas observaciones de las “rezagadas
1339
+ azules”, estrellas atípicas que aparentan ser más jóvenes que el
1340
+ sistema estelar al que pertenecen, han proporcionado dos modelos
1341
+ diferentes sobre su origen.</descrip>
1342
+ <admin type="source">http://mundoastronomia.portalmundos.com/nuevas-pistas-sobre-el-origen-de-las-estrellas-rezagadas-azules/</admin>
1343
+ </descripGrp>
1344
+ </termSec>
1345
+ </langSec>
1346
+ </conceptEntry>
1347
+
1348
+
1349
+ <conceptEntry id="c14">
1350
+ <transacGrp>
1351
+ <transac type="transactionType">origination</transac>
1352
+ <date>2010-04-17</date>
1353
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1354
+ </transacGrp>
1355
+ <transacGrp>
1356
+ <transac type="transactionType">modification</transac>
1357
+ <date>2010-05-01</date>
1358
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1359
+ </transacGrp>
1360
+ <descrip type="subjectField">General</descrip>
1361
+ <langSec xml:lang="en">
1362
+ <transacGrp>
1363
+ <transac type="transactionType">origination</transac>
1364
+ <date>2010-04-17</date>
1365
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1366
+ </transacGrp>
1367
+ <transacGrp>
1368
+ <transac type="transactionType">modification</transac>
1369
+ <date>2010-04-17</date>
1370
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1371
+ </transacGrp>
1372
+ <descripGrp>
1373
+ <descrip type="definition">The sudden collapse of a massive star when the
1374
+ internal pressure pushing outwards falls so that it cannot balance the
1375
+ weight of material pressing inward.</descrip>
1376
+ <admin type="source">Cambridge2007</admin>
1377
+ </descripGrp>
1378
+ <termSec>
1379
+ <term>gravitational collapse</term>
1380
+
1381
+
1382
+ <termNote type="partOfSpeech">noun</termNote>
1383
+ <descripGrp>
1384
+ <descrip type="context">Stars form from the gravitational collapse of
1385
+ turbulent molecular cloud cores (Elmegreen &amp; Scalo 2004; Mac Low
1386
+ &amp; Klessen 2004).</descrip>
1387
+ <admin type="source">Bally2005</admin>
1388
+ </descripGrp>
1389
+ </termSec>
1390
+ </langSec>
1391
+ <langSec xml:lang="es">
1392
+ <transacGrp>
1393
+ <transac type="transactionType">origination</transac>
1394
+ <date>2010-04-17</date>
1395
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1396
+ </transacGrp>
1397
+ <transacGrp>
1398
+ <transac type="transactionType">modification</transac>
1399
+ <date>2010-04-17</date>
1400
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1401
+ </transacGrp>
1402
+ <descripGrp>
1403
+ <descrip type="definition">El estado final de la evolución de una estrella
1404
+ de gran masa en el que la materia se comprime bajo la acción de su
1405
+ propia atracción gravitatoria, con desprendimiento de grandes cantidades
1406
+ de energía.</descrip>
1407
+ <admin type="source">http://www.conocimientosweb.net/portal/term6172.html</admin>
1408
+ </descripGrp>
1409
+ <termSec>
1410
+ <term>colapso gravitacional</term>
1411
+
1412
+
1413
+ <termNote type="partOfSpeech">noun</termNote>
1414
+ <descripGrp>
1415
+ <descrip type="context">Esto sucede si la masa de un pedazo de la nube
1416
+ excede cierto valor crítico, de modo tal que la fuerza de gravedad
1417
+ vence definitivamente y el pedazo empieza a contraerse, aumentando
1418
+ su densidad. Este proceso se llama colapso gravitacional. </descrip>
1419
+ <admin type="source">http://bibliotecadigital.ilce.edu.mx/sites/ciencia/volumen1/ciencia2/06/html/sec_15.html</admin>
1420
+ </descripGrp>
1421
+ </termSec>
1422
+ </langSec>
1423
+ </conceptEntry>
1424
+
1425
+
1426
+ <conceptEntry id="c15">
1427
+ <transacGrp>
1428
+ <transac type="transactionType">origination</transac>
1429
+ <date>2010-04-17</date>
1430
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1431
+ </transacGrp>
1432
+ <transacGrp>
1433
+ <transac type="transactionType">modification</transac>
1434
+ <date>2010-05-01</date>
1435
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1436
+ </transacGrp>
1437
+ <descrip type="subjectField">General</descrip>
1438
+ <xref type="xGraphic" target="https://en.wikipedia.org/wiki/Binary_star#/media/File:Algol_AB_movie_imaged_with_the_CHARA_interferometer_-_labeled.gif">Binary_Star.jpg</xref>
1439
+ <note>G-Source:
1440
+ http://lh6.ggpht.com/_6hgSmco4R9M/SaqplXGqJfI/AAAAAAAAA1k/B3a43_O9VI8/56_Binary_Stars_thumb3.jpg</note>
1441
+ <langSec xml:lang="en">
1442
+ <transacGrp>
1443
+ <transac type="transactionType">origination</transac>
1444
+ <date>2010-04-17</date>
1445
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1446
+ </transacGrp>
1447
+ <transacGrp>
1448
+ <transac type="transactionType">modification</transac>
1449
+ <date>2010-04-17</date>
1450
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1451
+ </transacGrp>
1452
+ <descripGrp>
1453
+ <descrip type="definition">A pair of stars in orbit around each other, held
1454
+ together by the graviational attraction between them.</descrip>
1455
+ <admin type="source">Cambridge2007</admin>
1456
+ </descripGrp>
1457
+ <termSec>
1458
+ <term>binary star</term>
1459
+
1460
+
1461
+ <termNote type="partOfSpeech">noun</termNote>
1462
+ <descripGrp>
1463
+ <descrip type="context">These authors considered collision partners
1464
+ having similar masses and concluded that such interactions can at
1465
+ most account for a small fraction of the observed binary star
1466
+ population in young clusters.</descrip>
1467
+ <admin type="source">Bally2005</admin>
1468
+ </descripGrp>
1469
+ </termSec>
1470
+ </langSec>
1471
+ <langSec xml:lang="es">
1472
+ <transacGrp>
1473
+ <transac type="transactionType">origination</transac>
1474
+ <date>2010-04-17</date>
1475
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1476
+ </transacGrp>
1477
+ <transacGrp>
1478
+ <transac type="transactionType">modification</transac>
1479
+ <date>2010-04-17</date>
1480
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1481
+ </transacGrp>
1482
+ <transacGrp>
1483
+ <transac type="transactionType">origination</transac>
1484
+ <date>2010-04-17</date>
1485
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1486
+ </transacGrp>
1487
+ <transacGrp>
1488
+ <transac type="transactionType">modification</transac>
1489
+ <date>2010-04-17</date>
1490
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1491
+ </transacGrp>
1492
+ <descripGrp>
1493
+ <descrip type="definition">Un sistema estelar compuesto de dos estrellas que
1494
+ orbitan mutuamente alrededor de un centro de masas común.</descrip>
1495
+ <admin type="source">http://es.wikipedia.org/wiki/Estrella_binaria</admin>
1496
+ </descripGrp>
1497
+ <termSec>
1498
+ <term>estrella binaria</term>
1499
+
1500
+
1501
+ <termNote type="partOfSpeech">noun</termNote>
1502
+ <termNote type="administrativeStatus">admittedTerm-admn-sts</termNote>
1503
+ <descripGrp>
1504
+ <descrip type="context">La explosión de una estrella binaria dentro de
1505
+ una nebulosa planetaria ha sido capturado por un equipo dirigido por
1506
+ investermSecadores del University College of London UCL - es un
1507
+ acontecimiento que no ha sido presenciado hace más de 100
1508
+ años.</descrip>
1509
+ <admin type="source">http://www.astroelche.es/blog/index.php?blog=2&amp;title=astronomos-capturam-la-explosion-de-una-&amp;more=1&amp;c=1&amp;tb=1&amp;pb=1</admin>
1510
+ </descripGrp>
1511
+ </termSec>
1512
+ <termSec>
1513
+ <term>estrella doble</term>
1514
+
1515
+
1516
+ <termNote type="partOfSpeech">noun</termNote>
1517
+ <termNote type="administrativeStatus">preferredTerm-admn-sts</termNote>
1518
+ <descripGrp>
1519
+ <descrip type="context">Una estrella doble es una pareja de estrellas
1520
+ que se mantienen unidas por la fuerza de la gravitación y giran en
1521
+ torno a su centro común.</descrip>
1522
+ <admin type="source">http://www.astromia.com/universo/dobles.htm</admin>
1523
+ </descripGrp>
1524
+ </termSec>
1525
+ </langSec>
1526
+ </conceptEntry>
1527
+
1528
+
1529
+ <conceptEntry id="c16">
1530
+ <transacGrp>
1531
+ <transac type="transactionType">origination</transac>
1532
+ <date>2010-04-17</date>
1533
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1534
+ </transacGrp>
1535
+ <transacGrp>
1536
+ <transac type="transactionType">modification</transac>
1537
+ <date>2010-05-01</date>
1538
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1539
+ </transacGrp>
1540
+ <descrip type="subjectField">Stellar Birth</descrip>
1541
+ <xref type="xGraphic" target="https://en.wikipedia.org/wiki/Initial_mass_function#/media/File:LH_95.jpg"
1542
+ >Initial_Mass_Function.JPG</xref>
1543
+ <note>G-Source:
1544
+ http://www.astro.ljmu.ac.uk/~ikb/research/imf-use-in-cosmology.html</note>
1545
+ <note>This figure compares the IMFs by ploting mass fraction per dex versus mass,
1546
+ i.e., normalized so that the integral under each curve is unity. They are
1547
+ assumed to be valid from 0.1 to 120 solar masses.</note>
1548
+ <note>N-Source:
1549
+ http://www.astro.ljmu.ac.uk/~ikb/research/imf-use-in-cosmology.html</note>
1550
+ <langSec xml:lang="en">
1551
+ <transacGrp>
1552
+ <transac type="transactionType">origination</transac>
1553
+ <date>2010-04-17</date>
1554
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1555
+ </transacGrp>
1556
+ <transacGrp>
1557
+ <transac type="transactionType">modification</transac>
1558
+ <date>2010-04-17</date>
1559
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1560
+ </transacGrp>
1561
+ <descripGrp>
1562
+ <descrip type="definition">A mathematical description of the relative
1563
+ frequncy with which stars of various masses are formed.</descrip>
1564
+ <admin type="source">Oxford2007</admin>
1565
+ </descripGrp>
1566
+ <termSec>
1567
+ <term>initial mass function</term>
1568
+
1569
+
1570
+ <termNote type="partOfSpeech">noun</termNote>
1571
+ <descripGrp>
1572
+ <descrip type="context">The extremely rare merger of two stars close to
1573
+ the upper-mass end of the initial mass function may be a possible
1574
+ pathway to hypernova-generated gamma-ray bursts.</descrip>
1575
+ <admin type="source">Bally2005</admin>
1576
+ </descripGrp>
1577
+ </termSec>
1578
+ </langSec>
1579
+ <langSec xml:lang="es">
1580
+ <transacGrp>
1581
+ <transac type="transactionType">origination</transac>
1582
+ <date>2010-04-17</date>
1583
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1584
+ </transacGrp>
1585
+ <transacGrp>
1586
+ <transac type="transactionType">modification</transac>
1587
+ <date>2010-04-17</date>
1588
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1589
+ </transacGrp>
1590
+ <descripGrp>
1591
+ <descrip type="definition">La expresión numérica que determina el número de
1592
+ estrellas con masa en un rango determinado.</descrip>
1593
+ <admin type="source">Basado en http://laeff.cab.inta-csic.es/modules.php?op=modload&amp;name=phpWiki&amp;file=index&amp;pagename=Research-Estrellas-IMF</admin>
1594
+ </descripGrp>
1595
+ <termSec>
1596
+ <term>función inicial de masa</term>
1597
+
1598
+
1599
+ <termNote type="partOfSpeech">noun</termNote>
1600
+ <descripGrp>
1601
+ <descrip type="context">Estado evolutivo y función inicial de masa de
1602
+ cúmulos jóvenes en la gran nube de Magallanes (estudio en el
1603
+ ultravioleta).</descrip>
1604
+ <admin type="source">http://dialnet.unirioja.es/servlet/tesis?codigo=11651</admin>
1605
+ </descripGrp>
1606
+ </termSec>
1607
+ </langSec>
1608
+ </conceptEntry>
1609
+
1610
+
1611
+ <conceptEntry id="c17">
1612
+ <transacGrp>
1613
+ <transac type="transactionType">origination</transac>
1614
+ <date>2010-04-20</date>
1615
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Student</transacNote>
1616
+ </transacGrp>
1617
+ <transacGrp>
1618
+ <transac type="transactionType">modification</transac>
1619
+ <date>2010-04-20</date>
1620
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Student</transacNote>
1621
+ </transacGrp>
1622
+ <langSec xml:lang="zu">
1623
+ <transacGrp>
1624
+ <transac type="transactionType">origination</transac>
1625
+ <date>2010-04-20</date>
1626
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Student</transacNote>
1627
+ </transacGrp>
1628
+ <transacGrp>
1629
+ <transac type="transactionType">modification</transac>
1630
+ <date>2010-04-20</date>
1631
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Student</transacNote>
1632
+ </transacGrp>
1633
+ <termSec>
1634
+ <term>Bally2005</term>
1635
+
1636
+
1637
+ <note>Author[s]: Bally, John and Hans Zinnecker</note>
1638
+ <note>Journal Title: The Astronomical Journal</note>
1639
+ <note>Article Title: The Birth of High-Mass Stars: Accertion and/or
1640
+ Mergers?</note>
1641
+ <note>Volume: 129</note>
1642
+ <note>Publication Place: U.S.A.</note>
1643
+ <note>Publisher: The American Astronomical Society</note>
1644
+ <note>Publication Year: May 2005</note>
1645
+ <note>Page(s): 2281-2293</note>
1646
+ </termSec>
1647
+ </langSec>
1648
+ </conceptEntry>
1649
+
1650
+
1651
+ <conceptEntry id="c18">
1652
+ <transacGrp>
1653
+ <transac type="transactionType">origination</transac>
1654
+ <date>2010-04-20</date>
1655
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Student</transacNote>
1656
+ </transacGrp>
1657
+ <transacGrp>
1658
+ <transac type="transactionType">modification</transac>
1659
+ <date>2010-04-20</date>
1660
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Student</transacNote>
1661
+ </transacGrp>
1662
+ <langSec xml:lang="zu">
1663
+ <transacGrp>
1664
+ <transac type="transactionType">origination</transac>
1665
+ <date>2010-04-20</date>
1666
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Student</transacNote>
1667
+ </transacGrp>
1668
+ <transacGrp>
1669
+ <transac type="transactionType">modification</transac>
1670
+ <date>2010-04-20</date>
1671
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Student</transacNote>
1672
+ </transacGrp>
1673
+ <termSec>
1674
+ <term>Cambridge2007</term>
1675
+
1676
+
1677
+ <note>Author[s]: Mitton, Jaqueline</note>
1678
+ <note>Book Title: Cambridge Illustrated Dictionary of Astronomy</note>
1679
+ <note>Publication Place: New York</note>
1680
+ <note>Publisher: Cambridge University Press</note>
1681
+ <note>Publication Year: 2007</note>
1682
+ </termSec>
1683
+ </langSec>
1684
+ </conceptEntry>
1685
+
1686
+
1687
+ <conceptEntry id="c19">
1688
+ <transacGrp>
1689
+ <transac type="transactionType">origination</transac>
1690
+ <date>2010-04-20</date>
1691
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Student</transacNote>
1692
+ </transacGrp>
1693
+ <transacGrp>
1694
+ <transac type="transactionType">modification</transac>
1695
+ <date>2010-04-20</date>
1696
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Student</transacNote>
1697
+ </transacGrp>
1698
+ <langSec xml:lang="zu">
1699
+ <transacGrp>
1700
+ <transac type="transactionType">origination</transac>
1701
+ <date>2010-04-20</date>
1702
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Student</transacNote>
1703
+ </transacGrp>
1704
+ <transacGrp>
1705
+ <transac type="transactionType">modification</transac>
1706
+ <date>2010-04-20</date>
1707
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Student</transacNote>
1708
+ </transacGrp>
1709
+ <termSec>
1710
+ <term>Merriam-Webster2002</term>
1711
+
1712
+
1713
+ <note>Book Title: Webster's Third New International Dictionary</note>
1714
+ <note>Editor[s]: Gove, Philip Babcock</note>
1715
+ <note>Volume: Third Edition</note>
1716
+ <note>Publication Place: Springfield, Massachusetts</note>
1717
+ <note>Publisher: Merriam-Webster INC.</note>
1718
+ <note>Publication Year: 2002</note>
1719
+ </termSec>
1720
+ </langSec>
1721
+ </conceptEntry>
1722
+
1723
+
1724
+ <conceptEntry id="c20">
1725
+ <transacGrp>
1726
+ <transac type="transactionType">origination</transac>
1727
+ <date>2010-04-20</date>
1728
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Student</transacNote>
1729
+ </transacGrp>
1730
+ <transacGrp>
1731
+ <transac type="transactionType">modification</transac>
1732
+ <date>2010-04-20</date>
1733
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Student</transacNote>
1734
+ </transacGrp>
1735
+ <langSec xml:lang="zu">
1736
+ <transacGrp>
1737
+ <transac type="transactionType">origination</transac>
1738
+ <date>2010-04-20</date>
1739
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Student</transacNote>
1740
+ </transacGrp>
1741
+ <transacGrp>
1742
+ <transac type="transactionType">modification</transac>
1743
+ <date>2010-04-20</date>
1744
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Student</transacNote>
1745
+ </transacGrp>
1746
+ <termSec>
1747
+ <term>Oxford2007</term>
1748
+
1749
+
1750
+ <note>Book Title: Oxford Dictionary of Astronomy</note>
1751
+ <note>Editor[s]: Ridpath, Ian</note>
1752
+ <note>Volume: Second Edition</note>
1753
+ <note>Publication Place: New York</note>
1754
+ <note>Publisher: Oxford University Press</note>
1755
+ <note>Publication Year: 2007</note>
1756
+ </termSec>
1757
+ </langSec>
1758
+ </conceptEntry>
1759
+
1760
+
1761
+ <conceptEntry id="c21">
1762
+ <transacGrp>
1763
+ <transac type="transactionType">origination</transac>
1764
+ <date>2010-04-20</date>
1765
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Student</transacNote>
1766
+ </transacGrp>
1767
+ <transacGrp>
1768
+ <transac type="transactionType">modification</transac>
1769
+ <date>2010-04-24</date>
1770
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1771
+ </transacGrp>
1772
+ <descrip type="subjectField">Stellar Death</descrip>
1773
+ <xref type="xGraphic" target="https://en.wikipedia.org/wiki/Supernova#/media/File:SN1994D.jpg">Supernova.jpg</xref>
1774
+ <note>G-Source:
1775
+ http://jcconwell.wordpress.com/2009/07/24/top-10-ways-the-universe-could-kill-us/supernova/</note>
1776
+ <langSec xml:lang="en">
1777
+ <transacGrp>
1778
+ <transac type="transactionType">origination</transac>
1779
+ <date>2010-04-20</date>
1780
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Student</transacNote>
1781
+ </transacGrp>
1782
+ <transacGrp>
1783
+ <transac type="transactionType">modification</transac>
1784
+ <date>2010-04-20</date>
1785
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Student</transacNote>
1786
+ </transacGrp>
1787
+ <descripGrp>
1788
+ <descrip type="definition">A catastrophic stellar explosion in which so much
1789
+ energy is released that the supernova alone can outshine an entire
1790
+ galaxy of billions of stars.</descrip>
1791
+ <admin type="source">Cambridge2007</admin>
1792
+ </descripGrp>
1793
+ <termSec>
1794
+ <term>supernova</term>
1795
+
1796
+
1797
+ <termNote type="partOfSpeech">noun</termNote>
1798
+ <descripGrp>
1799
+ <descrip type="context">The supermassive object may be eventually
1800
+ disrupted by an unusually violent supernova explosion (a hypernova)
1801
+ soon after formation.</descrip>
1802
+ <admin type="source">Bally2005</admin>
1803
+ </descripGrp>
1804
+ </termSec>
1805
+ </langSec>
1806
+ <langSec xml:lang="es">
1807
+ <transacGrp>
1808
+ <transac type="transactionType">origination</transac>
1809
+ <date>2010-04-20</date>
1810
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Student</transacNote>
1811
+ </transacGrp>
1812
+ <transacGrp>
1813
+ <transac type="transactionType">modification</transac>
1814
+ <date>2010-04-20</date>
1815
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Student</transacNote>
1816
+ </transacGrp>
1817
+ <descripGrp>
1818
+ <descrip type="definition">Una estrella que estalla y lanza a todo su
1819
+ alrededor la mayor parte de su masa a altísimas velocidades.</descrip>
1820
+ <admin type="source">http://www.astromia.com/glosario/supernova.htm</admin>
1821
+ </descripGrp>
1822
+ <termSec>
1823
+ <term>supernova</term>
1824
+
1825
+
1826
+ <termNote type="partOfSpeech">noun</termNote>
1827
+ <descripGrp>
1828
+ <descrip type="context">Un equipo de científicos británicos propone esta
1829
+ semana en la revista Nature que la tenue supernova SN2008ha,
1830
+ descubierta por una adolescente estadounidense en noviembre de 2008,
1831
+ podría ser la explosión de una estrella masiva, en lugar de proceder
1832
+ de una enana blanca como se planteaba hasta ahora.</descrip>
1833
+ <admin type="source">http://www.plataformasinc.es/index.php/esl/Noticias/Una-supernova-observada-por-astronomos-aficionados-abre-el-debate-entre-los-profesionales</admin>
1834
+ </descripGrp>
1835
+ </termSec>
1836
+ </langSec>
1837
+ </conceptEntry>
1838
+
1839
+
1840
+ <conceptEntry id="c22">
1841
+ <transacGrp>
1842
+ <transac type="transactionType">origination</transac>
1843
+ <date>2010-04-24</date>
1844
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1845
+ </transacGrp>
1846
+ <transacGrp>
1847
+ <transac type="transactionType">modification</transac>
1848
+ <date>2010-04-24</date>
1849
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1850
+ </transacGrp>
1851
+ <langSec xml:lang="zu">
1852
+ <transacGrp>
1853
+ <transac type="transactionType">origination</transac>
1854
+ <date>2010-04-24</date>
1855
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1856
+ </transacGrp>
1857
+ <transacGrp>
1858
+ <transac type="transactionType">modification</transac>
1859
+ <date>2010-04-24</date>
1860
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1861
+ </transacGrp>
1862
+ <termSec>
1863
+ <term>Moore2003</term>
1864
+
1865
+
1866
+ <note>Author[s]: Moore, Patrick</note>
1867
+ <note>Book Title: Philip's Atlas of the Universe</note>
1868
+ <note>Publication Place: Heron Quays, London</note>
1869
+ <note>Publisher: Philip's</note>
1870
+ <note>Publication Year: 2003</note>
1871
+ </termSec>
1872
+ </langSec>
1873
+ </conceptEntry>
1874
+
1875
+
1876
+ <conceptEntry id="c23">
1877
+ <transacGrp>
1878
+ <transac type="transactionType">origination</transac>
1879
+ <date>2010-04-24</date>
1880
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1881
+ </transacGrp>
1882
+ <transacGrp>
1883
+ <transac type="transactionType">modification</transac>
1884
+ <date>2010-05-01</date>
1885
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1886
+ </transacGrp>
1887
+ <descrip type="subjectField">General</descrip>
1888
+ <xref type="xGraphic" target="https://en.wikipedia.org/wiki/Red_giant#/media/File:Mira_1997.jpg">Red_Giant.jpg</xref>
1889
+ <note>G-Source:
1890
+ http://www.lcsd.gov.hk/CE/Museum/Space/EducationResource/Universe/framed_e/lecture/ch15/imgs/red_size.jpg</note>
1891
+ <langSec xml:lang="en">
1892
+ <transacGrp>
1893
+ <transac type="transactionType">origination</transac>
1894
+ <date>2010-04-24</date>
1895
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1896
+ </transacGrp>
1897
+ <transacGrp>
1898
+ <transac type="transactionType">modification</transac>
1899
+ <date>2010-04-24</date>
1900
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1901
+ </transacGrp>
1902
+ <descripGrp>
1903
+ <descrip type="definition">A cool, large and highly luminous star that has
1904
+ left the main sequence and is powered by heavier elements than
1905
+ hydrogen.</descrip>
1906
+ <admin type="source">Oxford2007</admin>
1907
+ </descripGrp>
1908
+ <termSec>
1909
+ <term>red giant</term>
1910
+
1911
+
1912
+ <termNote type="partOfSpeech">noun</termNote>
1913
+ <descripGrp>
1914
+ <descrip type="context">The core temperature becomes so high that helium
1915
+ start to 'burn', producing carbon; around this active core there is
1916
+ a shell where hydrogen is still producing energy. The star becomes
1917
+ unstable, and the outer layers swell out, cooling as they do so. The
1918
+ star becomes a red giant.</descrip>
1919
+ <admin type="source">Moore2003</admin>
1920
+ </descripGrp>
1921
+ </termSec>
1922
+ </langSec>
1923
+ <langSec xml:lang="es">
1924
+ <transacGrp>
1925
+ <transac type="transactionType">origination</transac>
1926
+ <date>2010-04-24</date>
1927
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1928
+ </transacGrp>
1929
+ <transacGrp>
1930
+ <transac type="transactionType">modification</transac>
1931
+ <date>2010-04-24</date>
1932
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1933
+ </transacGrp>
1934
+ <descripGrp>
1935
+ <descrip type="definition">Una estrella de masa baja o intermedia (menos de
1936
+ 8-9 masas solares) que, tras haber consumido el hidrógeno en su núcleo
1937
+ durante la etapa de secuencia principal, convirtiéndolo en helio por
1938
+ fusión nuclear, comienza a quemar hidrógeno en una cáscara alrededor del
1939
+ núcleo de helio inerte.</descrip>
1940
+ <admin type="source">http://es.wikipedia.org/wiki/Gigante_roja</admin>
1941
+ </descripGrp>
1942
+ <termSec>
1943
+ <term>gigante roja</term>
1944
+
1945
+
1946
+ <termNote type="partOfSpeech">noun</termNote>
1947
+ <descripGrp>
1948
+ <descrip type="context">La gigante roja S Orionis (S Ori) es una
1949
+ estrella variable del tipo Mira. Su masa es similar a la del Sol,
1950
+ con la diferencia de que está mucho más cerca de convertirse en una
1951
+ enana blanca, el mismo final que le espera a nuestro Sol dentro de 5
1952
+ mil millones de años.</descrip>
1953
+ <admin type="source">http://www.solociencia.com/astronomia/07071709.htm</admin>
1954
+ </descripGrp>
1955
+ </termSec>
1956
+ </langSec>
1957
+ </conceptEntry>
1958
+
1959
+
1960
+ <conceptEntry id="c24">
1961
+ <transacGrp>
1962
+ <transac type="transactionType">origination</transac>
1963
+ <date>2010-04-24</date>
1964
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1965
+ </transacGrp>
1966
+ <transacGrp>
1967
+ <transac type="transactionType">modification</transac>
1968
+ <date>2010-05-01</date>
1969
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1970
+ </transacGrp>
1971
+ <descrip type="subjectField">General</descrip>
1972
+ <xref type="xGraphic" target="https://en.wikipedia.org/wiki/Red_dwarf#/media/File:New_shot_of_Proxima_Centauri,_our_nearest_neighbour.jpg">Red_Dwarf.jpg</xref>
1973
+ <note>G-Source: http://www.wolflodge.org/bluestar/h_red_dwarf_02.jpg</note>
1974
+ <langSec xml:lang="en">
1975
+ <transacGrp>
1976
+ <transac type="transactionType">origination</transac>
1977
+ <date>2010-04-24</date>
1978
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1979
+ </transacGrp>
1980
+ <transacGrp>
1981
+ <transac type="transactionType">modification</transac>
1982
+ <date>2010-04-24</date>
1983
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
1984
+ </transacGrp>
1985
+ <descripGrp>
1986
+ <descrip type="definition">A cool, faint, low-mass star lying at the lower
1987
+ end of the main sequence of spectral type K or M.</descrip>
1988
+ <admin type="source">Oxford2007</admin>
1989
+ </descripGrp>
1990
+ <termSec>
1991
+ <term>red dwarf</term>
1992
+
1993
+
1994
+ <termNote type="partOfSpeech">noun</termNote>
1995
+ <descripGrp>
1996
+ <descrip type="context">The dim red dward Proxima, more than a degree
1997
+ away from Alpha, is slightly closer to us.</descrip>
1998
+ <admin type="source">Moore2003</admin>
1999
+ </descripGrp>
2000
+ </termSec>
2001
+ </langSec>
2002
+ <langSec xml:lang="es">
2003
+ <transacGrp>
2004
+ <transac type="transactionType">origination</transac>
2005
+ <date>2010-04-24</date>
2006
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2007
+ </transacGrp>
2008
+ <transacGrp>
2009
+ <transac type="transactionType">modification</transac>
2010
+ <date>2010-04-24</date>
2011
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2012
+ </transacGrp>
2013
+ <descripGrp>
2014
+ <descrip type="definition">Una estrella pequeña y relativamente fría de la
2015
+ secuencia principal, ya sea de tipo espectral K tardío o M.</descrip>
2016
+ <admin type="source">http://es.wikipedia.org/wiki/Enana_roja</admin>
2017
+ </descripGrp>
2018
+ <termSec>
2019
+ <term>enana roja</term>
2020
+
2021
+
2022
+ <termNote type="partOfSpeech">noun</termNote>
2023
+ <descripGrp>
2024
+ <descrip type="context">El planeta que se ha descubierto girando
2025
+ alrededor de esta enana roja tiene una masa equivalente a la de
2026
+ Neptuno, es decir, es sólo 17 veces mayor que la Tierra y mucho
2027
+ menor que Saturno.</descrip>
2028
+ <admin type="source">http://axxon.com.ar/not/157/c-1570034.htm</admin>
2029
+ </descripGrp>
2030
+ </termSec>
2031
+ </langSec>
2032
+ </conceptEntry>
2033
+
2034
+
2035
+ <conceptEntry id="c25">
2036
+ <transacGrp>
2037
+ <transac type="transactionType">origination</transac>
2038
+ <date>2010-04-24</date>
2039
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2040
+ </transacGrp>
2041
+ <transacGrp>
2042
+ <transac type="transactionType">modification</transac>
2043
+ <date>2010-04-24</date>
2044
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2045
+ </transacGrp>
2046
+ <descrip type="subjectField">General</descrip>
2047
+ <xref type="xGraphic" target="https://en.wikipedia.org/wiki/Stellar_classification#/media/File:Zeta_Puppis.png">Spectral_Type.jpg</xref>
2048
+ <note>G-Source:
2049
+ http://www.astro.columbia.edu/~archung/labs/spring2002/images/spectral_type2.jpg</note>
2050
+ <langSec xml:lang="en">
2051
+ <transacGrp>
2052
+ <transac type="transactionType">origination</transac>
2053
+ <date>2010-04-24</date>
2054
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2055
+ </transacGrp>
2056
+ <transacGrp>
2057
+ <transac type="transactionType">modification</transac>
2058
+ <date>2010-04-24</date>
2059
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2060
+ </transacGrp>
2061
+ <descripGrp>
2062
+ <descrip type="definition">A means of classifying stars according to the
2063
+ details of their spectrum, depending largely on their surface
2064
+ temperature.</descrip>
2065
+ <admin type="source">Oxford2007</admin>
2066
+ </descripGrp>
2067
+ <termSec>
2068
+ <term>spectral type</term>
2069
+
2070
+
2071
+ <termNote type="partOfSpeech">noun</termNote>
2072
+ <descripGrp>
2073
+ <descrip type="context">In this version of a typical HR diagram, the
2074
+ stars are plotted according to their spectral types and suface
2075
+ temperatures (horzontal axis, x) and their luminositites in therms
2076
+ of the Sun (vertical axis, y).</descrip>
2077
+ <admin type="source">Moore2003, 171</admin>
2078
+ </descripGrp>
2079
+ </termSec>
2080
+ </langSec>
2081
+ <langSec xml:lang="es">
2082
+ <transacGrp>
2083
+ <transac type="transactionType">origination</transac>
2084
+ <date>2010-04-24</date>
2085
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2086
+ </transacGrp>
2087
+ <transacGrp>
2088
+ <transac type="transactionType">modification</transac>
2089
+ <date>2010-04-24</date>
2090
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2091
+ </transacGrp>
2092
+ <descripGrp>
2093
+ <descrip type="definition">El espectro de una estrella clasificado por una
2094
+ letra (O, B, A, F, G, K, M, R, N, S) seguida de un digito que describe
2095
+ el color de la estrella y su temperatura.</descrip>
2096
+ <admin type="source">Basado en http://www.espacioprofundo.com.ar/diccionario/Glosario_de_Astronomia/vertermino/Tipo_espectral.html</admin>
2097
+ </descripGrp>
2098
+ <termSec>
2099
+ <term>tipo espectral</term>
2100
+
2101
+
2102
+ <termNote type="partOfSpeech">noun</termNote>
2103
+ <descripGrp>
2104
+ <descrip type="context">En el gráfico superior se muestra la intensidad
2105
+ de las líneas espectrales según la temperatura de la estrella (tipo
2106
+ espectral)</descrip>
2107
+ <admin type="source">http://www.astrosurf.com/astronosur/estrellas.htm</admin>
2108
+ </descripGrp>
2109
+ </termSec>
2110
+ </langSec>
2111
+ </conceptEntry>
2112
+
2113
+
2114
+ <conceptEntry id="c26">
2115
+ <transacGrp>
2116
+ <transac type="transactionType">origination</transac>
2117
+ <date>2010-04-24</date>
2118
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2119
+ </transacGrp>
2120
+ <transacGrp>
2121
+ <transac type="transactionType">modification</transac>
2122
+ <date>2010-05-01</date>
2123
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2124
+ </transacGrp>
2125
+ <descrip type="subjectField">General</descrip>
2126
+ <xref type="xGraphic" target="https://en.wikipedia.org/wiki/White_dwarf#/media/File:Sirius_A_and_B_Hubble_photo.editted.PNG">White_Dwarf.jpg</xref>
2127
+ <note>G-Source: http://www.stsci.edu/~inr/thisweek1/thisweek/WhiteDwarf.gif</note>
2128
+ <langSec xml:lang="en">
2129
+ <transacGrp>
2130
+ <transac type="transactionType">origination</transac>
2131
+ <date>2010-04-24</date>
2132
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2133
+ </transacGrp>
2134
+ <transacGrp>
2135
+ <transac type="transactionType">modification</transac>
2136
+ <date>2010-04-24</date>
2137
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2138
+ </transacGrp>
2139
+ <descripGrp>
2140
+ <descrip type="definition">A small dense star that is has run out of fuel
2141
+ for nuclear fusion, collapsing under its own gravity and blowing off its
2142
+ outer layers to form a planetary nebula in the process.</descrip>
2143
+ <admin type="source">Based on Oxford2007 and Cambridge2007</admin>
2144
+ </descripGrp>
2145
+ <note>This is the end-result of all but the most massive of stars.</note>
2146
+ <note>N-Source: Oxford2007</note>
2147
+ <termSec>
2148
+ <term>white dwarf</term>
2149
+
2150
+
2151
+ <termNote type="partOfSpeech">noun</termNote>
2152
+ <descripGrp>
2153
+ <descrip type="context">To the upper right lie giants and supergiants of
2154
+ tremendous luminosity, while to the lower left there are the white
2155
+ dwarfs, which are in a differnt category and were not known when HR
2156
+ Diagrams were introduced.</descrip>
2157
+ <admin type="source">Moore2003, 170</admin>
2158
+ </descripGrp>
2159
+ </termSec>
2160
+ </langSec>
2161
+ <langSec xml:lang="es">
2162
+ <transacGrp>
2163
+ <transac type="transactionType">origination</transac>
2164
+ <date>2010-04-24</date>
2165
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2166
+ </transacGrp>
2167
+ <transacGrp>
2168
+ <transac type="transactionType">modification</transac>
2169
+ <date>2010-04-24</date>
2170
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2171
+ </transacGrp>
2172
+ <descripGrp>
2173
+ <descrip type="definition">Un remanente estelar que se genera cuando una
2174
+ estrella de masa menor a 9-10 masas solares ha agotado su combustible
2175
+ nuclear.</descrip>
2176
+ <admin type="source">http://es.wikipedia.org/wiki/Enana_blanca</admin>
2177
+ </descripGrp>
2178
+ <termSec>
2179
+ <term>enana blanca</term>
2180
+
2181
+
2182
+ <termNote type="partOfSpeech">noun</termNote>
2183
+ <descripGrp>
2184
+ <descrip type="context">Cuando el material fusionable se agota la
2185
+ estrella pierde la presión interna producida por la fusión nuclear y
2186
+ puede colapsar inmediatamente terminando en una enana
2187
+ blanca.</descrip>
2188
+ <admin type="source">http://astroverada.com/_/Main/T_evolucion.html</admin>
2189
+ </descripGrp>
2190
+ </termSec>
2191
+ </langSec>
2192
+ </conceptEntry>
2193
+
2194
+
2195
+ <conceptEntry id="c27">
2196
+ <transacGrp>
2197
+ <transac type="transactionType">origination</transac>
2198
+ <date>2010-04-24</date>
2199
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2200
+ </transacGrp>
2201
+ <transacGrp>
2202
+ <transac type="transactionType">modification</transac>
2203
+ <date>2010-05-01</date>
2204
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2205
+ </transacGrp>
2206
+ <descrip type="subjectField">General</descrip>
2207
+ <xref type="xGraphic" target="https://en.wikipedia.org/wiki/Planetary_nebula#/media/File:NGC6543.jpg">Planetary_Nebula.jpg</xref>
2208
+ <note>G-Source:
2209
+ http://www.phys.ncku.edu.tw/~astrolab/mirrors/apod_e/image/0901/ngc2818_hheritage_800.jpg</note>
2210
+ <langSec xml:lang="en">
2211
+ <transacGrp>
2212
+ <transac type="transactionType">origination</transac>
2213
+ <date>2010-04-24</date>
2214
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2215
+ </transacGrp>
2216
+ <transacGrp>
2217
+ <transac type="transactionType">modification</transac>
2218
+ <date>2010-04-24</date>
2219
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2220
+ </transacGrp>
2221
+ <descripGrp>
2222
+ <descrip type="definition">A bright cloud of glowing gas and dust
2223
+ surrounding a highly evolved star.</descrip>
2224
+ <admin type="source">Oxford2007</admin>
2225
+ </descripGrp>
2226
+ <note>As mass is gradually lost, the core of the star becomes more exposed,
2227
+ ultimately becoming a white dwarf. Also, planetary nebulae have nothing to
2228
+ do with planets, and are not true nebulae.</note>
2229
+ <note>N-Source: Based on Oxford2007 and Moore2003, 186</note>
2230
+ <termSec>
2231
+ <term>planetary nebula</term>
2232
+
2233
+
2234
+ <termNote type="partOfSpeech">noun</termNote>
2235
+ <descripGrp>
2236
+ <descrip type="context">The star's outer layers are thrown off, and for
2237
+ a cosmically brief period - no more than about 100,000 years - we
2238
+ have the phenomenon of what is termed a planetary nebula.</descrip>
2239
+ <admin type="source">Moore2003, 173</admin>
2240
+ </descripGrp>
2241
+ </termSec>
2242
+ </langSec>
2243
+ <langSec xml:lang="es">
2244
+ <transacGrp>
2245
+ <transac type="transactionType">origination</transac>
2246
+ <date>2010-04-24</date>
2247
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2248
+ </transacGrp>
2249
+ <transacGrp>
2250
+ <transac type="transactionType">modification</transac>
2251
+ <date>2010-04-24</date>
2252
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2253
+ </transacGrp>
2254
+ <descripGrp>
2255
+ <descrip type="definition">Una nebulosa de emisión consistente en una
2256
+ envoltura brillante en expansión de plasma y gas ionizado, expulsada
2257
+ durante la fase de rama asintótica gigante que atraviesan las estrellas
2258
+ gigantes rojas en los últimos momentos de sus vidas.</descrip>
2259
+ <admin type="source">http://es.wikipedia.org/wiki/Nebulosa_planetaria</admin>
2260
+ </descripGrp>
2261
+ <termSec>
2262
+ <term>nebulosa planetaria</term>
2263
+
2264
+
2265
+ <termNote type="partOfSpeech">noun</termNote>
2266
+ <descripGrp>
2267
+ <descrip type="context">Las nebulosas planetarias resultan objetos muy
2268
+ espectaculares si se observan con un telescopio de media o gran
2269
+ potencia.</descrip>
2270
+ <admin type="source">http://www.astromia.com/glosario/nebulosaplanetaria.htm</admin>
2271
+ </descripGrp>
2272
+ </termSec>
2273
+ </langSec>
2274
+ </conceptEntry>
2275
+
2276
+
2277
+ <conceptEntry id="c28">
2278
+ <transacGrp>
2279
+ <transac type="transactionType">origination</transac>
2280
+ <date>2010-04-24</date>
2281
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2282
+ </transacGrp>
2283
+ <transacGrp>
2284
+ <transac type="transactionType">modification</transac>
2285
+ <date>2010-04-24</date>
2286
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2287
+ </transacGrp>
2288
+ <descrip type="subjectField">Stellar Birth</descrip>
2289
+ <xref type="xGraphic" target="https://en.wikipedia.org/wiki/Emission_nebula#/media/File:Ring_Nebula.jpg">Emission_Nebula.jpg</xref>
2290
+ <note>G-Source: http://apod.nasa.gov/apod/image/0612/NGC2174_lrg.jpg</note>
2291
+ <langSec xml:lang="en">
2292
+ <transacGrp>
2293
+ <transac type="transactionType">origination</transac>
2294
+ <date>2010-04-24</date>
2295
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2296
+ </transacGrp>
2297
+ <transacGrp>
2298
+ <transac type="transactionType">modification</transac>
2299
+ <date>2010-04-24</date>
2300
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2301
+ </transacGrp>
2302
+ <descripGrp>
2303
+ <descrip type="definition">A luminous cloud of gas and sust in space which
2304
+ shines with its own light, which can be generated in several
2305
+ ways.</descrip>
2306
+ <admin type="source">Oxford2007</admin>
2307
+ </descripGrp>
2308
+ <note>Ultraviolet radiation, gas cloud collisions, and synchrotron radiation can
2309
+ all cause the emission nebula to shine.</note>
2310
+ <note>N-Source: Oxford2007</note>
2311
+ <termSec>
2312
+ <term>emission nebula</term>
2313
+
2314
+
2315
+ <termNote type="partOfSpeech">noun</termNote>
2316
+ <termNote type="administrativeStatus">preferredTerm-admn-sts</termNote>
2317
+ <descripGrp>
2318
+ <descrip type="context">In this and other similar emission nebulae,
2319
+ energetic ultraviolet light from a hot young star strips electrons
2320
+ from the surrounding hydrogen atoms.</descrip>
2321
+ <admin type="source">http://apod.nasa.gov/apod/emission_nebulae.html</admin>
2322
+ </descripGrp>
2323
+ </termSec>
2324
+ </langSec>
2325
+ <langSec xml:lang="es">
2326
+ <transacGrp>
2327
+ <transac type="transactionType">origination</transac>
2328
+ <date>2010-04-24</date>
2329
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2330
+ </transacGrp>
2331
+ <transacGrp>
2332
+ <transac type="transactionType">modification</transac>
2333
+ <date>2010-04-24</date>
2334
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2335
+ </transacGrp>
2336
+ <descripGrp>
2337
+ <descrip type="definition">Una nube de gas interestelar que brilla por la
2338
+ excitación del gas, causado por radiación ultravioleta emitida por
2339
+ estrellas inmersas en la nube o por calentamiento debido a otro
2340
+ mecanismos. </descrip>
2341
+ <admin type="source">http://www.diclib.com/Nebulosa%20de%20emisi%C3%B3n/show/en/es_astronomia/726</admin>
2342
+ </descripGrp>
2343
+ <termSec>
2344
+ <term>nebulosa de emisión</term>
2345
+
2346
+
2347
+ <termNote type="partOfSpeech">noun</termNote>
2348
+ <descripGrp>
2349
+ <descrip type="context">Las nebulosas de emisión estan normalmente en
2350
+ los lugares de formación de estrellas.</descrip>
2351
+ <admin type="source">http://www.astrored.net/nebulosaweb/types.html</admin>
2352
+ </descripGrp>
2353
+ </termSec>
2354
+ </langSec>
2355
+ </conceptEntry>
2356
+
2357
+
2358
+ <conceptEntry id="c29">
2359
+ <transacGrp>
2360
+ <transac type="transactionType">origination</transac>
2361
+ <date>2010-04-24</date>
2362
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2363
+ </transacGrp>
2364
+ <transacGrp>
2365
+ <transac type="transactionType">modification</transac>
2366
+ <date>2010-04-24</date>
2367
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2368
+ </transacGrp>
2369
+ <descrip type="subjectField">General</descrip>
2370
+ <xref type="xGraphic" target="https://en.wikipedia.org/wiki/Nebula#/media/File:Eagle_nebula_pillars.jpg">Nebula.jpg</xref>
2371
+ <note>G-Source:
2372
+ http://my-blackberry.net/wallpapers/49/m/NASA_-_The_Horsehead_Nebula%2C_B33%2C_Orion_Nebula.jpg</note>
2373
+ <langSec xml:lang="en">
2374
+ <transacGrp>
2375
+ <transac type="transactionType">origination</transac>
2376
+ <date>2010-04-24</date>
2377
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2378
+ </transacGrp>
2379
+ <transacGrp>
2380
+ <transac type="transactionType">modification</transac>
2381
+ <date>2010-04-24</date>
2382
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2383
+ </transacGrp>
2384
+ <transacGrp>
2385
+ <transac type="transactionType">origination</transac>
2386
+ <date>2010-04-24</date>
2387
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2388
+ </transacGrp>
2389
+ <transacGrp>
2390
+ <transac type="transactionType">modification</transac>
2391
+ <date>2010-04-24</date>
2392
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2393
+ </transacGrp>
2394
+ <descripGrp>
2395
+ <descrip type="definition">A cloud of interstellar gas and dust.</descrip>
2396
+ <admin type="source">Cambridge2007</admin>
2397
+ </descripGrp>
2398
+ <note>The term was originally applied to any object with a fuzzy telescopic
2399
+ appearance, but with the advent of larger instruments many 'nebulae' were
2400
+ found to consist of faint stars.</note>
2401
+ <note>N-Source: Oxford2007</note>
2402
+ <termSec>
2403
+ <term>nebula</term>
2404
+
2405
+
2406
+ <termNote type="partOfSpeech">noun</termNote>
2407
+ <note>Grammatical Number: singular</note>
2408
+ <descripGrp>
2409
+ <descrip type="context">According to current theory, a star begins by
2410
+ condensing out of the tenuous material making up a nebula.</descrip>
2411
+ <admin type="source">Moore2003, 172</admin>
2412
+ </descripGrp>
2413
+ </termSec>
2414
+ <termSec>
2415
+ <term>nebulae</term>
2416
+
2417
+
2418
+ <termNote type="partOfSpeech">noun</termNote>
2419
+ <note>Grammatical Number: plural</note>
2420
+ <descripGrp>
2421
+ <descrip type="context">Other nebulae are within the range of small
2422
+ telescopes.</descrip>
2423
+ <admin type="source">Moore2003, 187</admin>
2424
+ </descripGrp>
2425
+ </termSec>
2426
+ </langSec>
2427
+ <langSec xml:lang="es">
2428
+ <transacGrp>
2429
+ <transac type="transactionType">origination</transac>
2430
+ <date>2010-04-24</date>
2431
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2432
+ </transacGrp>
2433
+ <transacGrp>
2434
+ <transac type="transactionType">modification</transac>
2435
+ <date>2010-04-24</date>
2436
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2437
+ </transacGrp>
2438
+ <descripGrp>
2439
+ <descrip type="definition">Regiones del medio interestelar constituidas por
2440
+ gases (principalmente hidrógeno y helio) y polvo.</descrip>
2441
+ <admin type="source">http://es.wikipedia.org/wiki/Nebulosa</admin>
2442
+ </descripGrp>
2443
+ <termSec>
2444
+ <term>nebulosa</term>
2445
+
2446
+
2447
+ <termNote type="partOfSpeech">noun</termNote>
2448
+ <descripGrp>
2449
+ <descrip type="context">A unos 1.500 años-luz de distancia, dentro de
2450
+ nuestro brazo espiral en la Vía Láctea, la Nebulosa de Orión está en
2451
+ el centro de la región de la Espada de la constelación de Orión el
2452
+ Cazador, que domina el cielo nocturno a inicios del invierno, en las
2453
+ latitudes Norte.</descrip>
2454
+ <admin type="source">http://www.oarval.org/OrionNebsp.htm</admin>
2455
+ </descripGrp>
2456
+ </termSec>
2457
+ </langSec>
2458
+ </conceptEntry>
2459
+
2460
+
2461
+ <conceptEntry id="c30">
2462
+ <transacGrp>
2463
+ <transac type="transactionType">origination</transac>
2464
+ <date>2010-04-28</date>
2465
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2466
+ </transacGrp>
2467
+ <transacGrp>
2468
+ <transac type="transactionType">modification</transac>
2469
+ <date>2010-04-29</date>
2470
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2471
+ </transacGrp>
2472
+ <descrip type="subjectField">Stellar Birth</descrip>
2473
+ <xref type="xGraphic" target="https://en.wikipedia.org/wiki/Dark_nebula#/media/File:All_Quiet_in_the_Nursery%3F.jpg">Dark_Nebula.jpg</xref>
2474
+ <note>G-Source: http://www.mallorcaweb.net/masm/obstel/caballo.GIF</note>
2475
+ <langSec xml:lang="en">
2476
+ <transacGrp>
2477
+ <transac type="transactionType">origination</transac>
2478
+ <date>2010-04-28</date>
2479
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2480
+ </transacGrp>
2481
+ <transacGrp>
2482
+ <transac type="transactionType">modification</transac>
2483
+ <date>2010-04-28</date>
2484
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2485
+ </transacGrp>
2486
+ <transacGrp>
2487
+ <transac type="transactionType">origination</transac>
2488
+ <date>2010-04-28</date>
2489
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2490
+ </transacGrp>
2491
+ <transacGrp>
2492
+ <transac type="transactionType">modification</transac>
2493
+ <date>2010-04-28</date>
2494
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2495
+ </transacGrp>
2496
+ <descripGrp>
2497
+ <descrip type="definition">A type of interstellar cloud that is so dense
2498
+ that it obscures the light from the background emission or reflection
2499
+ nebula or that it blocks out background stars.</descrip>
2500
+ <admin type="source">http://en.wikipedia.org/wiki/Dark_nebula</admin>
2501
+ </descripGrp>
2502
+ <termSec>
2503
+ <term>dark nebula</term>
2504
+
2505
+
2506
+ <termNote type="partOfSpeech">noun</termNote>
2507
+ <termNote type="administrativeStatus">preferredTerm-admn-sts</termNote>
2508
+ <descripGrp>
2509
+ <descrip type="context">There is no difference between a dark nebula and
2510
+ a bright one, except for the lack of illumination.</descrip>
2511
+ <admin type="source">Moore2003, 187</admin>
2512
+ </descripGrp>
2513
+ </termSec>
2514
+ <termSec>
2515
+ <term>absorbtion nebula</term>
2516
+
2517
+
2518
+ <termNote type="partOfSpeech">noun</termNote>
2519
+ <termNote type="administrativeStatus">admittedTerm-admn-sts</termNote>
2520
+ <descripGrp>
2521
+ <descrip type="context">An absorption nebula is a dense cloud of dust
2522
+ and gas. From the point of view of an observer on Earth, it absorbs
2523
+ the light from more distant stars, creating a dark, starless
2524
+ region.</descrip>
2525
+ <admin type="source">http://www.glyphweb.com/esky/concepts/absorptionnebula.html</admin>
2526
+ </descripGrp>
2527
+ </termSec>
2528
+ </langSec>
2529
+ <langSec xml:lang="es">
2530
+ <transacGrp>
2531
+ <transac type="transactionType">origination</transac>
2532
+ <date>2010-04-28</date>
2533
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2534
+ </transacGrp>
2535
+ <transacGrp>
2536
+ <transac type="transactionType">modification</transac>
2537
+ <date>2010-04-28</date>
2538
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2539
+ </transacGrp>
2540
+ <transacGrp>
2541
+ <transac type="transactionType">origination</transac>
2542
+ <date>2010-04-28</date>
2543
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2544
+ </transacGrp>
2545
+ <transacGrp>
2546
+ <transac type="transactionType">modification</transac>
2547
+ <date>2010-04-28</date>
2548
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2549
+ </transacGrp>
2550
+ <descripGrp>
2551
+ <descrip type="definition">Nubes de polvo que simplemente tapan la luz de lo
2552
+ que haya detras.</descrip>
2553
+ <admin type="source">http://www.astrored.net/nebulosaweb/types.html</admin>
2554
+ </descripGrp>
2555
+ <termSec>
2556
+ <term>nebulosa oscura</term>
2557
+
2558
+
2559
+ <termNote type="partOfSpeech">noun</termNote>
2560
+ <termNote type="administrativeStatus">preferredTerm-admn-sts</termNote>
2561
+ <descripGrp>
2562
+ <descrip type="context">Aqui hay un mapa que muestra las regiones de
2563
+ nebulosas oscuras que estan en un radio de 2000 años luz.</descrip>
2564
+ <admin type="source">http://www.atlasoftheuniverse.com/espanol/darknebs.html</admin>
2565
+ </descripGrp>
2566
+ </termSec>
2567
+ <termSec>
2568
+ <term>nebulosa de absorción</term>
2569
+
2570
+
2571
+ <termNote type="partOfSpeech">noun</termNote>
2572
+ <termNote type="administrativeStatus">admittedTerm-admn-sts</termNote>
2573
+ <descripGrp>
2574
+ <descrip type="context">El caso más opuesto a las nebulosas de emisión
2575
+ son las nebulosas de absorción (nebulosas oscuras). Estas ni si
2576
+ quiera están rodeadas de estrellas lo suficientemente potentes ni
2577
+ cercanas para hacer llegar la luminosidad suficiente para que la
2578
+ nebulosa pueda reflejarla.</descrip>
2579
+ <admin type="source">http://www.blogdeastronomia.es/astronomia/formacion-de-estrellas/las-nebulosas</admin>
2580
+ </descripGrp>
2581
+ </termSec>
2582
+ </langSec>
2583
+ </conceptEntry>
2584
+
2585
+
2586
+ <conceptEntry id="c31">
2587
+ <transacGrp>
2588
+ <transac type="transactionType">origination</transac>
2589
+ <date>2010-04-28</date>
2590
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2591
+ </transacGrp>
2592
+ <transacGrp>
2593
+ <transac type="transactionType">modification</transac>
2594
+ <date>2010-04-28</date>
2595
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2596
+ </transacGrp>
2597
+ <descrip type="subjectField">Stellar Birth</descrip>
2598
+ <xref type="xGraphic" target="https://en.wikipedia.org/wiki/Reflection_nebula#/media/File:Reflection.nebula.arp.750pix.jpg">Reflection_Nebula.jpeg</xref>
2599
+ <note>G-Source:
2600
+ http://mm04.nasaimages.org/MediaManager/srvr?mediafile=/Size3/NVA2-8-NA/14107/full_tif.jpg&amp;userid=1&amp;username=admin&amp;resolution=3&amp;servertype=JVA&amp;cid=8&amp;iid=NVA2&amp;vcid=NA&amp;usergroup=HUBBLE&amp;profileid=39</note>
2601
+ <langSec xml:lang="en">
2602
+ <transacGrp>
2603
+ <transac type="transactionType">origination</transac>
2604
+ <date>2010-04-28</date>
2605
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2606
+ </transacGrp>
2607
+ <transacGrp>
2608
+ <transac type="transactionType">modification</transac>
2609
+ <date>2010-04-28</date>
2610
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2611
+ </transacGrp>
2612
+ <descripGrp>
2613
+ <descrip type="definition">A cloud of interstellar gas and dust that appears
2614
+ bight because it reflects or scatters starlight.</descrip>
2615
+ <admin type="source">Oxford2007</admin>
2616
+ </descripGrp>
2617
+ <termSec>
2618
+ <term>reflection nebula</term>
2619
+
2620
+
2621
+ <termNote type="partOfSpeech">noun</termNote>
2622
+ <descripGrp>
2623
+ <descrip type="context">Just weeks after NASA astronauts repaired the
2624
+ Hubble Space Telescope in December 1999, the Hubble Heritage Project
2625
+ snapped this picture of NGC 1999, a reflection nebula in the
2626
+ constellation Orion. </descrip>
2627
+ <admin type="source">http://www.nasa.gov/multimedia/imagegallery/image_feature_701.html</admin>
2628
+ </descripGrp>
2629
+ </termSec>
2630
+ </langSec>
2631
+ <langSec xml:lang="es">
2632
+ <transacGrp>
2633
+ <transac type="transactionType">origination</transac>
2634
+ <date>2010-04-28</date>
2635
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2636
+ </transacGrp>
2637
+ <transacGrp>
2638
+ <transac type="transactionType">modification</transac>
2639
+ <date>2010-04-28</date>
2640
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2641
+ </transacGrp>
2642
+ <descripGrp>
2643
+ <descrip type="definition">Nubes de polvo que simplemente reflejan la luz de
2644
+ una estrella o estrellas cercanas.</descrip>
2645
+ <admin type="source">http://www.astrored.net/nebulosaweb/types.html</admin>
2646
+ </descripGrp>
2647
+ <termSec>
2648
+ <term>nebulosa de reflexión</term>
2649
+
2650
+
2651
+ <termNote type="partOfSpeech">noun</termNote>
2652
+ <descripGrp>
2653
+ <descrip type="context">Como el propio nombre implica, esta nebulosa de
2654
+ reflexión asociada con la estrella Rigel, se asemeja a una vieja
2655
+ arpía de un cuento de hadas. </descrip>
2656
+ <admin type="source">http://www.astrofotos.com.es/2008/11/nebulosa-de-la-cabeza-de-bruja.html</admin>
2657
+ </descripGrp>
2658
+ </termSec>
2659
+ </langSec>
2660
+ </conceptEntry>
2661
+
2662
+
2663
+ <conceptEntry id="c32">
2664
+ <transacGrp>
2665
+ <transac type="transactionType">origination</transac>
2666
+ <date>2010-04-29</date>
2667
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2668
+ </transacGrp>
2669
+ <transacGrp>
2670
+ <transac type="transactionType">modification</transac>
2671
+ <date>2010-04-29</date>
2672
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2673
+ </transacGrp>
2674
+ <descrip type="subjectField">General</descrip>
2675
+ <xref type="xGraphic" target="https://en.wikipedia.org/wiki/Neutron_star#/media/File:PIA18848-PSRB1509-58-ChandraXRay-WiseIR-20141023.jpg">Neutron_Star.jpg</xref>
2676
+ <langSec xml:lang="en">
2677
+ <transacGrp>
2678
+ <transac type="transactionType">origination</transac>
2679
+ <date>2010-04-29</date>
2680
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2681
+ </transacGrp>
2682
+ <transacGrp>
2683
+ <transac type="transactionType">modification</transac>
2684
+ <date>2010-04-29</date>
2685
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2686
+ </transacGrp>
2687
+ <note>G-Source: http://nrumiano.free.fr/Images/Neutron_star_E.gif</note>
2688
+ <termSec>
2689
+ <term>neutron star</term>
2690
+
2691
+
2692
+ <termNote type="partOfSpeech">noun</termNote>
2693
+ <descripGrp>
2694
+ <descrip type="context">After its Main Sequence period the star becomes
2695
+ a red supergiant and may explode as a supernova. It may end as a
2696
+ neutron star or pulsar, although if its mass is even greater it may
2697
+ poroduce a black hole.</descrip>
2698
+ <admin type="source">Moore2003, 173</admin>
2699
+ </descripGrp>
2700
+ </termSec>
2701
+ </langSec>
2702
+ <langSec xml:lang="es">
2703
+ <transacGrp>
2704
+ <transac type="transactionType">origination</transac>
2705
+ <date>2010-04-29</date>
2706
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2707
+ </transacGrp>
2708
+ <transacGrp>
2709
+ <transac type="transactionType">modification</transac>
2710
+ <date>2010-04-29</date>
2711
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2712
+ </transacGrp>
2713
+ <note>G-Source:
2714
+ http://es.wikipedia.org/wiki/Archivo:Estrella_de_Neutrones.jpg</note>
2715
+ <descripGrp>
2716
+ <descrip type="definition">Un cuerpo pequeño muy denso que se forma en el
2717
+ envejecimiento de una estrella pesada y que está formada únicamente por
2718
+ partículas subatómicas denominadas neutrones.</descrip>
2719
+ <admin type="source">http://www.astroasa.com.ar/diccionario_astro.htm</admin>
2720
+ </descripGrp>
2721
+ <termSec>
2722
+ <term>estrella de neutrones</term>
2723
+
2724
+
2725
+ <termNote type="partOfSpeech">noun</termNote>
2726
+ <descripGrp>
2727
+ <descrip type="context">El Gran Telescopio Canarias (GTC), instalado en
2728
+ el Observatorio del Roque de los Muchachos (La Palma), ha obtenido
2729
+ imágenes de una profundidad "sin precedentes" de una estrella de
2730
+ neutrones del tipo magnetar, de las que se conocen seis, según ha
2731
+ informado el Instituto de Astrofísica de Canarias (IAC).</descrip>
2732
+ <admin type="source">http://www.rtve.es/noticias/20100301/imagen-unica-estrella-neutrones-cazada-canarias/321412.shtml</admin>
2733
+ </descripGrp>
2734
+ </termSec>
2735
+ </langSec>
2736
+ </conceptEntry>
2737
+
2738
+
2739
+ <conceptEntry id="c33">
2740
+ <transacGrp>
2741
+ <transac type="transactionType">origination</transac>
2742
+ <date>2010-04-29</date>
2743
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2744
+ </transacGrp>
2745
+ <transacGrp>
2746
+ <transac type="transactionType">modification</transac>
2747
+ <date>2010-05-01</date>
2748
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2749
+ </transacGrp>
2750
+ <descrip type="subjectField">Stellar Death</descrip>
2751
+ <langSec xml:lang="en">
2752
+ <transacGrp>
2753
+ <transac type="transactionType">origination</transac>
2754
+ <date>2010-04-29</date>
2755
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2756
+ </transacGrp>
2757
+ <transacGrp>
2758
+ <transac type="transactionType">modification</transac>
2759
+ <date>2010-04-29</date>
2760
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2761
+ </transacGrp>
2762
+ <descripGrp>
2763
+ <descrip type="definition">The maximum possible mass of a degenerate star,
2764
+ above which it will be unable to support itself against the inward pull
2765
+ of its own gravity. </descrip>
2766
+ <admin type="source">Oxford2007</admin>
2767
+ </descripGrp>
2768
+ <note>For a star with no hydrogen content the limit is 1.44 solar masses, which
2769
+ is thus the maximum possible for a white dwarf.</note>
2770
+ <note>N-Source: Oxford2007</note>
2771
+ <termSec>
2772
+ <term>Chandrasekhar limit</term>
2773
+
2774
+
2775
+ <termNote type="partOfSpeech">noun</termNote>
2776
+ <descripGrp>
2777
+ <descrip type="context">However, there is a limit, once the mass of the
2778
+ white dwarf becomes greater than 1.4 time that of the sun )a value
2779
+ known as the Chandrasekhar limit, after the Indian astronomer who
2780
+ first worked it out=, the carbon detonates, and in a matter of a few
2781
+ seconds the white dwarf blows itself to pieces.</descrip>
2782
+ <admin type="source">Moore2003</admin>
2783
+ </descripGrp>
2784
+ </termSec>
2785
+ </langSec>
2786
+ <langSec xml:lang="es">
2787
+ <transacGrp>
2788
+ <transac type="transactionType">origination</transac>
2789
+ <date>2010-04-29</date>
2790
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2791
+ </transacGrp>
2792
+ <transacGrp>
2793
+ <transac type="transactionType">modification</transac>
2794
+ <date>2010-04-29</date>
2795
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2796
+ </transacGrp>
2797
+ <descripGrp>
2798
+ <descrip type="definition">El límite de masa más allá del cual la
2799
+ degeneración de electrones no es capaz de contrarrestar la fuerza de
2800
+ gravedad en un remanente estelar, produciéndose un colapso que origina
2801
+ una estrella de neutrones o un agujero negro. </descrip>
2802
+ <admin type="source">http://es.wikipedia.org/wiki/L%C3%ADmite_de_Chandrasekhar</admin>
2803
+ </descripGrp>
2804
+ <termSec>
2805
+ <term>límite de Chandrasekhar</term>
2806
+
2807
+
2808
+ <termNote type="partOfSpeech">noun</termNote>
2809
+ <descripGrp>
2810
+ <descrip type="context">Descubrió una masa (aproximadamente 1.5 veces la
2811
+ masa del Sol) en la que una estrella fría no podría soportar su
2812
+ gravedad. Esto es lo que se conoce como el límite de
2813
+ Chandrasekhar.</descrip>
2814
+ <admin type="source">http://html.rincondelvago.com/agujeros-negros_5.html</admin>
2815
+ </descripGrp>
2816
+ </termSec>
2817
+ </langSec>
2818
+ </conceptEntry>
2819
+
2820
+
2821
+ <conceptEntry id="c34">
2822
+ <transacGrp>
2823
+ <transac type="transactionType">origination</transac>
2824
+ <date>2010-04-29</date>
2825
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2826
+ </transacGrp>
2827
+ <transacGrp>
2828
+ <transac type="transactionType">modification</transac>
2829
+ <date>2010-05-01</date>
2830
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2831
+ </transacGrp>
2832
+ <descrip type="subjectField">Stellar Death</descrip>
2833
+ <langSec xml:lang="en">
2834
+ <transacGrp>
2835
+ <transac type="transactionType">origination</transac>
2836
+ <date>2010-04-29</date>
2837
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2838
+ </transacGrp>
2839
+ <transacGrp>
2840
+ <transac type="transactionType">modification</transac>
2841
+ <date>2010-04-29</date>
2842
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2843
+ </transacGrp>
2844
+ <descripGrp>
2845
+ <descrip type="definition">The state of degeneracy attained when the density
2846
+ of matter is so high that neutrons cannot be packed any more closely
2847
+ together.</descrip>
2848
+ <admin type="source">Oxford2007</admin>
2849
+ </descripGrp>
2850
+ <note>Encountered on in neutron stars.</note>
2851
+ <note>N-Source: Oxford2007</note>
2852
+ <termSec>
2853
+ <term>neutron degeneracy</term>
2854
+
2855
+
2856
+ <termNote type="partOfSpeech">noun</termNote>
2857
+ <descripGrp>
2858
+ <descrip type="context">When it reaches the threshold of energy
2859
+ necessary to force the combining of electrons and protons to form
2860
+ neutrons, the electron degeneracy limit has been passed and the
2861
+ collapse continues until it is stopped by neutron
2862
+ degeneracy.</descrip>
2863
+ <admin type="source">http://hyperphysics.phy-astr.gsu.edu/HBASE/Astro/pulsar.html</admin>
2864
+ </descripGrp>
2865
+ </termSec>
2866
+ </langSec>
2867
+ <langSec xml:lang="es">
2868
+ <transacGrp>
2869
+ <transac type="transactionType">origination</transac>
2870
+ <date>2010-04-29</date>
2871
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2872
+ </transacGrp>
2873
+ <transacGrp>
2874
+ <transac type="transactionType">modification</transac>
2875
+ <date>2010-04-29</date>
2876
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2877
+ </transacGrp>
2878
+ <descripGrp>
2879
+ <descrip type="definition">El estado de degeneración alcanzado cuando la
2880
+ densidad de materia es tan alta, que los neutrones no pueden juntarse
2881
+ más.</descrip>
2882
+ <admin type="source">Oxford2003</admin>
2883
+ </descripGrp>
2884
+ <termSec>
2885
+ <term>degeneración de neutrones</term>
2886
+
2887
+
2888
+ <termNote type="partOfSpeech">noun</termNote>
2889
+ <descripGrp>
2890
+ <descrip type="context">Es la principal responsable de la resistencia al
2891
+ colapso gravitacional de las enanas blancas (degeneración de
2892
+ electrones) y de las estrellas de neutrones (degeneración de
2893
+ neutrones). </descrip>
2894
+ <admin type="source">http://www.emiliosilveravazquez.com/glosario.php?letra=d</admin>
2895
+ </descripGrp>
2896
+ </termSec>
2897
+ </langSec>
2898
+ </conceptEntry>
2899
+
2900
+
2901
+ <conceptEntry id="c35">
2902
+ <transacGrp>
2903
+ <transac type="transactionType">origination</transac>
2904
+ <date>2010-04-29</date>
2905
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2906
+ </transacGrp>
2907
+ <transacGrp>
2908
+ <transac type="transactionType">modification</transac>
2909
+ <date>2010-05-01</date>
2910
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2911
+ </transacGrp>
2912
+ <descrip type="subjectField">General</descrip>
2913
+ <xref type="xGraphic" target="https://en.wikipedia.org/wiki/Event_horizon#/media/File:Spacetime_lattice_analogy.svg">Event_Horizon.jpg</xref>
2914
+ <note>G-Source:
2915
+ http://www.astro.cornell.edu/academics/courses/astro2201/images/bh_structure.gif</note>
2916
+ <langSec xml:lang="en">
2917
+ <transacGrp>
2918
+ <transac type="transactionType">origination</transac>
2919
+ <date>2010-04-29</date>
2920
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2921
+ </transacGrp>
2922
+ <transacGrp>
2923
+ <transac type="transactionType">modification</transac>
2924
+ <date>2010-04-29</date>
2925
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2926
+ </transacGrp>
2927
+ <descripGrp>
2928
+ <descrip type="definition">The radius of the event horizon of a black
2929
+ hole.</descrip>
2930
+ <admin type="source">Oxford2007</admin>
2931
+ </descripGrp>
2932
+ <termSec>
2933
+ <term>Schwarzschild radius</term>
2934
+
2935
+
2936
+ <termNote type="partOfSpeech">noun</termNote>
2937
+ <descripGrp>
2938
+ <descrip type="context">The critical radius of a non-rotating black hole
2939
+ is called the Schwarzschild radius, after the German astronomer who
2940
+ investermSecated the problem mathematically as long ago as 1916: the
2941
+ boundary around the collapsed star having this radius is termed the
2942
+ 'event horizon'.</descrip>
2943
+ <admin type="source">Moore2003</admin>
2944
+ </descripGrp>
2945
+ <note>Related Term: event horizon</note>
2946
+ </termSec>
2947
+ </langSec>
2948
+ <langSec xml:lang="es">
2949
+ <transacGrp>
2950
+ <transac type="transactionType">origination</transac>
2951
+ <date>2010-04-29</date>
2952
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2953
+ </transacGrp>
2954
+ <transacGrp>
2955
+ <transac type="transactionType">modification</transac>
2956
+ <date>2010-04-29</date>
2957
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2958
+ </transacGrp>
2959
+ <descripGrp>
2960
+ <descrip type="definition">El radio del horizonte de sucesos para un agujero
2961
+ negro.</descrip>
2962
+ <admin type="source">http://www.astrocosmo.cl/glosario/glosar-r.htm</admin>
2963
+ </descripGrp>
2964
+ <termSec>
2965
+ <term>radio de Schwarzschild</term>
2966
+
2967
+
2968
+ <termNote type="partOfSpeech">noun</termNote>
2969
+ <descripGrp>
2970
+ <descrip type="context">Me pareció muy interesante este vídeo del
2971
+ proyecto Sixty Symbols de la Universidad de Nottingham en el que
2972
+ explican de forma divulgativa qué es el radio de Schwarzschild.
2973
+ Básicamente es el radio de un agujero negro.</descrip>
2974
+ <admin type="source">http://www.microsiervos.com/archivo/ciencia/agujeros-negros-y-el-radio-de-schwarzschild.html</admin>
2975
+ </descripGrp>
2976
+ <note>Related Term: horizonte de sucesos, horizonte de eventos</note>
2977
+ </termSec>
2978
+ </langSec>
2979
+ </conceptEntry>
2980
+
2981
+
2982
+ <conceptEntry id="c36">
2983
+ <transacGrp>
2984
+ <transac type="transactionType">origination</transac>
2985
+ <date>2010-04-29</date>
2986
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2987
+ </transacGrp>
2988
+ <transacGrp>
2989
+ <transac type="transactionType">modification</transac>
2990
+ <date>2010-05-01</date>
2991
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
2992
+ </transacGrp>
2993
+ <descrip type="subjectField">Stellar Death</descrip>
2994
+ <xref type="xGraphic" target="https://en.wikipedia.org/wiki/Event_horizon#/media/File:Spacetime_lattice_analogy.svg">Event_Horizon.jpg</xref>
2995
+ <note>G-Source:
2996
+ http://www.astro.cornell.edu/academics/courses/astro2201/images/bh_structure.gif</note>
2997
+ <langSec xml:lang="en">
2998
+ <transacGrp>
2999
+ <transac type="transactionType">origination</transac>
3000
+ <date>2010-04-29</date>
3001
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3002
+ </transacGrp>
3003
+ <transacGrp>
3004
+ <transac type="transactionType">modification</transac>
3005
+ <date>2010-04-29</date>
3006
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3007
+ </transacGrp>
3008
+ <descripGrp>
3009
+ <descrip type="definition">The surface of a black hole.</descrip>
3010
+ <admin type="source">Oxford2007</admin>
3011
+ </descripGrp>
3012
+ <termSec>
3013
+ <term>event horizon</term>
3014
+
3015
+
3016
+ <termNote type="partOfSpeech">noun</termNote>
3017
+ <descripGrp>
3018
+ <descrip type="context">Narayan and Heyl have calculated that if very
3019
+ heavy objects do not collapse to a point with an event horizon but
3020
+ instead have a surface, they would eject as many type 1 bursts as
3021
+ neutron stars.</descrip>
3022
+ <admin type="source">http://www.newscientist.com/article/dn2527-astronomers-reach-the-event-horizon.html</admin>
3023
+ </descripGrp>
3024
+ </termSec>
3025
+ </langSec>
3026
+ <langSec xml:lang="es">
3027
+ <transacGrp>
3028
+ <transac type="transactionType">origination</transac>
3029
+ <date>2010-04-29</date>
3030
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3031
+ </transacGrp>
3032
+ <transacGrp>
3033
+ <transac type="transactionType">modification</transac>
3034
+ <date>2010-04-29</date>
3035
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3036
+ </transacGrp>
3037
+ <transacGrp>
3038
+ <transac type="transactionType">origination</transac>
3039
+ <date>2010-04-29</date>
3040
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3041
+ </transacGrp>
3042
+ <transacGrp>
3043
+ <transac type="transactionType">modification</transac>
3044
+ <date>2010-04-29</date>
3045
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3046
+ </transacGrp>
3047
+ <descripGrp>
3048
+ <descrip type="definition">El superficie de un agujero negro.</descrip>
3049
+ <admin type="source">Oxford2003</admin>
3050
+ </descripGrp>
3051
+ <termSec>
3052
+ <term>horizonte de sucesos</term>
3053
+
3054
+
3055
+ <termNote type="partOfSpeech">noun</termNote>
3056
+ <descripGrp>
3057
+ <descrip type="context">En consecuencia, aquí, cuando nos estamos
3058
+ refiriendo a una «singularidad», estamos pensando en una masa con
3059
+ volumen nulo rodeada de una frontera gravitacional llamada
3060
+ «horizonte de sucesos», de la cual nada puede escapar. </descrip>
3061
+ <admin type="source">http://www.astrocosmo.cl/h-foton/h-foton-03_08-01.htm</admin>
3062
+ </descripGrp>
3063
+ </termSec>
3064
+ <termSec>
3065
+ <term>horizonte de eventos</term>
3066
+
3067
+
3068
+ <termNote type="partOfSpeech">noun</termNote>
3069
+ <descripGrp>
3070
+ <descrip type="context">InvestermSecadores de la Universidad de St. Andrews
3071
+ en Escocia, afirman haber encontrado una forma de simular un
3072
+ horizonte de eventos de un agujero negro – no a través de una nueva
3073
+ técnica de observación cósmica, ni mediante una supercomputadora de
3074
+ alta potencia … sino en el laboratorio.</descrip>
3075
+ <admin type="source">http://www.cienciakanija.com/2008/02/14/horizonte-de-eventos-sintetico-de-un-agujero-negro-creado-en-un-laboratorio-del-reino-unido/</admin>
3076
+ </descripGrp>
3077
+ </termSec>
3078
+ </langSec>
3079
+ </conceptEntry>
3080
+
3081
+
3082
+ <conceptEntry id="c37">
3083
+ <transacGrp>
3084
+ <transac type="transactionType">origination</transac>
3085
+ <date>2010-04-29</date>
3086
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3087
+ </transacGrp>
3088
+ <transacGrp>
3089
+ <transac type="transactionType">modification</transac>
3090
+ <date>2010-05-01</date>
3091
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3092
+ </transacGrp>
3093
+ <descrip type="subjectField">General</descrip>
3094
+ <xref type="xGraphic" target="https://en.wikipedia.org/wiki/Proton%E2%80%93proton_chain_reaction#/media/File:Fusion_in_the_Sun.svg">PP_Chain.jpg</xref>
3095
+ <note>G-Source: http://en.wikipedia.org/wiki/File:FusionintheSun.svg</note>
3096
+ <langSec xml:lang="en">
3097
+ <transacGrp>
3098
+ <transac type="transactionType">origination</transac>
3099
+ <date>2010-04-29</date>
3100
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3101
+ </transacGrp>
3102
+ <transacGrp>
3103
+ <transac type="transactionType">modification</transac>
3104
+ <date>2010-04-29</date>
3105
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3106
+ </transacGrp>
3107
+ <transacGrp>
3108
+ <transac type="transactionType">origination</transac>
3109
+ <date>2010-04-29</date>
3110
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3111
+ </transacGrp>
3112
+ <transacGrp>
3113
+ <transac type="transactionType">modification</transac>
3114
+ <date>2010-04-29</date>
3115
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3116
+ </transacGrp>
3117
+ <transacGrp>
3118
+ <transac type="transactionType">origination</transac>
3119
+ <date>2010-04-29</date>
3120
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3121
+ </transacGrp>
3122
+ <transacGrp>
3123
+ <transac type="transactionType">modification</transac>
3124
+ <date>2010-04-29</date>
3125
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3126
+ </transacGrp>
3127
+ <termSec>
3128
+ <term>proton-proton chain reaction</term>
3129
+
3130
+
3131
+ <termNote type="partOfSpeech">noun</termNote>
3132
+ <termNote type="administrativeStatus">admittedTerm-admn-sts</termNote>
3133
+ <termNote type="termType">fullForm</termNote>
3134
+ <descripGrp>
3135
+ <descrip type="context">The proton–proton chain reaction is one of
3136
+ several fusion reactions by which stars convert hydrogen to helium,
3137
+ the primary alternative being the CNO cycle. The proton–proton chain
3138
+ dominates in stars the size of the Sun or smaller.</descrip>
3139
+ <admin type="source">http://www.absoluteastronomy.com/topics/Proton-proton_chain_reaction</admin>
3140
+ </descripGrp>
3141
+ </termSec>
3142
+ <termSec>
3143
+ <term>PP chain</term>
3144
+
3145
+
3146
+ <termNote type="partOfSpeech">noun</termNote>
3147
+ <termNote type="administrativeStatus">preferredTerm-admn-sts</termNote>
3148
+ <termNote type="termType">shortForm</termNote>
3149
+ <descripGrp>
3150
+ <descrip type="context">The primary reactions in the main branch of the
3151
+ PP chain are illustrated in the following figure.</descrip>
3152
+ <admin type="source">http://csep10.phys.utk.edu/astr162/lect/energy/ppchain.html</admin>
3153
+ </descripGrp>
3154
+ </termSec>
3155
+ <termSec>
3156
+ <term>proton-proton reaction</term>
3157
+
3158
+
3159
+ <termNote type="partOfSpeech">noun</termNote>
3160
+ <termNote type="administrativeStatus">admittedTerm-admn-sts</termNote>
3161
+ <termNote type="termType">variant</termNote>
3162
+ <descripGrp>
3163
+ <descrip type="context">The gamma rays produced in the proton-proton
3164
+ reaction take one to 10 million years to work their way out from the
3165
+ star's core, being scattered numerous times and losing energy as
3166
+ they go, until they emerge from the surface as rays of light and
3167
+ heat. Inside the Sun, about 655 million tons of hydrogen are
3168
+ converted into 650 million tons of helium every second. In stars
3169
+ heavier than about 2 solar masses, in which the core temperature is
3170
+ more than about 18 million K, the dominant process in which energy
3171
+ is produced by the fusion of hydrogen into helium is a different
3172
+ reaction chain known as the carbon-nitrogen cycle. </descrip>
3173
+ <admin type="source">http://www.daviddarling.info/encyclopedia/P/proton-proton_chain.html</admin>
3174
+ </descripGrp>
3175
+ </termSec>
3176
+ </langSec>
3177
+ <langSec xml:lang="es">
3178
+ <transacGrp>
3179
+ <transac type="transactionType">origination</transac>
3180
+ <date>2010-04-29</date>
3181
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3182
+ </transacGrp>
3183
+ <transacGrp>
3184
+ <transac type="transactionType">modification</transac>
3185
+ <date>2010-04-29</date>
3186
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3187
+ </transacGrp>
3188
+ <descripGrp>
3189
+ <descrip type="definition">Un conjunto de procesos nucleares mediante los
3190
+ cuales cuatro núcleos de átomos de hidrógeno se combinan para formar uno
3191
+ de helio, produciendo gran cantidad de energía.</descrip>
3192
+ <admin type="source">http://www.avizora.com/publicaciones/astronomia/textos/glosario_astronomia_afines_0006.htm</admin>
3193
+ </descripGrp>
3194
+ <termSec>
3195
+ <term>cadena protón-protón</term>
3196
+
3197
+
3198
+ <termNote type="partOfSpeech">noun</termNote>
3199
+ </termSec>
3200
+ </langSec>
3201
+ </conceptEntry>
3202
+
3203
+
3204
+ <conceptEntry id="c38">
3205
+ <transacGrp>
3206
+ <transac type="transactionType">origination</transac>
3207
+ <date>2010-04-29</date>
3208
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3209
+ </transacGrp>
3210
+ <transacGrp>
3211
+ <transac type="transactionType">modification</transac>
3212
+ <date>2010-05-01</date>
3213
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3214
+ </transacGrp>
3215
+ <descrip type="subjectField">General</descrip>
3216
+ <xref type="xGraphic" target="https://en.wikipedia.org/wiki/CNO_cycle#/media/File:CNO_cycle.png">CNO_Cycle.jpg</xref>
3217
+ <note>G-Source: http://en.wikipedia.org/wiki/File:CNO_Cycle.svg</note>
3218
+ <langSec xml:lang="en">
3219
+ <transacGrp>
3220
+ <transac type="transactionType">origination</transac>
3221
+ <date>2010-04-29</date>
3222
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3223
+ </transacGrp>
3224
+ <transacGrp>
3225
+ <transac type="transactionType">modification</transac>
3226
+ <date>2010-04-29</date>
3227
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3228
+ </transacGrp>
3229
+ <transacGrp>
3230
+ <transac type="transactionType">origination</transac>
3231
+ <date>2010-04-29</date>
3232
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3233
+ </transacGrp>
3234
+ <transacGrp>
3235
+ <transac type="transactionType">modification</transac>
3236
+ <date>2010-04-29</date>
3237
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3238
+ </transacGrp>
3239
+ <transacGrp>
3240
+ <transac type="transactionType">origination</transac>
3241
+ <date>2010-04-29</date>
3242
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3243
+ </transacGrp>
3244
+ <transacGrp>
3245
+ <transac type="transactionType">modification</transac>
3246
+ <date>2010-04-29</date>
3247
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3248
+ </transacGrp>
3249
+ <transacGrp>
3250
+ <transac type="transactionType">origination</transac>
3251
+ <date>2010-04-29</date>
3252
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3253
+ </transacGrp>
3254
+ <transacGrp>
3255
+ <transac type="transactionType">modification</transac>
3256
+ <date>2010-04-29</date>
3257
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3258
+ </transacGrp>
3259
+ <transacGrp>
3260
+ <transac type="transactionType">origination</transac>
3261
+ <date>2010-04-29</date>
3262
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3263
+ </transacGrp>
3264
+ <transacGrp>
3265
+ <transac type="transactionType">modification</transac>
3266
+ <date>2010-04-29</date>
3267
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3268
+ </transacGrp>
3269
+ <transacGrp>
3270
+ <transac type="transactionType">origination</transac>
3271
+ <date>2010-04-29</date>
3272
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3273
+ </transacGrp>
3274
+ <transacGrp>
3275
+ <transac type="transactionType">modification</transac>
3276
+ <date>2010-04-29</date>
3277
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3278
+ </transacGrp>
3279
+ <termSec>
3280
+ <term>carbon-nitrogen cycle</term>
3281
+
3282
+
3283
+ <termNote type="partOfSpeech">noun</termNote>
3284
+ <termNote type="administrativeStatus">admittedTerm-admn-sts</termNote>
3285
+ <termNote type="termType">variant</termNote>
3286
+ <descripGrp>
3287
+ <descrip type="context">The Helium burning process are important 1)
3288
+ Carbon-Nitrogen cycle at which a carbon-12 nucleus (12C) capture
3289
+ proton and is converted into 13C, Nitrogen-4 and nitrogen –15. </descrip>
3290
+ <admin type="source">http://www.sciencenews.org/view/generic/id/44769/title/Supernova_may_be_in_a_new_class</admin>
3291
+ </descripGrp>
3292
+ </termSec>
3293
+ <termSec>
3294
+ <term>CNO cycle</term>
3295
+
3296
+
3297
+ <termNote type="partOfSpeech">noun</termNote>
3298
+ <termNote type="administrativeStatus">preferredTerm-admn-sts</termNote>
3299
+ <termNote type="termType">shortForm</termNote>
3300
+ <descripGrp>
3301
+ <descrip type="context">For stars heavier than the sun, theoretical
3302
+ models show that the CNO (carbon-nitrogen-oxygen) cycle of nuclear
3303
+ fusion is the dominant source of energy generation.</descrip>
3304
+ <admin type="source">http://nobelprize.org/nobel_prizes/physics/articles/fusion/sun_cno.html</admin>
3305
+ </descripGrp>
3306
+ </termSec>
3307
+ <termSec>
3308
+ <term>carbon-nitrogen-oxygen cycle</term>
3309
+
3310
+
3311
+ <termNote type="partOfSpeech">noun</termNote>
3312
+ <termNote type="administrativeStatus">admittedTerm-admn-sts</termNote>
3313
+ <termNote type="termType">variant</termNote>
3314
+ <descripGrp>
3315
+ <descrip type="context">For stars heavier than the sun, theoretical
3316
+ models show that the CNO (carbon-nitrogen-oxygen) cycle of nuclear
3317
+ fusion is the dominant source of energy generation.</descrip>
3318
+ <admin type="source">http://nobelprize.org/nobel_prizes/physics/articles/fusion/sun_cno.html</admin>
3319
+ </descripGrp>
3320
+ </termSec>
3321
+ <termSec>
3322
+ <term>Bethe-Weizsäcker-cycle</term>
3323
+
3324
+
3325
+ <termNote type="partOfSpeech">noun</termNote>
3326
+ <termNote type="administrativeStatus">admittedTerm-admn-sts</termNote>
3327
+ <descripGrp>
3328
+ <descrip type="context">Dr. von Weizsäcker is best known in science for
3329
+ what is sometimes called the Bethe-Weizsäcker cycle, proposed by him
3330
+ and the physicist Hans Bethe in the late 1930s as the nuclear
3331
+ reactive process by which energy is generated in stars. </descrip>
3332
+ <admin type="source">http://www.nytimes.com/2007/05/02/world/europe/02weizsacker.html</admin>
3333
+ </descripGrp>
3334
+ </termSec>
3335
+ <termSec>
3336
+ <term>carbon cycle</term>
3337
+
3338
+
3339
+ <termNote type="partOfSpeech">noun</termNote>
3340
+ <termNote type="administrativeStatus">deprecatedTerm-admn-sts</termNote>
3341
+ <termNote type="termType">variant</termNote>
3342
+ <descripGrp>
3343
+ <descrip type="context">The main theme of the carbon cycle is the adding
3344
+ of protons, but after a carbon-12 nucleus fuses with a proton to
3345
+ form nitrogen-13, one of the protons decays with the emission of a
3346
+ positron and a neutrino to form carbon -13.</descrip>
3347
+ <admin type="source">http://hyperphysics.phy-astr.gsu.edu/HBASE/Astro/carbcyc.html</admin>
3348
+ </descripGrp>
3349
+ <note>The carbon cycle can also refer to the biogeochemical cycle by which
3350
+ carbon is exchanged among the biosphere, pedosphere, geosphere,
3351
+ hydrosphere, and atmosphere of the Earth.</note>
3352
+ <note>N-Source: http://en.wikipedia.org/wiki/Carbon_cycle</note>
3353
+ </termSec>
3354
+ <termSec>
3355
+ <term>CN cycle</term>
3356
+
3357
+
3358
+ <termNote type="partOfSpeech">noun</termNote>
3359
+ <termNote type="administrativeStatus">admittedTerm-admn-sts</termNote>
3360
+ <termNote type="termType">variant</termNote>
3361
+ <descripGrp>
3362
+ <descrip type="context">We argue that it may be possible to exploit
3363
+ neutrinos from the CN cycle and p-p chain to determine the
3364
+ primordial solar core abundances of C and N at an interesting level
3365
+ of precision.</descrip>
3366
+ <admin type="source">http://iopscience.iop.org/0004-637X/687/1/678</admin>
3367
+ </descripGrp>
3368
+ </termSec>
3369
+ </langSec>
3370
+ <langSec xml:lang="es">
3371
+ <transacGrp>
3372
+ <transac type="transactionType">origination</transac>
3373
+ <date>2010-04-29</date>
3374
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3375
+ </transacGrp>
3376
+ <transacGrp>
3377
+ <transac type="transactionType">modification</transac>
3378
+ <date>2010-04-29</date>
3379
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3380
+ </transacGrp>
3381
+ <transacGrp>
3382
+ <transac type="transactionType">origination</transac>
3383
+ <date>2010-04-29</date>
3384
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3385
+ </transacGrp>
3386
+ <transacGrp>
3387
+ <transac type="transactionType">modification</transac>
3388
+ <date>2010-04-29</date>
3389
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3390
+ </transacGrp>
3391
+ <transacGrp>
3392
+ <transac type="transactionType">origination</transac>
3393
+ <date>2010-04-29</date>
3394
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3395
+ </transacGrp>
3396
+ <transacGrp>
3397
+ <transac type="transactionType">modification</transac>
3398
+ <date>2010-04-29</date>
3399
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3400
+ </transacGrp>
3401
+ <transacGrp>
3402
+ <transac type="transactionType">origination</transac>
3403
+ <date>2010-04-29</date>
3404
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3405
+ </transacGrp>
3406
+ <transacGrp>
3407
+ <transac type="transactionType">modification</transac>
3408
+ <date>2010-04-29</date>
3409
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3410
+ </transacGrp>
3411
+ <termSec>
3412
+ <term>ciclo CNO</term>
3413
+
3414
+
3415
+ <termNote type="partOfSpeech">noun</termNote>
3416
+ <termNote type="administrativeStatus">admittedTerm-admn-sts</termNote>
3417
+ <termNote type="termType">shortForm</termNote>
3418
+ <descripGrp>
3419
+ <descrip type="context">Existen dos formas fundamentales en las que una
3420
+ estrella fusiona hidrógeno para producir helio: la cadena
3421
+ protón-protón y el ciclo CNO.</descrip>
3422
+ <admin type="source">http://eltamiz.com/2007/09/06/la-vida-privada-de-las-estrellas-las-entranas-de-una-estrella/</admin>
3423
+ </descripGrp>
3424
+ </termSec>
3425
+ <termSec>
3426
+ <term>ciclo del carbono-nitrógeno-oxígeno</term>
3427
+
3428
+
3429
+ <termNote type="partOfSpeech">noun</termNote>
3430
+ <termNote type="administrativeStatus">deprecatedTerm-admn-sts</termNote>
3431
+ <termNote type="termType">fullForm</termNote>
3432
+ <descripGrp>
3433
+ <descrip type="context">No se pretende copiar los complicados ciclos de
3434
+ reacciones que se dan en el interior de las estrellas, como la
3435
+ cadena protón-protón o el ciclo del carbono-nitrógeno-oxígeno (esta
3436
+ última más importante en las estrellas más masivas que el Sol). </descrip>
3437
+ <admin type="source">http://www.zaragoza.es/ciudad/conocimiento/zivis/aplicaciones.htm</admin>
3438
+ </descripGrp>
3439
+ </termSec>
3440
+ <termSec>
3441
+ <term>ciclo del carbono</term>
3442
+
3443
+
3444
+ <termNote type="partOfSpeech">noun</termNote>
3445
+ <termNote type="administrativeStatus">deprecatedTerm-admn-sts</termNote>
3446
+ <termNote type="termType">variant</termNote>
3447
+ <descripGrp>
3448
+ <descrip type="context">El ciclo del carbono comienza y acaba con un
3449
+ núcleo de carbono 12 que actúa como catalizador en la producción de
3450
+ un núcleo de helio a partir de núcleos de hidrógeno; también se
3451
+ producen neutrinos y rayos gamma. </descrip>
3452
+ <admin type="source">http://www.astromia.com/glosario/ciclocno.htm</admin>
3453
+ </descripGrp>
3454
+ <note>También este término puede referirse a la formación de las moléculas
3455
+ de carbohidratos, lípidos, proteínas y ácidos nucleicos.</note>
3456
+ <note>N-Source: http://es.wikipedia.org/wiki/Ciclo_del_carbono</note>
3457
+ </termSec>
3458
+ <termSec>
3459
+ <term>ciclo del carbono-nitrógeno</term>
3460
+
3461
+
3462
+ <termNote type="partOfSpeech">noun</termNote>
3463
+ <termNote type="administrativeStatus">preferredTerm-admn-sts</termNote>
3464
+ <termNote type="termType">variant</termNote>
3465
+ <descripGrp>
3466
+ <descrip type="context">En las estrellas de gran masa, que queman su
3467
+ hidrógeno mucho más rápidamente, predomina el ciclo del
3468
+ carbono-nitrógeno (CN).</descrip>
3469
+ <admin type="source">http://www.aavbae.net/bol17/evolucion.php</admin>
3470
+ </descripGrp>
3471
+ </termSec>
3472
+ </langSec>
3473
+ </conceptEntry>
3474
+
3475
+
3476
+ <conceptEntry id="c39">
3477
+ <transacGrp>
3478
+ <transac type="transactionType">origination</transac>
3479
+ <date>2010-04-29</date>
3480
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3481
+ </transacGrp>
3482
+ <transacGrp>
3483
+ <transac type="transactionType">modification</transac>
3484
+ <date>2010-05-01</date>
3485
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3486
+ </transacGrp>
3487
+ <descrip type="subjectField">General</descrip>
3488
+ <langSec xml:lang="en">
3489
+ <transacGrp>
3490
+ <transac type="transactionType">origination</transac>
3491
+ <date>2010-04-29</date>
3492
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3493
+ </transacGrp>
3494
+ <transacGrp>
3495
+ <transac type="transactionType">modification</transac>
3496
+ <date>2010-04-29</date>
3497
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3498
+ </transacGrp>
3499
+ <descripGrp>
3500
+ <descrip type="definition">A state of matter attained when atomic particles
3501
+ are packed together as termSechtly as is physically possible, at densities
3502
+ of several thousand tonnes per cubic metre.</descrip>
3503
+ <admin type="source">Oxford2007</admin>
3504
+ </descripGrp>
3505
+ <termSec>
3506
+ <term>degeneracy</term>
3507
+
3508
+
3509
+ <termNote type="partOfSpeech">noun</termNote>
3510
+ <descripGrp>
3511
+ <descrip type="context">Although Eddington raised doubts at the meeting
3512
+ about the concept of relativistic degeneracy, astronomy has since
3513
+ found that all white dwarfs for which masses have been measured fall
3514
+ neatly below the Chandrasekhar limit without exception. Today there
3515
+ are no doubts about his work on degeneracy. </descrip>
3516
+ <admin type="source">http://www.tamil.net/people/andrew/subra.htm</admin>
3517
+ </descripGrp>
3518
+ </termSec>
3519
+ </langSec>
3520
+ <langSec xml:lang="es">
3521
+ <transacGrp>
3522
+ <transac type="transactionType">origination</transac>
3523
+ <date>2010-04-29</date>
3524
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3525
+ </transacGrp>
3526
+ <transacGrp>
3527
+ <transac type="transactionType">modification</transac>
3528
+ <date>2010-04-29</date>
3529
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3530
+ </transacGrp>
3531
+ <descripGrp>
3532
+ <descrip type="definition">Estado de la materia producido cuando las
3533
+ partículas atómicas tienen el mayor empaquetamiento físicamente posible,
3534
+ con densidades de varios miles de toneladas por centímetro cúbico. </descrip>
3535
+ <admin type="source">http://www.emiliosilveravazquez.com/glosario.php?letra=d</admin>
3536
+ </descripGrp>
3537
+ <termSec>
3538
+ <term>degeneración</term>
3539
+
3540
+
3541
+ <termNote type="partOfSpeech">noun</termNote>
3542
+ <descripGrp>
3543
+ <descrip type="context">Estas estrellas son aún más densas que las
3544
+ enanas blancas, y más pequeñas. Se mantienen por un proceso de
3545
+ "degeneración de neutrones" o "repulsión de neutrones".</descrip>
3546
+ <admin type="source">http://www.austrinus.com/index.php?option=com_content&amp;view=article&amp;id=157&amp;Itemid=112</admin>
3547
+ </descripGrp>
3548
+ </termSec>
3549
+ </langSec>
3550
+ </conceptEntry>
3551
+
3552
+
3553
+ <conceptEntry id="c40">
3554
+ <transacGrp>
3555
+ <transac type="transactionType">origination</transac>
3556
+ <date>2010-04-29</date>
3557
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3558
+ </transacGrp>
3559
+ <transacGrp>
3560
+ <transac type="transactionType">modification</transac>
3561
+ <date>2010-04-29</date>
3562
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3563
+ </transacGrp>
3564
+ <langSec xml:lang="zu">
3565
+ <transacGrp>
3566
+ <transac type="transactionType">origination</transac>
3567
+ <date>2010-04-29</date>
3568
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3569
+ </transacGrp>
3570
+ <transacGrp>
3571
+ <transac type="transactionType">modification</transac>
3572
+ <date>2010-04-29</date>
3573
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3574
+ </transacGrp>
3575
+ <termSec>
3576
+ <term>Oxford2003</term>
3577
+
3578
+
3579
+ <note>Author[s]: Ridpath, Ian</note>
3580
+ <note>Book Title: Astronomía</note>
3581
+ <note>Publication Place: Spain</note>
3582
+ <note>Publisher: Oxford University Press</note>
3583
+ <note>Publication Year: 2003</note>
3584
+ </termSec>
3585
+ </langSec>
3586
+ </conceptEntry>
3587
+
3588
+
3589
+ <conceptEntry id="c41">
3590
+ <transacGrp>
3591
+ <transac type="transactionType">origination</transac>
3592
+ <date>2010-04-29</date>
3593
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3594
+ </transacGrp>
3595
+ <transacGrp>
3596
+ <transac type="transactionType">modification</transac>
3597
+ <date>2010-05-01</date>
3598
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3599
+ </transacGrp>
3600
+ <descrip type="subjectField">Stellar Death</descrip>
3601
+ <langSec xml:lang="en">
3602
+ <transacGrp>
3603
+ <transac type="transactionType">origination</transac>
3604
+ <date>2010-04-29</date>
3605
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3606
+ </transacGrp>
3607
+ <transacGrp>
3608
+ <transac type="transactionType">modification</transac>
3609
+ <date>2010-04-29</date>
3610
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3611
+ </transacGrp>
3612
+ <descripGrp>
3613
+ <descrip type="definition">The state of degeneracy attained when the density
3614
+ of matter is so high that electrons cannot be packed any closer
3615
+ together.</descrip>
3616
+ <admin type="source">Oxford2007</admin>
3617
+ </descripGrp>
3618
+ <note>Electron degeneracy supports white dwarf stars against further
3619
+ collapse.</note>
3620
+ <note>N-Source: Oxford2007</note>
3621
+ <termSec>
3622
+ <term>electron degeneracy</term>
3623
+
3624
+
3625
+ <termNote type="partOfSpeech">noun</termNote>
3626
+ <descripGrp>
3627
+ <descrip type="context">When it reaches the threshold of energy
3628
+ necessary to force the combining of electrons and protons to form
3629
+ neutrons, the electron degeneracy limit has been passed and the
3630
+ collapse continues until it is stopped by neutron
3631
+ degeneracy.</descrip>
3632
+ <admin type="source">http://hyperphysics.phy-astr.gsu.edu/HBASE/Astro/pulsar.html</admin>
3633
+ </descripGrp>
3634
+ </termSec>
3635
+ </langSec>
3636
+ <langSec xml:lang="es">
3637
+ <transacGrp>
3638
+ <transac type="transactionType">origination</transac>
3639
+ <date>2010-04-29</date>
3640
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3641
+ </transacGrp>
3642
+ <transacGrp>
3643
+ <transac type="transactionType">modification</transac>
3644
+ <date>2010-04-29</date>
3645
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3646
+ </transacGrp>
3647
+ <transacGrp>
3648
+ <transac type="transactionType">origination</transac>
3649
+ <date>2010-04-29</date>
3650
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3651
+ </transacGrp>
3652
+ <transacGrp>
3653
+ <transac type="transactionType">modification</transac>
3654
+ <date>2010-04-29</date>
3655
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3656
+ </transacGrp>
3657
+ <descripGrp>
3658
+ <descrip type="definition">El estado de degeneración alcanzado cuando la
3659
+ densidad de materia es tan grande, que los electrones no pueden
3660
+ empaquetarse más.</descrip>
3661
+ <admin type="source">Oxford2003</admin>
3662
+ </descripGrp>
3663
+ <termSec>
3664
+ <term>degeneración de electrones</term>
3665
+
3666
+
3667
+ <termNote type="partOfSpeech">noun</termNote>
3668
+ <termNote type="administrativeStatus">admittedTerm-admn-sts</termNote>
3669
+ <descripGrp>
3670
+ <descrip type="context">Es la principal responsable de la resistencia al
3671
+ colapso gravitacional de las enanas blancas (degeneración de
3672
+ electrones) y de las estrellas de neutrones (degeneración de
3673
+ neutrones). </descrip>
3674
+ <admin type="source">http://www.emiliosilveravazquez.com/glosario.php?letra=d</admin>
3675
+ </descripGrp>
3676
+ </termSec>
3677
+ <termSec>
3678
+ <term>degeneración electrónica</term>
3679
+
3680
+
3681
+ <termNote type="partOfSpeech">noun</termNote>
3682
+ <termNote type="administrativeStatus">admittedTerm-admn-sts</termNote>
3683
+ <descripGrp>
3684
+ <descrip type="context">Las fuerzas gravitatorias actuantes en un cuerpo
3685
+ celeste masivo pueden comprimir su materia hasta un estado de
3686
+ degeneración electrónica y no más, ya que el principio de exclusión
3687
+ impide a dos electrones ocupar el mismo nivel de energía. </descrip>
3688
+ <admin type="source">http://www.portalplanetasedna.com.ar/estrella2.htm</admin>
3689
+ </descripGrp>
3690
+ </termSec>
3691
+ </langSec>
3692
+ </conceptEntry>
3693
+
3694
+
3695
+ <conceptEntry id="c42">
3696
+ <transacGrp>
3697
+ <transac type="transactionType">origination</transac>
3698
+ <date>2010-04-29</date>
3699
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3700
+ </transacGrp>
3701
+ <transacGrp>
3702
+ <transac type="transactionType">modification</transac>
3703
+ <date>2010-05-01</date>
3704
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3705
+ </transacGrp>
3706
+ <descrip type="subjectField">General</descrip>
3707
+ <xref type="xGraphic" target="https://en.wikipedia.org/wiki/Event_horizon#/media/File:Spacetime_lattice_analogy.svg">Event_Horizon.jpg</xref>
3708
+ <note>G-Source:
3709
+ http://www.astro.cornell.edu/academics/courses/astro2201/images/bh_structure.gif</note>
3710
+ <langSec xml:lang="en">
3711
+ <transacGrp>
3712
+ <transac type="transactionType">origination</transac>
3713
+ <date>2010-04-29</date>
3714
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3715
+ </transacGrp>
3716
+ <transacGrp>
3717
+ <transac type="transactionType">modification</transac>
3718
+ <date>2010-04-29</date>
3719
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3720
+ </transacGrp>
3721
+ <descripGrp>
3722
+ <descrip type="definition">A mathematical point at which certain physical
3723
+ quantities reach infinite values.</descrip>
3724
+ <admin type="source">Oxford2007</admin>
3725
+ </descripGrp>
3726
+ <termSec>
3727
+ <term>singularity</term>
3728
+
3729
+
3730
+ <termNote type="partOfSpeech">noun</termNote>
3731
+ <descripGrp>
3732
+ <descrip type="context">A singularity means a point where some property
3733
+ is infinite. For example, at the center of a black hole, according
3734
+ to classical theory, the density is infinite (because a finite mass
3735
+ is compressed to a zero volume). Hence it is a singularity. </descrip>
3736
+ <admin type="source">http://curious.astro.cornell.edu/question.php?number=55</admin>
3737
+ </descripGrp>
3738
+ <note>Related Term: black hole, event horizon, Schwarzschild radius</note>
3739
+ </termSec>
3740
+ </langSec>
3741
+ <langSec xml:lang="es">
3742
+ <transacGrp>
3743
+ <transac type="transactionType">origination</transac>
3744
+ <date>2010-04-29</date>
3745
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3746
+ </transacGrp>
3747
+ <transacGrp>
3748
+ <transac type="transactionType">modification</transac>
3749
+ <date>2010-04-29</date>
3750
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3751
+ </transacGrp>
3752
+ <descripGrp>
3753
+ <descrip type="definition">Un punto matemático en el que ciertas cantidades
3754
+ físicas alcanzan valores infinitos.</descrip>
3755
+ <admin type="source">Oxford2003</admin>
3756
+ </descripGrp>
3757
+ <termSec>
3758
+ <term>singularidad</term>
3759
+
3760
+
3761
+ <termNote type="partOfSpeech">noun</termNote>
3762
+ <descripGrp>
3763
+ <descrip type="context">Las singularidades ocurren en el Big Bang, en
3764
+ los agujeros negros y en el Big Crunch (que podría ser considerado
3765
+ como una unión de agujeros negros).</descrip>
3766
+ <admin type="source">http://www.astrocosmo.cl/h-foton/h-foton-03_08-01.htm</admin>
3767
+ </descripGrp>
3768
+ <note>Related Term: agujero negro, horizonte de sucesos, radio de
3769
+ Schwarzschild</note>
3770
+ </termSec>
3771
+ </langSec>
3772
+ </conceptEntry>
3773
+
3774
+
3775
+ <conceptEntry id="c43">
3776
+ <transacGrp>
3777
+ <transac type="transactionType">origination</transac>
3778
+ <date>2010-04-29</date>
3779
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3780
+ </transacGrp>
3781
+ <transacGrp>
3782
+ <transac type="transactionType">modification</transac>
3783
+ <date>2010-04-29</date>
3784
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3785
+ </transacGrp>
3786
+ <descrip type="subjectField">General</descrip>
3787
+ <xref type="xGraphic" target="https://en.wikipedia.org/wiki/Solar_mass#/media/File:Rho_Cassiopeiae_Sol_VY_Canis_Majoris.png">Solar_Mass.jpg</xref>
3788
+ <note>G-Source: http://en.wikipedia.org/wiki/Solar_mass</note>
3789
+ <note>In this graphic, the M with a subscript is the symbol for a solar mass.</note>
3790
+ <note>N-Source: Jonathan Tomolonis</note>
3791
+ <langSec xml:lang="en">
3792
+ <transacGrp>
3793
+ <transac type="transactionType">origination</transac>
3794
+ <date>2010-04-29</date>
3795
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3796
+ </transacGrp>
3797
+ <transacGrp>
3798
+ <transac type="transactionType">modification</transac>
3799
+ <date>2010-04-29</date>
3800
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3801
+ </transacGrp>
3802
+ <descripGrp>
3803
+ <descrip type="definition">A unit of mass used in stellar and galactic
3804
+ astronomy, equivalent to the mass of the sun, 1.989 x 10^30
3805
+ kg.</descrip>
3806
+ <admin type="source">Oxford2007</admin>
3807
+ </descripGrp>
3808
+ <termSec>
3809
+ <term>solar mass</term>
3810
+
3811
+
3812
+ <termNote type="partOfSpeech">noun</termNote>
3813
+ <descripGrp>
3814
+ <descrip type="context">This page now explores the fate of stars of 8
3815
+ solar masses or less.</descrip>
3816
+ <admin type="source">http://outreach.atnf.csiro.au/education/senior/astrophysics/stellarevolution_deathlow.html</admin>
3817
+ </descripGrp>
3818
+ </termSec>
3819
+ </langSec>
3820
+ <langSec xml:lang="es">
3821
+ <transacGrp>
3822
+ <transac type="transactionType">origination</transac>
3823
+ <date>2010-04-29</date>
3824
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3825
+ </transacGrp>
3826
+ <transacGrp>
3827
+ <transac type="transactionType">modification</transac>
3828
+ <date>2010-04-29</date>
3829
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3830
+ </transacGrp>
3831
+ <descripGrp>
3832
+ <descrip type="definition">Una unidad de medida utilizada en astronomía y
3833
+ astrofísica para medir comparativamente la masa de las estrellas y otros
3834
+ objetos astronómicos muy masivos como galaxias.</descrip>
3835
+ <admin type="source">http://es.wikipedia.org/wiki/Masa_solar</admin>
3836
+ </descripGrp>
3837
+ <termSec>
3838
+ <term>masa solar</term>
3839
+
3840
+
3841
+ <termNote type="partOfSpeech">noun</termNote>
3842
+ <descripGrp>
3843
+ <descrip type="context">Para una nube con la masa de nuestro Sol, el
3844
+ colapso dura unos 10 millones de años, mientras que si su masa fuese
3845
+ mucho más pequeña, por ejemplo un décimo de la masa solar, este
3846
+ proceso podría durar hasta 800 millones de años.</descrip>
3847
+ <admin type="source">http://www.tayabeixo.org/sist_solar/hipotesis/formacion_sistsolar.htm</admin>
3848
+ </descripGrp>
3849
+ </termSec>
3850
+ </langSec>
3851
+ </conceptEntry>
3852
+
3853
+
3854
+ <conceptEntry id="c44">
3855
+ <descrip type="subjectField">General</descrip>
3856
+ <transacGrp>
3857
+ <transac type="transactionType">origination</transac>
3858
+ <date>2010-04-29</date>
3859
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3860
+ </transacGrp>
3861
+ <transacGrp>
3862
+ <transac type="transactionType">modification</transac>
3863
+ <date>2010-04-29</date>
3864
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3865
+ </transacGrp>
3866
+
3867
+ <xref type="xGraphic" target="https://en.wikipedia.org/wiki/Triple-alpha_process#/media/File:Triple-Alpha_Process.svg"
3868
+ >Triple-Alpha_Process.jpg</xref>
3869
+ <note>G-Source:
3870
+ http://upload.wikimedia.org/wikipedia/commons/thumb/5/5d/Triple-Alpha_Process.svg/750px-Triple-Alpha_Process.svg.png</note>
3871
+ <langSec xml:lang="en">
3872
+
3873
+ <transacGrp>
3874
+ <transac type="transactionType">origination</transac>
3875
+ <date>2010-04-29</date>
3876
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3877
+ </transacGrp>
3878
+ <transacGrp>
3879
+ <transac type="transactionType">modification</transac>
3880
+ <date>2010-04-29</date>
3881
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3882
+ </transacGrp>
3883
+ <descripGrp>
3884
+ <descrip type="definition">The chain of nuclear reactions by which carbon is
3885
+ synthesized in the interiors of stars through the fusion of three helium
3886
+ nuclei(alpha particles).</descrip>
3887
+ <admin type="source">Oxford2007</admin>
3888
+ </descripGrp>
3889
+ <termSec>
3890
+ <term>triple-alpha process</term>
3891
+
3892
+
3893
+ <termNote type="partOfSpeech">noun</termNote>
3894
+ <descripGrp>
3895
+ <descrip type="context">This small concentration of Be-8 can begin to
3896
+ undergo reactions with other He-4 nuclei to produce an excited state
3897
+ of the mass-12 isotope of Carbon. This excited state is unstable,
3898
+ but a few of these excited Carbon nuclei emit a gamma-ray quickly
3899
+ enough to become stable before they disintegrate. This extremely
3900
+ improbable sequence is called the triple-alpha process because the
3901
+ net effect is to combine 3 alpha particles (that is, 3 He-4 nuclei)
3902
+ to form a C-12 nucleus. </descrip>
3903
+ <admin type="source">http://csep10.phys.utk.edu/astr162/lect/energy/triplealph.html</admin>
3904
+ </descripGrp>
3905
+ </termSec>
3906
+ </langSec>
3907
+ <langSec xml:lang="es">
3908
+ <transacGrp>
3909
+ <transac type="transactionType">origination</transac>
3910
+ <date>2010-04-29</date>
3911
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3912
+ </transacGrp>
3913
+ <transacGrp>
3914
+ <transac type="transactionType">modification</transac>
3915
+ <date>2010-04-29</date>
3916
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3917
+ </transacGrp>
3918
+ <descripGrp>
3919
+ <descrip type="definition">El proceso por el cual tres núcleos de helio
3920
+ (partículas alfa) se transforman en un núcleo de carbono.</descrip>
3921
+ <admin type="source">http://es.wikipedia.org/wiki/Proceso_triple-alfa</admin>
3922
+ </descripGrp>
3923
+ <termSec>
3924
+ <term>proceso triple-alfa</term>
3925
+
3926
+
3927
+ <termNote type="partOfSpeech">noun</termNote>
3928
+ <descripGrp>
3929
+ <descrip type="context">También debe tenerse en cuenta una tercera
3930
+ reacción de gran importancia, denominada proceso triple
3931
+ alfa.</descrip>
3932
+ <admin type="source">http://feinstein.com.ar/Composicion.html</admin>
3933
+ </descripGrp>
3934
+ </termSec>
3935
+ </langSec>
3936
+ </conceptEntry>
3937
+
3938
+
3939
+ <conceptEntry id="c45">
3940
+ <transacGrp>
3941
+ <transac type="transactionType">origination</transac>
3942
+ <date>2010-04-29</date>
3943
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3944
+ </transacGrp>
3945
+ <transacGrp>
3946
+ <transac type="transactionType">modification</transac>
3947
+ <date>2010-04-29</date>
3948
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3949
+ </transacGrp>
3950
+ <descrip type="subjectField">General</descrip>
3951
+ <xref type="xGraphic" target="https://en.wikipedia.org/wiki/Black_dwarf#/media/File:Black_dwarf.jpg">Black_Dwarf.jpg</xref>
3952
+ <note>G-Source:
3953
+ http://www.dorlingkindersley-uk.co.uk/static/clipart/uk/dk/sci_space/image_sci_space013.jpg</note>
3954
+ <langSec xml:lang="en">
3955
+ <transacGrp>
3956
+ <transac type="transactionType">origination</transac>
3957
+ <date>2010-04-29</date>
3958
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3959
+ </transacGrp>
3960
+ <transacGrp>
3961
+ <transac type="transactionType">modification</transac>
3962
+ <date>2010-04-29</date>
3963
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3964
+ </transacGrp>
3965
+ <descripGrp>
3966
+ <descrip type="definition">A degenerate star that has cooled until it is no
3967
+ longer visible.</descrip>
3968
+ <admin type="source">Oxford2007</admin>
3969
+ </descripGrp>
3970
+ <termSec>
3971
+ <term>black dwarf</term>
3972
+
3973
+
3974
+ <termNote type="partOfSpeech">noun</termNote>
3975
+ <descripGrp>
3976
+ <descrip type="context">Banprupt though it is, a white swarf still has a
3977
+ high surface temperature when it is first formed; up to 100,000
3978
+ degrees C in some cases and it continues to radiate. Gradually it
3979
+ fades, and must end up as a cold, dead black dwarf; but at the
3980
+ moment no white dwarf with a surface temperature of below 3,000
3981
+ degrees C has been found, and it may be that the universe is not yet
3982
+ old enough for any black dwarfs to have been formed.</descrip>
3983
+ <admin type="source">Moore2003, 173</admin>
3984
+ </descripGrp>
3985
+ </termSec>
3986
+ </langSec>
3987
+ <langSec xml:lang="es">
3988
+ <transacGrp>
3989
+ <transac type="transactionType">origination</transac>
3990
+ <date>2010-04-29</date>
3991
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3992
+ </transacGrp>
3993
+ <transacGrp>
3994
+ <transac type="transactionType">modification</transac>
3995
+ <date>2010-04-29</date>
3996
+ <transacNote type="responsibility" target="pe324as3-9615-4d41-a9c8-30c36bffe0e6">Tommy</transacNote>
3997
+ </transacGrp>
3998
+ <descripGrp>
3999
+ <descrip type="definition">Una estrella creada cuando una enana blanca se
4000
+ enfría lo suficiente como para dejar de emitir calor o luz en cantidad
4001
+ significativa.</descrip>
4002
+ <admin type="source">http://spaceplace.nasa.gov/sp/kids/spitzer/signs/sign_glossary.shtml</admin>
4003
+ </descripGrp>
4004
+ <termSec>
4005
+ <term>enana negra</term>
4006
+
4007
+
4008
+ <termNote type="partOfSpeech">noun</termNote>
4009
+ <descripGrp>
4010
+ <descrip type="context">No se conoce, todavía, la cantidad de Enanas
4011
+ Negras que pueblan en realidad nuestro Universo. El tiempo estimado
4012
+ para que una Enana Blanca se enfríe lo suficiente para volverse
4013
+ Negra, se estima entre diez y cien mil millones de años, y nuestro
4014
+ Universo no es aún lo bastante viejo, nada más que para que existan
4015
+ algunas enanas blancas que se han enfriado lo suficiente para
4016
+ alcanzar la etapa de enanas negras.</descrip>
4017
+ <admin type="source">http://celestia.albacete.org/celestia/celestia/stars/enana12.htm</admin>
4018
+ </descripGrp>
4019
+ </termSec>
4020
+ </langSec>
4021
+ </conceptEntry>
4022
+ </body>
4023
+ <back>
4024
+ <refObjectSec type="respPerson">
4025
+ <refObject id="pe324as3-9615-4d41-a9c8-30c36bffe0e6">
4026
+ <item type="fn">Tommy Tomolonis</item>
4027
+ </refObject>
4028
+ </refObjectSec>
4029
+ </back>
4030
+ </text>
4031
+
4032
+ </tbx>