@jjlmoya/utils-science 1.37.0 → 1.39.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (83) hide show
  1. package/package.json +1 -1
  2. package/src/category/index.ts +4 -1
  3. package/src/entries.ts +7 -1
  4. package/src/index.ts +3 -0
  5. package/src/tests/locale_completeness.test.ts +2 -2
  6. package/src/tests/tool_validation.test.ts +2 -2
  7. package/src/tool/conway-life-rule-lab/bibliography.astro +14 -0
  8. package/src/tool/conway-life-rule-lab/bibliography.ts +16 -0
  9. package/src/tool/conway-life-rule-lab/component.astro +132 -0
  10. package/src/tool/conway-life-rule-lab/conway-life-rule-lab.css +603 -0
  11. package/src/tool/conway-life-rule-lab/entry.ts +26 -0
  12. package/src/tool/conway-life-rule-lab/i18n/de.ts +50 -0
  13. package/src/tool/conway-life-rule-lab/i18n/en.ts +174 -0
  14. package/src/tool/conway-life-rule-lab/i18n/es.ts +50 -0
  15. package/src/tool/conway-life-rule-lab/i18n/fr.ts +50 -0
  16. package/src/tool/conway-life-rule-lab/i18n/id.ts +50 -0
  17. package/src/tool/conway-life-rule-lab/i18n/it.ts +50 -0
  18. package/src/tool/conway-life-rule-lab/i18n/ja.ts +50 -0
  19. package/src/tool/conway-life-rule-lab/i18n/ko.ts +50 -0
  20. package/src/tool/conway-life-rule-lab/i18n/nl.ts +50 -0
  21. package/src/tool/conway-life-rule-lab/i18n/pl.ts +50 -0
  22. package/src/tool/conway-life-rule-lab/i18n/pt.ts +50 -0
  23. package/src/tool/conway-life-rule-lab/i18n/ru.ts +50 -0
  24. package/src/tool/conway-life-rule-lab/i18n/sv.ts +50 -0
  25. package/src/tool/conway-life-rule-lab/i18n/tr.ts +50 -0
  26. package/src/tool/conway-life-rule-lab/i18n/zh.ts +50 -0
  27. package/src/tool/conway-life-rule-lab/index.ts +11 -0
  28. package/src/tool/conway-life-rule-lab/logic/LifeAchievements.ts +85 -0
  29. package/src/tool/conway-life-rule-lab/logic/LifeCanvasRenderer.ts +104 -0
  30. package/src/tool/conway-life-rule-lab/logic/LifeLabDom.ts +55 -0
  31. package/src/tool/conway-life-rule-lab/logic/LifeLabRuntime.ts +253 -0
  32. package/src/tool/conway-life-rule-lab/logic/LifePatterns.ts +35 -0
  33. package/src/tool/conway-life-rule-lab/logic/LifeRules.ts +60 -0
  34. package/src/tool/conway-life-rule-lab/logic/LifeUniverse.ts +165 -0
  35. package/src/tool/conway-life-rule-lab/logic.ts +6 -0
  36. package/src/tool/conway-life-rule-lab/seo.astro +15 -0
  37. package/src/tool/dyson-sphere-energy-capture/bibliography.astro +14 -0
  38. package/src/tool/dyson-sphere-energy-capture/bibliography.ts +16 -0
  39. package/src/tool/dyson-sphere-energy-capture/component.astro +253 -0
  40. package/src/tool/dyson-sphere-energy-capture/dyson-sphere-energy-capture.css +502 -0
  41. package/src/tool/dyson-sphere-energy-capture/entry.ts +26 -0
  42. package/src/tool/dyson-sphere-energy-capture/i18n/de.ts +195 -0
  43. package/src/tool/dyson-sphere-energy-capture/i18n/en.ts +195 -0
  44. package/src/tool/dyson-sphere-energy-capture/i18n/es.ts +195 -0
  45. package/src/tool/dyson-sphere-energy-capture/i18n/fr.ts +195 -0
  46. package/src/tool/dyson-sphere-energy-capture/i18n/id.ts +195 -0
  47. package/src/tool/dyson-sphere-energy-capture/i18n/it.ts +195 -0
  48. package/src/tool/dyson-sphere-energy-capture/i18n/ja.ts +71 -0
  49. package/src/tool/dyson-sphere-energy-capture/i18n/ko.ts +71 -0
  50. package/src/tool/dyson-sphere-energy-capture/i18n/nl.ts +197 -0
  51. package/src/tool/dyson-sphere-energy-capture/i18n/pl.ts +197 -0
  52. package/src/tool/dyson-sphere-energy-capture/i18n/pt.ts +195 -0
  53. package/src/tool/dyson-sphere-energy-capture/i18n/ru.ts +195 -0
  54. package/src/tool/dyson-sphere-energy-capture/i18n/sv.ts +195 -0
  55. package/src/tool/dyson-sphere-energy-capture/i18n/tr.ts +195 -0
  56. package/src/tool/dyson-sphere-energy-capture/i18n/zh.ts +71 -0
  57. package/src/tool/dyson-sphere-energy-capture/index.ts +11 -0
  58. package/src/tool/dyson-sphere-energy-capture/logic.ts +120 -0
  59. package/src/tool/dyson-sphere-energy-capture/seo.astro +15 -0
  60. package/src/tool/global-albedo-snowball-simulator/bibliography.astro +14 -0
  61. package/src/tool/global-albedo-snowball-simulator/bibliography.ts +16 -0
  62. package/src/tool/global-albedo-snowball-simulator/component.astro +278 -0
  63. package/src/tool/global-albedo-snowball-simulator/entry.ts +26 -0
  64. package/src/tool/global-albedo-snowball-simulator/global-albedo-snowball-simulator.css +530 -0
  65. package/src/tool/global-albedo-snowball-simulator/i18n/de.ts +169 -0
  66. package/src/tool/global-albedo-snowball-simulator/i18n/en.ts +169 -0
  67. package/src/tool/global-albedo-snowball-simulator/i18n/es.ts +169 -0
  68. package/src/tool/global-albedo-snowball-simulator/i18n/fr.ts +169 -0
  69. package/src/tool/global-albedo-snowball-simulator/i18n/id.ts +169 -0
  70. package/src/tool/global-albedo-snowball-simulator/i18n/it.ts +87 -0
  71. package/src/tool/global-albedo-snowball-simulator/i18n/ja.ts +87 -0
  72. package/src/tool/global-albedo-snowball-simulator/i18n/ko.ts +169 -0
  73. package/src/tool/global-albedo-snowball-simulator/i18n/nl.ts +169 -0
  74. package/src/tool/global-albedo-snowball-simulator/i18n/pl.ts +169 -0
  75. package/src/tool/global-albedo-snowball-simulator/i18n/pt.ts +169 -0
  76. package/src/tool/global-albedo-snowball-simulator/i18n/ru.ts +169 -0
  77. package/src/tool/global-albedo-snowball-simulator/i18n/sv.ts +169 -0
  78. package/src/tool/global-albedo-snowball-simulator/i18n/tr.ts +169 -0
  79. package/src/tool/global-albedo-snowball-simulator/i18n/zh.ts +169 -0
  80. package/src/tool/global-albedo-snowball-simulator/index.ts +11 -0
  81. package/src/tool/global-albedo-snowball-simulator/logic.ts +88 -0
  82. package/src/tool/global-albedo-snowball-simulator/seo.astro +15 -0
  83. package/src/tools.ts +6 -0
@@ -0,0 +1,169 @@
1
+ import { bibliography } from '../bibliography';
2
+ import type { ToolLocaleContent } from '../../../types';
3
+
4
+ const slug = 'simulator-albedo-global-bola-salju';
5
+ const title = 'Simulator Albedo Global dan Bumi Bola Salju';
6
+ const description = 'Jelajahi keseimbangan radiasi termal Bumi, perubahan konstanta matahari, konsentrasi gas rumah kaca, dan umpan balik es-albedo untuk melihat apakah lapisan es menyusut, stabil, atau memicu iklim bola salju.';
7
+
8
+ const howTo = [
9
+ {
10
+ name: 'Atur sinar matahari masuk',
11
+ text: 'Gerakkan penggeser konstanta matahari untuk menguji skenario Matahari muda redup, sinar matahari Bumi saat ini, atau dorongan masa depan yang lebih terang.',
12
+ },
13
+ {
14
+ name: 'Sesuaikan konsentrasi gas rumah kaca',
15
+ text: 'Ubah konsentrasi gas rumah kaca untuk melihat bagaimana forçasi radiatif bersaing dengan albedo planet yang lebih tinggi.',
16
+ },
17
+ {
18
+ name: 'Taburi planet dengan es',
19
+ text: 'Mulai dengan tudung kutub kecil atau dunia yang tertutup es luas. Model mengulang putaran umpan balik dan menunjukkan apakah es bertambah atau menyusut.',
20
+ },
21
+ {
22
+ name: 'Baca keadaan iklim',
23
+ text: 'Gunakan suhu, radiasi yang diserap, tutupan es akhir, dan kurva linimasa untuk membandingkan hasil sedang, bola salju, dan rumah kaca.',
24
+ },
25
+ ];
26
+
27
+ const faq = [
28
+ {
29
+ question: 'Apa itu umpan balik es-albedo?',
30
+ answer: 'Es dan salju memantulkan lebih banyak sinar matahari daripada lautan atau daratan. Saat es meluas, albedo planet naik, energi matahari yang diserap turun, dan pendinginan dapat memungkinkan lebih banyak es terbentuk. Saat es menyusut, permukaan yang lebih gelap menyerap lebih banyak energi dan pemanasan semakin cepat.',
31
+ },
32
+ {
33
+ question: 'Apa yang dimaksud dengan Bumi Bola Salju?',
34
+ answer: 'Bumi Bola Salju adalah keadaan iklim hipotetis di mana es mencapai lintang rendah atau cakupan hampir global. Bukti geologis menunjukkan Bumi mungkin telah mendekati keadaan seperti itu selama era Neoproterozoikum.',
35
+ },
36
+ {
37
+ question: 'Apakah ini model iklim lengkap?',
38
+ answer: 'Tidak. Ini adalah model keseimbangan energi ringkas untuk pembelajaran. Model ini mengabaikan sirkulasi atmosfer, awan, transportasi panas laut, musim, geografi, dan umpan balik siklus karbon, tetapi menangkap logika radiatif inti dari umpan balik albedo.',
39
+ },
40
+ {
41
+ question: 'Mengapa gas rumah kaca bisa memecah keadaan bola salju?',
42
+ answer: 'Gas rumah kaca mengurangi pendinginan gelombang panjang keluar dengan menambahkan forçasi radiatif. Dalam skenario Bumi Bola Salju, karbon dioksida vulkanik dapat terakumulasi saat pelapukan silikat melambat, akhirnya menghangatkan planet cukup untuk mencairkan es di lintang rendah.',
43
+ },
44
+ ];
45
+
46
+ export const content: ToolLocaleContent = {
47
+ slug,
48
+ title,
49
+ description,
50
+ ui: {
51
+ controls: 'Kontrol iklim',
52
+ solarConstant: 'Konstanta matahari',
53
+ greenhouse: 'Gas rumah kaca',
54
+ initialIce: 'Tutupan es awal',
55
+ temperature: 'Suhu keseimbangan',
56
+ absorbed: 'Sinar matahari diserap',
57
+ finalIce: 'Tutupan es akhir',
58
+ albedo: 'Albedo planet',
59
+ forcing: 'Forçasi rumah kaca',
60
+ state: 'Keadaan iklim',
61
+ timeline: 'Linimasa es',
62
+ years: 'tahun model',
63
+ snowball: 'Kuncian bola salju',
64
+ temperate: 'Keseimbangan sedang',
65
+ hothouse: 'Mundur rumah kaca',
66
+ retreating: 'Es menyusut',
67
+ advancing: 'Es bertambah',
68
+ stable: 'Dekat keseimbangan',
69
+ watts: '{value} W/m2',
70
+ ppm: '{value} ppm',
71
+ percent: '{value}%',
72
+ celsius: '{value} C',
73
+ diagnostics: 'Diagnostik radiasi',
74
+ },
75
+ seo: [
76
+ {
77
+ type: 'title',
78
+ text: 'Simulator albedo global untuk umpan balik es-albedo dan Bumi Bola Salju',
79
+ level: 2,
80
+ },
81
+ {
82
+ type: 'paragraph',
83
+ html: 'Simulator ini mengeksplorasi salah satu putaran umpan balik terpenting dalam iklim planet: hubungan antara tutupan es, reflektivitas, dan sinar matahari yang diserap. Planet dengan es cerah memantulkan lebih banyak radiasi matahari yang masuk kembali ke angkasa. Pendinginan itu dapat mempertahankan atau memperluas es, meningkatkan albedo lebih jauh dan mendorong sistem menuju keadaan Bumi Bola Salju. Planet dengan lebih sedikit es menyerap lebih banyak sinar matahari, yang dapat mempercepat deglasiasi.',
84
+ },
85
+ {
86
+ type: 'paragraph',
87
+ html: 'Gunakan penggeser untuk mengubah konstanta matahari, konsentrasi gas rumah kaca, dan tutupan es awal. Model kemudian mengulang keseimbangan energi global sederhana dan menunjukkan apakah iklim bergerak menuju glasiasi luas, keseimbangan sedang, atau keadaan panas dengan sedikit es. Ini dirancang untuk intuisi cepat: setiap kontrol memetakan langsung ke istilah fisik dalam anggaran radiasi.',
88
+ },
89
+ {
90
+ type: 'title',
91
+ text: 'Bagaimana keseimbangan energi diperkirakan',
92
+ level: 3,
93
+ },
94
+ {
95
+ type: 'paragraph',
96
+ html: 'Radiasi gelombang pendek yang diserap diperkirakan sebagai S(1 - a) / 4, di mana S adalah konstanta matahari dan a adalah albedo planet. Pembagian dengan empat mengubah sinar matahari yang dicegat oleh piringan Bumi menjadi rata-rata atas seluruh permukaan bola. Albedo lebih tinggi menurunkan energi yang diserap; konsentrasi gas rumah kaca lebih tinggi menambah forçasi radiatif positif yang menaikkan perkiraan suhu permukaan.',
97
+ },
98
+ {
99
+ type: 'table',
100
+ headers: ['Kontrol', 'Makna fisik', 'Efek iklim'],
101
+ rows: [
102
+ ['Konstanta matahari', 'Energi bintang masuk di orbit Bumi', 'Nilai lebih tinggi menghangatkan planet dan menyusutkan es.'],
103
+ ['Gas rumah kaca', 'Forçasi radiatif gelombang panjang relatif terhadap atmosfer referensi', 'Nilai lebih tinggi membuat kuncian bola salju lebih sulit.'],
104
+ ['Tutupan es awal', 'Reflektivitas awal planet', 'Nilai tinggi dapat memicu pendinginan tak terkendali melalui umpan balik albedo.'],
105
+ ],
106
+ },
107
+ {
108
+ type: 'title',
109
+ text: 'Mengapa umpan balik albedo bisa menjadi nonlinier',
110
+ level: 3,
111
+ },
112
+ {
113
+ type: 'paragraph',
114
+ html: 'Putaran es-albedo bukanlah penyesuaian satu arah yang lembut. Setelah es mencapai cukup banyak planet, permukaan yang lebih cerah dapat menghilangkan begitu banyak sinar matahari yang diserap sehingga pencairan musim panas menjadi lemah. Dalam arah sebaliknya, es yang menyusut mengekspos lautan dan daratan yang lebih gelap, meningkatkan penyerapan dan mendorong planet menjauh dari glasiasi. Itulah sebabnya forçasi serupa dapat menghasilkan hasil berbeda tergantung pada tutupan es awal.',
115
+ },
116
+ {
117
+ type: 'paragraph',
118
+ html: 'Bumi nyata menambahkan banyak komplikasi: awan, debu di atas es, transportasi panas laut, posisi benua, sinar matahari musiman, dinamika es laut, dan siklus karbon. Model sederhana tetap bernilai karena mengisolasi anggaran radiasi orde pertama. Ini memungkinkan Anda melihat mengapa hipotesis Bumi Bola Salju bergantung pada sinar matahari lemah atau pemicu albedo tinggi dan akumulasi gas rumah kaca kemudian untuk melarikan diri.',
119
+ },
120
+ {
121
+ type: 'title',
122
+ text: 'Menafsirkan simulator',
123
+ level: 3,
124
+ },
125
+ {
126
+ type: 'list',
127
+ items: [
128
+ '<strong>Kuncian bola salju:</strong> tutupan es akhir sangat tinggi dan suhu keseimbangan tetap jauh di bawah titik beku.',
129
+ '<strong>Keseimbangan sedang:</strong> model menetap dengan tutupan es parsial dan radiasi yang diserap sedang.',
130
+ '<strong>Mundur rumah kaca:</strong> es runtuh ke fraksi yang sangat kecil sementara forçasi rumah kaca dan sinar matahari yang diserap tetap tinggi.',
131
+ ],
132
+ },
133
+ ],
134
+ faq,
135
+ bibliography,
136
+ howTo,
137
+ schemas: [
138
+ {
139
+ '@context': 'https://schema.org',
140
+ '@type': 'SoftwareApplication',
141
+ name: title,
142
+ description,
143
+ applicationCategory: 'ScientificApplication',
144
+ operatingSystem: 'Any',
145
+ },
146
+ {
147
+ '@context': 'https://schema.org',
148
+ '@type': 'FAQPage',
149
+ mainEntity: faq.map((item) => ({
150
+ '@type': 'Question',
151
+ name: item.question,
152
+ acceptedAnswer: {
153
+ '@type': 'Answer',
154
+ text: item.answer,
155
+ },
156
+ })),
157
+ },
158
+ {
159
+ '@context': 'https://schema.org',
160
+ '@type': 'HowTo',
161
+ name: title,
162
+ step: howTo.map((step) => ({
163
+ '@type': 'HowToStep',
164
+ name: step.name,
165
+ text: step.text,
166
+ })),
167
+ },
168
+ ],
169
+ };
@@ -0,0 +1,87 @@
1
+ import { bibliography } from '../bibliography';
2
+ import type { ToolLocaleContent } from '../../../types';
3
+
4
+ const slug = 'simulatore-albedo-globale-terra-palla-neve';
5
+ const title = 'Simulatore Globale di Albedo e Terra Palla di Neve';
6
+ const description = 'Esplora il bilancio della radiazione termica terrestre, le variazioni della costante solare, la concentrazione di gas serra e la retroazione ghiaccio-albedo per vedere se le calotte glaciali arretrano, si stabilizzano o innescano un clima palla di neve.';
7
+
8
+ const howTo = [
9
+ { name: 'Imposta la luce solare entrante', text: 'Muovi il cursore della costante solare per testare scenari di Sole giovane più debole, luce solare terrestre attuale o forzamento futuro più luminoso.' },
10
+ { name: 'Regola la concentrazione di gas serra', text: 'Modifica la concentrazione di gas serra per vedere come il forzamento radiativo compete con un albedo planetario più alto.' },
11
+ { name: 'Semina il pianeta con ghiaccio', text: 'Inizia con una piccola calotta polare o un mondo ampiamente ghiacciato. Il modello itera il ciclo di retroazione e mostra se il ghiaccio avanza o arretra.' },
12
+ { name: 'Leggi lo stato climatico', text: 'Usa la temperatura, la radiazione assorbita, la copertura di ghiaccio finale e la curva temporale per confrontare risultati temperati, palla di neve e serra calda.' },
13
+ ];
14
+
15
+ const faq = [
16
+ { question: 'Cos\'è la retroazione ghiaccio-albedo?', answer: 'Il ghiaccio e la neve riflettono più luce solare dell\'oceano o della terra. Quando il ghiaccio si espande, l\'albedo planetario aumenta, l\'energia solare assorbita diminuisce e il raffreddamento può permettere la formazione di ancora più ghiaccio. Quando il ghiaccio arretra, la superficie più scura assorbe più energia e il riscaldamento accelera.' },
17
+ { question: 'Cosa significa Terra Palla di Neve?', answer: 'La Terra Palla di Neve è uno stato climatico ipotetico in cui il ghiaccio raggiunge basse latitudini o una copertura quasi globale. Prove geologiche suggeriscono che la Terra potrebbe essersi avvicinata a tali stati durante l\'era Neoproterozoica.' },
18
+ { question: 'È un modello climatico completo?', answer: 'No. È un modello compatto di bilancio energetico per l\'apprendimento. Ignora la circolazione atmosferica, le nuvole, il trasporto di calore oceanico, le stagioni, la geografia e le retroazioni del ciclo del carbonio, ma cattura la logica radiativa fondamentale della retroazione dell\'albedo.' },
19
+ { question: 'Perché i gas serra possono rompere uno stato palla di neve?', answer: 'I gas serra riducono il raffreddamento a onde lunghe uscente aggiungendo forzamento radiativo. Negli scenari di Terra Palla di Neve, l\'anidride carbonica vulcanica può accumularsi quando l\'alterazione dei silicati rallenta, riscaldando infine il pianeta abbastanza da sciogliere il ghiaccio alle basse latitudini.' },
20
+ ];
21
+
22
+ export const content: ToolLocaleContent = {
23
+ slug,
24
+ title,
25
+ description,
26
+ ui: {
27
+ controls: 'Controlli climatici',
28
+ solarConstant: 'Costante solare',
29
+ greenhouse: 'Gas serra',
30
+ initialIce: 'Copertura di ghiaccio iniziale',
31
+ temperature: 'Temperatura di equilibrio',
32
+ absorbed: 'Luce solare assorbita',
33
+ finalIce: 'Copertura di ghiaccio finale',
34
+ albedo: 'Albedo planetario',
35
+ forcing: 'Forzamento serra',
36
+ state: 'Stato climatico',
37
+ timeline: 'Evoluzione del ghiaccio',
38
+ years: 'anni del modello',
39
+ snowball: 'Blocco palla di neve',
40
+ temperate: 'Equilibrio temperato',
41
+ hothouse: 'Ritiro serra calda',
42
+ retreating: 'Ghiaccio in ritiro',
43
+ advancing: 'Ghiaccio in avanzamento',
44
+ stable: 'Vicino all\'equilibrio',
45
+ watts: '{value} W/m2',
46
+ ppm: '{value} ppm',
47
+ percent: '{value}%',
48
+ celsius: '{value} C',
49
+ diagnostics: 'Diagnostica radiativa',
50
+ },
51
+ seo: [
52
+ { type: 'title', text: 'Simulatore globale di albedo per la retroazione ghiaccio-albedo e la Terra Palla di Neve', level: 2 },
53
+ { type: 'paragraph', html: 'Questo simulatore esplora uno dei cicli di retroazione più importanti nel clima planetario: il legame tra copertura di ghiaccio, riflettività e luce solare assorbita. Un pianeta con ghiaccio brillante riflette più radiazione solare entrante nello spazio. Quel raffreddamento può preservare o espandere il ghiaccio, aumentando ulteriormente l\'albedo e spingendo il sistema verso uno stato di Terra Palla di Neve. Un pianeta con meno ghiaccio assorbe più luce solare, accelerando la deglaciazione.' },
54
+ { type: 'paragraph', html: 'Usa i cursori per modificare la costante solare, la concentrazione di gas serra e la copertura di ghiaccio iniziale. Il modello poi itera un semplice bilancio energetico globale e mostra se il clima si muove verso una glaciazione estesa, un equilibrio temperato o uno stato caldo con poco ghiaccio. Progettato per un\'intuizione rapida: ogni controllo corrisponde direttamente a un termine fisico nel bilancio radiativo.' },
55
+ { type: 'title', text: 'Come viene stimato il bilancio energetico', level: 3 },
56
+ { type: 'paragraph', html: 'La radiazione a onde corte assorbita è stimata come S(1 - a) / 4, dove S è la costante solare e a è l\'albedo planetario. La divisione per quattro converte la luce solare intercettata dal disco terrestre in una media su tutta la superficie sferica. Un albedo più alto riduce l\'energia assorbita; una maggiore concentrazione di gas serra aggiunge forzamento radiativo positivo che aumenta la stima della temperatura superficiale.' },
57
+ {
58
+ type: 'table',
59
+ headers: ['Controllo', 'Significato fisico', 'Effetto climatico'],
60
+ rows: [
61
+ ['Costante solare', 'Energia stellare entrante nell\'orbita terrestre', 'Valori più alti riscaldano il pianeta e riducono il ghiaccio.'],
62
+ ['Gas serra', 'Forzamento radiativo a onde lunghe relativo a un\'atmosfera di riferimento', 'Valori più alti rendono più difficile il blocco palla di neve.'],
63
+ ['Copertura di ghiaccio iniziale', 'Riflettività iniziale del pianeta', 'Valori alti possono innescare un raffreddamento incontrollato attraverso la retroazione dell\'albedo.'],
64
+ ],
65
+ },
66
+ { type: 'title', text: 'Perché la retroazione dell\'albedo può diventare non lineare', level: 3 },
67
+ { type: 'paragraph', html: 'Il ciclo ghiaccio-albedo non è un aggiustamento delicato unidirezionale. Una volta che il ghiaccio raggiunge una porzione sufficiente del pianeta, la superficie più brillante può rimuovere così tanta luce solare assorbita che lo scioglimento estivo diventa debole. Nella direzione opposta, il ghiaccio in ritiro espone oceano e terra più scuri, aumentando l\'assorbimento e allontanando il pianeta dalla glaciazione. Ecco perché forzamenti simili possono produrre risultati diversi a seconda della copertura di ghiaccio iniziale.' },
68
+ { type: 'paragraph', html: 'La Terra reale aggiunge molte complicazioni: nuvole, polvere sul ghiaccio, trasporto di calore oceanico, posizioni continentali, luce solare stagionale, dinamica del ghiaccio marino e il ciclo del carbonio. Un modello semplice ha comunque valore perché isola il bilancio radiativo di primo ordine. Permette di vedere perché le ipotesi di Terra Palla di Neve dipendono sia da luce solare debole o inneschi ad alto albedo sia dal successivo accumulo di gas serra per la fuga.' },
69
+ { type: 'title', text: 'Interpretazione del simulatore', level: 3 },
70
+ {
71
+ type: 'list',
72
+ items: [
73
+ '<strong>Blocco palla di neve:</strong> la copertura di ghiaccio finale è molto alta e la temperatura di equilibrio rimane ben al di sotto del congelamento.',
74
+ '<strong>Equilibrio temperato:</strong> il modello si stabilizza con copertura di ghiaccio parziale e radiazione assorbita moderata.',
75
+ '<strong>Ritiro serra calda:</strong> il ghiaccio collassa a una frazione molto piccola mentre il forzamento serra e la luce solare assorbita rimangono alti.',
76
+ ],
77
+ },
78
+ ],
79
+ faq,
80
+ bibliography,
81
+ howTo,
82
+ schemas: [
83
+ { '@context': 'https://schema.org', '@type': 'SoftwareApplication', name: title, description, applicationCategory: 'ScientificApplication', operatingSystem: 'Any' },
84
+ { '@context': 'https://schema.org', '@type': 'FAQPage', mainEntity: faq.map((item) => ({ '@type': 'Question', name: item.question, acceptedAnswer: { '@type': 'Answer', text: item.answer } })) },
85
+ { '@context': 'https://schema.org', '@type': 'HowTo', name: title, step: howTo.map((step) => ({ '@type': 'HowToStep', name: step.name, text: step.text })) },
86
+ ],
87
+ };
@@ -0,0 +1,87 @@
1
+ import { bibliography } from '../bibliography';
2
+ import type { ToolLocaleContent } from '../../../types';
3
+
4
+ const slug = 'global-albedo-snowball-simulator';
5
+ const title = '全球アルベド・スノーボールアースシミュレーター';
6
+ const description = '地球の熱放射バランス、太陽定数の変化、温室効果ガス濃度、氷アルベドフィードバックを探索し、氷床が後退するか、安定するか、スノーボール気候を引き起こすかを確認できます。';
7
+
8
+ const howTo = [
9
+ { name: '入射する太陽光を設定', text: '太陽定数のスライダーを動かして、暗い若い太陽シナリオ、現在の地球の太陽光、または明るい将来の強制力をテストします。' },
10
+ { name: '温室効果ガス濃度を調整', text: '温室効果ガス濃度を変更して、放射強制力がより高い惑星アルベドとどのように競合するかを確認します。' },
11
+ { name: '惑星に氷をまく', text: '小さな極冠または大きな氷に覆われた世界から始めます。モデルはフィードバックループを反復し、氷が前進するか後退するかを示します。' },
12
+ { name: '気候状態を読み取る', text: '温度、吸収放射、最終氷被覆、タイムライン曲線を使用して、温暖、スノーボール、および高温の結果を比較します。' },
13
+ ];
14
+
15
+ const faq = [
16
+ { question: '氷アルベドフィードバックとは何ですか?', answer: '氷と雪は海洋や陸地よりも多くの太陽光を反射します。氷が拡大すると惑星アルベドが上昇し、吸収される太陽エネルギーが減少し、冷却によってさらに多くの氷が形成される可能性があります。氷が後退すると、より暗い表面がより多くのエネルギーを吸収し、温暖化が加速します。' },
17
+ { question: 'スノーボールアースとは何ですか?', answer: 'スノーボールアースは、氷が低緯度またはほぼ全球に達する仮説的な気候状態です。地質学的証拠は、地球が新原生代にそのような状態に近づいた可能性があることを示唆しています。' },
18
+ { question: 'これは完全な気候モデルですか?', answer: 'いいえ。学習用のコンパクトなエネルギーバランスモデルです。大気循環、雲、海洋熱輸送、季節、地理、炭素循環フィードバックを無視していますが、アルベドフィードバックのコアとなる放射論理を捉えています。' },
19
+ { question: 'なぜ温室効果ガスはスノーボール状態を打破できるのですか?', answer: '温室効果ガスは放射強制力を追加することで外向きの長波冷却を減少させます。スノーボールアースシナリオでは、ケイ酸塩風化が遅くなると火山性二酸化炭素が蓄積し、最終的に惑星を十分に温暖化して低緯度の氷を融解させます。' },
20
+ ];
21
+
22
+ export const content: ToolLocaleContent = {
23
+ slug,
24
+ title,
25
+ description,
26
+ ui: {
27
+ controls: '気候コントロール',
28
+ solarConstant: '太陽定数',
29
+ greenhouse: '温室効果ガス',
30
+ initialIce: '初期氷被覆',
31
+ temperature: '平衡温度',
32
+ absorbed: '吸収された太陽光',
33
+ finalIce: '最終氷被覆',
34
+ albedo: '惑星アルベド',
35
+ forcing: '温室効果強制力',
36
+ state: '気候状態',
37
+ timeline: '氷被覆の推移',
38
+ years: 'モデル年',
39
+ snowball: 'スノーボールロックイン',
40
+ temperate: '温暖な均衡',
41
+ hothouse: '高温状態への後退',
42
+ retreating: '氷が後退',
43
+ advancing: '氷が前進',
44
+ stable: '平衡に近い',
45
+ watts: '{value} W/m2',
46
+ ppm: '{value} ppm',
47
+ percent: '{value}%',
48
+ celsius: '{value} C',
49
+ diagnostics: '放射診断',
50
+ },
51
+ seo: [
52
+ { type: 'title', text: '氷アルベドフィードバックとスノーボールアースのための全球アルベドシミュレーター', level: 2 },
53
+ { type: 'paragraph', html: 'このシミュレーターは、惑星気候における最も重要なフィードバックループのひとつである、氷被覆、反射率、吸収太陽光の間の関連性を探求します。明るい氷を持つ惑星は、より多くの入射太陽放射を宇宙に反射します。その冷却によって氷が保存または拡大され、アルベドがさらに上昇し、システムをスノーボールアース状態に押しやります。氷が少ない惑星はより多くの太陽光を吸収し、除氷を加速させる可能性があります。' },
54
+ { type: 'paragraph', html: 'スライダーを使って太陽定数、温室効果ガス濃度、初期氷被覆を変更します。モデルは単純な全球エネルギーバランスを反復し、気候が広範囲の氷河作用、温暖な均衡、または高温低氷状態のどちらに向かうかを示します。迅速な直感のために設計されています。各コントロールは放射収支の物理項に直接対応します。' },
55
+ { type: 'title', text: 'エネルギーバランスの推定方法', level: 3 },
56
+ { type: 'paragraph', html: '吸収される短波放射は S(1 - a) / 4 として推定されます。ここで S は太陽定数、a は惑星アルベドです。4 で割ることで、地球の円盤が受け止めた太陽光を球面全体の平均に変換します。アルベドが高いと吸収エネルギーが低下し、温室効果ガス濃度が高いと正の放射強制力が加わり、表面温度の推定値が上昇します。' },
57
+ {
58
+ type: 'table',
59
+ headers: ['コントロール', '物理的意味', '気候への影響'],
60
+ rows: [
61
+ ['太陽定数', '地球軌道における入射恒星エネルギー', '値が高いほど惑星が温暖化し氷が減少する。'],
62
+ ['温室効果ガス', '基準大気に対する長波放射強制力', '値が高いほどスノーボールロックインが起こりにくくなる。'],
63
+ ['初期氷被覆', '惑星の初期反射率', '高い値はアルベドフィードバックを通じて暴走的冷却を引き起こす可能性がある。'],
64
+ ],
65
+ },
66
+ { type: 'title', text: 'アルベドフィードバックが非線形になりうる理由', level: 3 },
67
+ { type: 'paragraph', html: '氷アルベドループは穏やかな一方向の調整ではありません。氷が惑星の十分な範囲に達すると、明るい表面が吸収太陽光をあまりに多く除去するため、夏季の融解が弱まります。逆方向では、後退する氷がより暗い海洋と陸地を露出させ、吸収を増加させ、惑星を氷河作用から遠ざけます。これが、同様の強制力でも初期氷被覆によって異なる結果が生じる理由です。' },
68
+ { type: 'paragraph', html: '実際の地球では、雲、氷上の塵、海洋熱輸送、大陸位置、季節的な太陽光、海氷ダイナミクス、炭素循環など、多くの複雑要因が加わります。単純なモデルでも一次の放射収支を隔離するため価値があります。スノーボールアース仮説が弱い太陽光または高アルベドのトリガーと、その後の脱出のための温室効果ガス蓄積の両方に依存する理由を理解できます。' },
69
+ { type: 'title', text: 'シミュレーターの解釈', level: 3 },
70
+ {
71
+ type: 'list',
72
+ items: [
73
+ '<strong>スノーボールロックイン:</strong> 最終氷被覆が非常に高く、平衡温度が氷点下を大きく下回ったままです。',
74
+ '<strong>温暖な均衡:</strong> モデルは部分的な氷被覆と適度な吸収放射で安定します。',
75
+ '<strong>高温状態への後退:</strong> 温室効果強制力と吸収太陽光が高いまま、氷が非常に小さい割合にまで崩壊します。',
76
+ ],
77
+ },
78
+ ],
79
+ faq,
80
+ bibliography,
81
+ howTo,
82
+ schemas: [
83
+ { '@context': 'https://schema.org', '@type': 'SoftwareApplication', name: title, description, applicationCategory: 'ScientificApplication', operatingSystem: 'Any' },
84
+ { '@context': 'https://schema.org', '@type': 'FAQPage', mainEntity: faq.map((item) => ({ '@type': 'Question', name: item.question, acceptedAnswer: { '@type': 'Answer', text: item.answer } })) },
85
+ { '@context': 'https://schema.org', '@type': 'HowTo', name: title, step: howTo.map((step) => ({ '@type': 'HowToStep', name: step.name, text: step.text })) },
86
+ ],
87
+ };
@@ -0,0 +1,169 @@
1
+ import { bibliography } from '../bibliography';
2
+ import type { ToolLocaleContent } from '../../../types';
3
+
4
+ const slug = 'global-albedo-snowball-simulator';
5
+ const title = '지구 알베도 및 스노우볼 어스 시뮬레이터';
6
+ const description = '지구 열복사 균형, 태양 상수 변화, 온실가스 농도, 얼음-알베도 피드백을 탐색하여 빙상이 후퇴하는지, 안정화되는지, 또는 스노우볼 기후를 유발하는지 확인하세요.';
7
+
8
+ const howTo = [
9
+ {
10
+ name: '입사 태양광 설정',
11
+ text: '태양 상수 슬라이더를 움직여 어두운 젊은 태양 시나리오, 현재 지구의 태양광, 또는 더 밝은 미래 강제력을 테스트하세요.',
12
+ },
13
+ {
14
+ name: '온실가스 농도 조정',
15
+ text: '온실가스 농도를 변경하여 복사 강제력이 더 높은 행성 알베도와 어떻게 경쟁하는지 확인하세요.',
16
+ },
17
+ {
18
+ name: '행성에 얼음 심기',
19
+ text: '작은 극관 또는 얼음으로 덮인 큰 세계에서 시작하세요. 모델은 피드백 루프를 반복하며 얼음이 전진하는지 후퇴하는지 보여줍니다.',
20
+ },
21
+ {
22
+ name: '기후 상태 읽기',
23
+ text: '온도, 흡수된 복사, 최종 얼음 덮임, 타임라인 곡선을 사용하여 온대, 스노우볼, 그리고 온실 결과를 비교하세요.',
24
+ },
25
+ ];
26
+
27
+ const faq = [
28
+ {
29
+ question: '얼음-알베도 피드백이란 무엇인가요?',
30
+ answer: '얼음과 눈은 바다나 육지보다 더 많은 태양광을 반사합니다. 얼음이 팽창하면 행성 알베도가 상승하고, 흡수된 태양 에너지가 감소하며, 냉각으로 인해 더 많은 얼음이 형성될 수 있습니다. 얼음이 후퇴하면 더 어두운 표면이 더 많은 에너지를 흡수하여 온난화가 가속화됩니다.',
31
+ },
32
+ {
33
+ question: '스노우볼 어스란 무엇인가요?',
34
+ answer: '스노우볼 어스는 얼음이 저위도 또는 거의 전 지구적으로 도달하는 가상의 기후 상태입니다. 지질학적 증거에 따르면 지구는 신원생대 동안 그러한 상태에 근접했을 수 있습니다.',
35
+ },
36
+ {
37
+ question: '이것은 완전한 기후 모델인가요?',
38
+ answer: '아닙니다. 학습용 컴팩트 에너지 균형 모델입니다. 대기 순환, 구름, 해양 열 수송, 계절, 지리, 탄소 순환 피드백은 무시하지만, 알베도 피드백의 핵심 복사 논리를 포착합니다.',
39
+ },
40
+ {
41
+ question: '온실가스는 왜 스노우볼 상태를 깨뜨릴 수 있나요?',
42
+ answer: '온실가스는 복사 강제력을 추가하여 나가는 장파 냉각을 줄입니다. 스노우볼 어스 시나리오에서는 규산염 풍화가 느려지면 화산성 이산화탄소가 축적되어 결국 저위도 얼음을 녹일 수 있을 만큼 행성을 따뜻하게 합니다.',
43
+ },
44
+ ];
45
+
46
+ export const content: ToolLocaleContent = {
47
+ slug,
48
+ title,
49
+ description,
50
+ ui: {
51
+ controls: '기후 제어',
52
+ solarConstant: '태양 상수',
53
+ greenhouse: '온실가스',
54
+ initialIce: '초기 얼음 덮임',
55
+ temperature: '평형 온도',
56
+ absorbed: '흡수된 태양광',
57
+ finalIce: '최종 얼음 덮임',
58
+ albedo: '행성 알베도',
59
+ forcing: '온실 강제력',
60
+ state: '기후 상태',
61
+ timeline: '얼음 변화 추이',
62
+ years: '모델 년',
63
+ snowball: '스노우볼 고정',
64
+ temperate: '온대 균형',
65
+ hothouse: '온실 후퇴',
66
+ retreating: '얼음 후퇴 중',
67
+ advancing: '얼음 전진 중',
68
+ stable: '평형에 가까움',
69
+ watts: '{value} W/m2',
70
+ ppm: '{value} ppm',
71
+ percent: '{value}%',
72
+ celsius: '{value} C',
73
+ diagnostics: '복사 진단',
74
+ },
75
+ seo: [
76
+ {
77
+ type: 'title',
78
+ text: '얼음-알베도 피드백과 스노우볼 어스를 위한 지구 알베도 시뮬레이터',
79
+ level: 2,
80
+ },
81
+ {
82
+ type: 'paragraph',
83
+ html: '이 시뮬레이터는 행성 기후에서 가장 중요한 피드백 루프 중 하나인 얼음 덮임, 반사율, 흡수된 태양광 사이의 연결을 탐구합니다. 밝은 얼음을 가진 행성은 더 많은 입사 태양 복사를 우주로 반사합니다. 그 냉각은 얼음을 보존하거나 확장하여 알베도를 더 높이고 시스템을 스노우볼 어스 상태로 밀어넣을 수 있습니다. 얼음이 적은 행성은 더 많은 태양광을 흡수하여 빙하 해체를 가속화할 수 있습니다.',
84
+ },
85
+ {
86
+ type: 'paragraph',
87
+ html: '슬라이더를 사용하여 태양 상수, 온실가스 농도 및 초기 얼음 덮임을 변경하세요. 그런 다음 모델은 간단한 지구 에너지 균형을 반복하며 기후가 광범위한 빙하 작용, 온대 균형 또는 뜨거운 저얼음 상태로 이동하는지 보여줍니다. 빠른 직관을 위해 설계되었습니다. 각 제어는 복사 예산의 물리적 용어에 직접 매핑됩니다.',
88
+ },
89
+ {
90
+ type: 'title',
91
+ text: '에너지 균형이 추정되는 방법',
92
+ level: 3,
93
+ },
94
+ {
95
+ type: 'paragraph',
96
+ html: '흡수된 단파 복사는 S(1 - a) / 4로 추정됩니다. 여기서 S는 태양 상수이고 a는 행성 알베도입니다. 4로 나누면 지구 원반이 가로챈 태양광을 전체 구형 표면에 대한 평균으로 변환합니다. 알베도가 높을수록 흡수 에너지가 낮아집니다. 온실가스 농도가 높을수록 표면 온도 추정치를 높이는 양의 복사 강제력이 추가됩니다.',
97
+ },
98
+ {
99
+ type: 'table',
100
+ headers: ['제어', '물리적 의미', '기후 영향'],
101
+ rows: [
102
+ ['태양 상수', '지구 궤도에서의 입사 항성 에너지', '값이 높을수록 행성이 따뜻해지고 얼음이 줄어듭니다.'],
103
+ ['온실가스', '기준 대기에 대한 장파 복사 강제력', '값이 높을수록 스노우볼 고정이 어려워집니다.'],
104
+ ['초기 얼음 덮임', '행성의 초기 반사율', '높은 값은 알베도 피드백을 통해 폭주 냉각을 유발할 수 있습니다.'],
105
+ ],
106
+ },
107
+ {
108
+ type: 'title',
109
+ text: '알베도 피드백이 비선형이 될 수 있는 이유',
110
+ level: 3,
111
+ },
112
+ {
113
+ type: 'paragraph',
114
+ html: '얼음-알베도 루프는 부드러운 단방향 조정이 아닙니다. 얼음이 행성의 충분한 부분에 도달하면 더 밝은 표면이 흡수된 태양광을 너무 많이 제거하여 여름철 녹는 현상이 약해집니다. 반대 방향으로, 후퇴하는 얼음은 더 어두운 바다와 육지를 노출시켜 흡수를 증가시키고 행성을 빙하 작용에서 멀어지게 합니다. 이것이 초기 얼음 덮임에 따라 유사한 강제력이 다른 결과를 낳을 수 있는 이유입니다.',
115
+ },
116
+ {
117
+ type: 'paragraph',
118
+ html: '실제 지구는 구름, 얼음 위의 먼지, 해양 열 수송, 대륙 위치, 계절별 태양광, 해빙 역학 및 탄소 순환 등 많은 복잡성을 추가합니다. 단순한 모델은 1차 복사 예산을 분리하기 때문에 여전히 가치가 있습니다. 이를 통해 스노우볼 어스 가설이 약한 태양광 또는 높은 알베도 트리거와 탈출을 위한 후기 온실가스 축적 모두에 의존하는 이유를 알 수 있습니다.',
119
+ },
120
+ {
121
+ type: 'title',
122
+ text: '시뮬레이터 해석',
123
+ level: 3,
124
+ },
125
+ {
126
+ type: 'list',
127
+ items: [
128
+ '<strong>스노우볼 고정:</strong> 최종 얼음 덮임이 매우 높고 평형 온도가 빙점보다 훨씬 낮게 유지됩니다.',
129
+ '<strong>온대 균형:</strong> 모델이 부분적인 얼음 덮임과 적당한 흡수 복사로 안정됩니다.',
130
+ '<strong>온실 후퇴:</strong> 온실 강제력과 흡수된 태양광이 높은 상태에서 얼음이 매우 작은 비율로 붕괴됩니다.',
131
+ ],
132
+ },
133
+ ],
134
+ faq,
135
+ bibliography,
136
+ howTo,
137
+ schemas: [
138
+ {
139
+ '@context': 'https://schema.org',
140
+ '@type': 'SoftwareApplication',
141
+ name: title,
142
+ description,
143
+ applicationCategory: 'ScientificApplication',
144
+ operatingSystem: 'Any',
145
+ },
146
+ {
147
+ '@context': 'https://schema.org',
148
+ '@type': 'FAQPage',
149
+ mainEntity: faq.map((item) => ({
150
+ '@type': 'Question',
151
+ name: item.question,
152
+ acceptedAnswer: {
153
+ '@type': 'Answer',
154
+ text: item.answer,
155
+ },
156
+ })),
157
+ },
158
+ {
159
+ '@context': 'https://schema.org',
160
+ '@type': 'HowTo',
161
+ name: title,
162
+ step: howTo.map((step) => ({
163
+ '@type': 'HowToStep',
164
+ name: step.name,
165
+ text: step.text,
166
+ })),
167
+ },
168
+ ],
169
+ };