tbx 0.1.0 → 0.1.2

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