@jjlmoya/utils-science 1.28.0 → 1.29.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.
- package/package.json +1 -1
- package/src/category/index.ts +2 -1
- package/src/entries.ts +3 -1
- package/src/index.ts +1 -0
- package/src/tests/locale_completeness.test.ts +2 -2
- package/src/tests/tool_validation.test.ts +2 -2
- package/src/tool/phase-diagram-critical-points/bibliography.astro +14 -0
- package/src/tool/phase-diagram-critical-points/bibliography.ts +16 -0
- package/src/tool/phase-diagram-critical-points/component.astro +397 -0
- package/src/tool/phase-diagram-critical-points/entry.ts +26 -0
- package/src/tool/phase-diagram-critical-points/i18n/de.ts +179 -0
- package/src/tool/phase-diagram-critical-points/i18n/en.ts +181 -0
- package/src/tool/phase-diagram-critical-points/i18n/es.ts +179 -0
- package/src/tool/phase-diagram-critical-points/i18n/fr.ts +179 -0
- package/src/tool/phase-diagram-critical-points/i18n/id.ts +179 -0
- package/src/tool/phase-diagram-critical-points/i18n/it.ts +179 -0
- package/src/tool/phase-diagram-critical-points/i18n/ja.ts +179 -0
- package/src/tool/phase-diagram-critical-points/i18n/ko.ts +179 -0
- package/src/tool/phase-diagram-critical-points/i18n/nl.ts +179 -0
- package/src/tool/phase-diagram-critical-points/i18n/pl.ts +179 -0
- package/src/tool/phase-diagram-critical-points/i18n/pt.ts +179 -0
- package/src/tool/phase-diagram-critical-points/i18n/ru.ts +179 -0
- package/src/tool/phase-diagram-critical-points/i18n/sv.ts +179 -0
- package/src/tool/phase-diagram-critical-points/i18n/tr.ts +179 -0
- package/src/tool/phase-diagram-critical-points/i18n/zh.ts +179 -0
- package/src/tool/phase-diagram-critical-points/index.ts +11 -0
- package/src/tool/phase-diagram-critical-points/logic.ts +179 -0
- package/src/tool/phase-diagram-critical-points/phase-diagram-critical-points-visualizer.css +542 -0
- package/src/tool/phase-diagram-critical-points/seo.astro +15 -0
- package/src/tools.ts +2 -0
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
|
|
4
|
+
const slug = 'diagramme-de-phases-point-critique-visualiseur';
|
|
5
|
+
const title = 'Diagramme de Phases et Visualiseur du Point Critique';
|
|
6
|
+
const description = 'Explorez les regions solide, liquide, gazeuse et supercritique sur un diagramme de phases pression-temperature interactif avec des marqueurs de point triple et de point critique.';
|
|
7
|
+
|
|
8
|
+
const howTo = [
|
|
9
|
+
{
|
|
10
|
+
name: 'Choisir une substance',
|
|
11
|
+
text: 'Passez de l\'eau au dioxyde de carbone puis a l\'azote pour voir comment les points triples et critiques reels reconfigurent la carte des phases.',
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
name: 'Modifier la temperature et la pression',
|
|
15
|
+
text: 'Utilisez les curseurs pour placer l\'echantillon sur le plan pression-temperature. Le diagramme met a jour la region de phase active et le marqueur d\'echantillon en direct.',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
name: 'Observer le halo critique',
|
|
19
|
+
text: 'Deplacez-vous vers l\'extremite de la limite vapeur-liquide pour voir la chaleur latente s\'estomper et la distinction liquide-gaz se fondre en un fluide supercritique.',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
name: 'Lire le panneau pedagogique',
|
|
23
|
+
text: 'Utilisez l\'etiquette de phase, l\'indicateur de chaleur latente et les affichages de points pour relier le diagramme visuel au vocabulaire thermodynamique.',
|
|
24
|
+
},
|
|
25
|
+
];
|
|
26
|
+
|
|
27
|
+
const faq = [
|
|
28
|
+
{
|
|
29
|
+
question: 'Qu\'est-ce qu\'un diagramme de phases?',
|
|
30
|
+
answer: 'Un diagramme de phases indique quel etat de la matiere est stable pour differentes combinaisons de temperature et de pression. Les lignes de demarcation marquent les conditions ou deux phases peuvent coexister en equilibre.',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
question: 'Que se passe-t-il au point critique?',
|
|
34
|
+
answer: 'Au point critique, la limite vapeur-liquide prend fin. Au-dessus de la temperature et de la pression critiques, le materiau devient un fluide supercritique et il n\'y a plus de distinction nette entre liquide et gaz.',
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
question: 'Pourquoi l\'eau a-t-elle une ligne de fusion differente?',
|
|
38
|
+
answer: 'L\'eau est inhabituelle car la glace est moins dense que l\'eau liquide pres du point de fusion. L\'augmentation de la pression peut favoriser la phase liquide plus dense, donc la limite solide-liquide a une pente differente de celle de nombreuses substances.',
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
question: 'Les courbes tracees sont-elles exactes en laboratoire?',
|
|
42
|
+
answer: 'Non. L\'outil utilise des courbes simplifiees ancrees sur des valeurs publiees de point triple et de point critique. Il est concu pour l\'apprentissage conceptuel, pas pour le genie des procedes ou les calculs de securite.',
|
|
43
|
+
},
|
|
44
|
+
];
|
|
45
|
+
|
|
46
|
+
export const content: ToolLocaleContent = {
|
|
47
|
+
slug,
|
|
48
|
+
title,
|
|
49
|
+
description,
|
|
50
|
+
ui: {
|
|
51
|
+
controls: 'Commandes du diagramme de phases',
|
|
52
|
+
substance: 'Substance',
|
|
53
|
+
units: 'Unites',
|
|
54
|
+
scientificUnits: 'Scientifiques (K, MPa)',
|
|
55
|
+
metricUnits: 'Metriques (Celsius, kPa)',
|
|
56
|
+
imperialUnits: 'Imperial (Fahrenheit, psi)',
|
|
57
|
+
temperature: 'Temperature',
|
|
58
|
+
pressure: 'Pression',
|
|
59
|
+
diagram: 'Diagramme de phases pression-temperature',
|
|
60
|
+
sample: 'Etat de l\'echantillon',
|
|
61
|
+
phase: 'Phase stable',
|
|
62
|
+
triplePoint: 'Point triple',
|
|
63
|
+
criticalPoint: 'Point critique',
|
|
64
|
+
vaporCurve: 'Limite vapeur-liquide',
|
|
65
|
+
meltingLine: 'Limite solide-liquide',
|
|
66
|
+
latentHeat: 'Contraste de chaleur latente',
|
|
67
|
+
criticalProximity: 'Proximite critique',
|
|
68
|
+
coordinates: 'Coordonnees',
|
|
69
|
+
solid: 'Solide',
|
|
70
|
+
liquid: 'Liquide',
|
|
71
|
+
gas: 'Gaz',
|
|
72
|
+
supercritical: 'Supercritique',
|
|
73
|
+
low: 'faible',
|
|
74
|
+
high: 'eleve',
|
|
75
|
+
reset: 'Reinitialiser',
|
|
76
|
+
interpretation: 'Interpretation',
|
|
77
|
+
note: 'Les lignes de demarcation marquent la coexistence; les regions marquent la phase la plus stable pour les conditions selectionnees.',
|
|
78
|
+
},
|
|
79
|
+
seo: [
|
|
80
|
+
{
|
|
81
|
+
type: 'title',
|
|
82
|
+
text: 'Visualiseur interactif de diagramme de phases pour points triples, courbes d\'ebullition et points critiques',
|
|
83
|
+
level: 2,
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
type: 'paragraph',
|
|
87
|
+
html: 'Ce visualiseur de diagramme de phases transforme un graphique abstrait pression-temperature en une carte interactive. Choisissez une substance, deplacez la temperature et la pression, et voyez si l\'echantillon est predit pour se comporter comme un solide, un liquide, un gaz ou un fluide supercritique. L\'objectif est de rendre les limites de phases spatiales: franchir une ligne change l\'etat stable, tandis que s\'approcher du point critique change ce que signifie une limite de phase.',
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
type: 'paragraph',
|
|
91
|
+
html: 'L\'outil est concu pour les etudiants, les enseignants, les redacteurs scientifiques et toute personne recherchant une explication claire des diagrammes de phases. Il met l\'accent sur les caracteristiques les plus importantes en thermodynamique introductive: le point triple ou trois phases coexistent, la courbe vapeur-liquide, la limite solide-liquide et le point d\'extremite critique ou la distinction liquide-gaz disparait.',
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
type: 'title',
|
|
95
|
+
text: 'Comment lire le diagramme pression-temperature',
|
|
96
|
+
level: 3,
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
type: 'paragraph',
|
|
100
|
+
html: 'Un diagramme de phases place la temperature sur un axe et la pression sur l\'autre. Chaque region montre la phase stable dans ces conditions. Les lignes entre les regions sont des courbes de coexistence: le long de ces lignes, deux phases peuvent rester en equilibre plutot qu\'une phase ne remplace completement l\'autre.',
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
type: 'table',
|
|
104
|
+
headers: ['Caracteristique du diagramme', 'Signification', 'Quoi observer dans l\'outil'],
|
|
105
|
+
rows: [
|
|
106
|
+
['Point triple', 'Solide, liquide et gaz coexistent', 'La jonction a basse temperature ou les limites se rencontrent.'],
|
|
107
|
+
['Courbe vapeur-liquide', 'Equilibre d\'ebullition ou de condensation', 'La ligne courbe du point triple au point critique.'],
|
|
108
|
+
['Limite solide-liquide', 'Equilibre de fusion ou de solidification', 'La ligne raide separant les regions solide et liquide.'],
|
|
109
|
+
['Point critique', 'Fin de la limite vapeur-liquide', 'Le point d\'extremite surligne ou la chaleur latente s\'estompe.'],
|
|
110
|
+
['Region supercritique', 'Pas de distinction nette liquide-gaz', 'La zone a haute temperature et haute pression au-dela du point critique.'],
|
|
111
|
+
],
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
type: 'title',
|
|
115
|
+
text: 'Pourquoi le point critique est important',
|
|
116
|
+
level: 3,
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
type: 'paragraph',
|
|
120
|
+
html: 'En dessous du point critique, l\'ebullition est une transition de phase: le liquide et la vapeur peuvent coexister, et l\'energie peut etre absorbee sous forme de chaleur latente tandis que la temperature reste liee a la condition limite. Au point critique, cette limite prend fin. Au-dessus, la densite change continument et la substance est decrite comme un fluide supercritique plutot qu\'un liquide ou un gaz normal.',
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
type: 'paragraph',
|
|
124
|
+
html: 'Cela est important en chimie, en sciences planetaires, en extraction industrielle, en refrigeration et en physique des hautes pressions. Le dioxyde de carbone, par exemple, devient supercritique dans des conditions relativement accessibles par rapport a l\'eau, ce qui explique pourquoi le CO2 supercritique est utilise dans l\'extraction et le traitement des materiaux. L\'eau necessite des temperatures et des pressions beaucoup plus elevees, ce qui rend son point critique important pour les systemes energetiques et la geophysique.',
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
type: 'title',
|
|
128
|
+
text: 'Ce que ce visualiseur simplifie',
|
|
129
|
+
level: 3,
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
type: 'paragraph',
|
|
133
|
+
html: 'Les diagrammes de phases reels peuvent inclure des polymorphes, des etats metastables, des melanges non ideaux, de multiples phases solides et des equations d\'etat ajustees experimentalement. Cet outil pedagogique maintient le modele intentionnellement compact. Il ancre chaque substance a des valeurs de reference reconnaissables et trace des courbes didactiques lisses afin que les idees principales soient faciles a inspecter sans necessite de table de thermodynamique.',
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
type: 'list',
|
|
137
|
+
items: [
|
|
138
|
+
'<strong>Utilisez-le pour l\'intuition:</strong> il aide a expliquer pourquoi les autocuiseurs, la glace seche, l\'ebullition et les fluides supercritiques se comportent differemment.',
|
|
139
|
+
'<strong>Ne l\'utilisez pas pour des limites techniques:</strong> les courbes simplifiees ne remplacent pas des donnees de proprietes certifiees.',
|
|
140
|
+
'<strong>Concentrez-vous sur la topologie:</strong> le resultat d\'apprentissage le plus important est la facon dont les regions de phase se connectent et ou les limites se terminent.',
|
|
141
|
+
],
|
|
142
|
+
},
|
|
143
|
+
],
|
|
144
|
+
faq,
|
|
145
|
+
bibliography,
|
|
146
|
+
howTo,
|
|
147
|
+
schemas: [
|
|
148
|
+
{
|
|
149
|
+
'@context': 'https://schema.org',
|
|
150
|
+
'@type': 'SoftwareApplication',
|
|
151
|
+
name: title,
|
|
152
|
+
description,
|
|
153
|
+
applicationCategory: 'ScientificApplication',
|
|
154
|
+
operatingSystem: 'Any',
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
'@context': 'https://schema.org',
|
|
158
|
+
'@type': 'FAQPage',
|
|
159
|
+
mainEntity: faq.map((item) => ({
|
|
160
|
+
'@type': 'Question',
|
|
161
|
+
name: item.question,
|
|
162
|
+
acceptedAnswer: {
|
|
163
|
+
'@type': 'Answer',
|
|
164
|
+
text: item.answer,
|
|
165
|
+
},
|
|
166
|
+
})),
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
'@context': 'https://schema.org',
|
|
170
|
+
'@type': 'HowTo',
|
|
171
|
+
name: title,
|
|
172
|
+
step: howTo.map((step) => ({
|
|
173
|
+
'@type': 'HowToStep',
|
|
174
|
+
name: step.name,
|
|
175
|
+
text: step.text,
|
|
176
|
+
})),
|
|
177
|
+
},
|
|
178
|
+
],
|
|
179
|
+
};
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
|
|
4
|
+
const slug = 'diagram-fase-titik-kritis-visualisator';
|
|
5
|
+
const title = 'Diagram Fase dan Visualisator Titik Kritis';
|
|
6
|
+
const description = 'Jelajahi daerah padat, cair, gas, dan superkritis pada diagram fase tekanan-suhu interaktif dengan penanda titik tripel dan titik kritis.';
|
|
7
|
+
|
|
8
|
+
const howTo = [
|
|
9
|
+
{
|
|
10
|
+
name: 'Pilih zat',
|
|
11
|
+
text: 'Beralihlah antara air, karbon dioksida, dan nitrogen untuk melihat bagaimana titik tripel dan titik kritis nyata mengubah peta fase.',
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
name: 'Gerakkan suhu dan tekanan',
|
|
15
|
+
text: 'Gunakan penggeser untuk menempatkan sampel pada bidang tekanan-suhu. Diagram memperbarui daerah fase aktif dan penanda sampel langsung.',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
name: 'Amati lingkaran kritis',
|
|
19
|
+
text: 'Bergeraklah menuju ujung batas uap-cair untuk melihat kalor laten memudar dan perbedaan cair-gas runtuh menjadi fluida superkritis.',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
name: 'Baca panel pengajaran',
|
|
23
|
+
text: 'Gunakan label fase, meter kalor laten, dan pembacaan titik untuk menghubungkan diagram visual dengan kosakata termodinamika.',
|
|
24
|
+
},
|
|
25
|
+
];
|
|
26
|
+
|
|
27
|
+
const faq = [
|
|
28
|
+
{
|
|
29
|
+
question: 'Apa itu diagram fase?',
|
|
30
|
+
answer: 'Diagram fase memetakan wujud zat mana yang stabil pada berbagai kombinasi suhu dan tekanan. Garis batas menandai kondisi di mana dua fase dapat hidup berdampingan dalam kesetimbangan.',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
question: 'Apa yang terjadi pada titik kritis?',
|
|
34
|
+
answer: 'Pada titik kritis, batas uap-cair berakhir. Di atas suhu dan tekanan kritis, material menjadi fluida superkritis dan tidak ada perbedaan tajam antara cair dan gas.',
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
question: 'Mengapa air memiliki garis leleh yang berbeda?',
|
|
38
|
+
answer: 'Air tidak biasa karena es memiliki kerapatan lebih rendah daripada air cair di dekat titik leleh. Meningkatnya tekanan dapat mendukung fase cair yang lebih rapat, sehingga batas padat-cair memiliki kemiringan yang berbeda dari banyak zat.',
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
question: 'Apakah kurva yang diplot akurat secara laboratorium?',
|
|
42
|
+
answer: 'Tidak. Alat ini menggunakan kurva sederhana yang berlabuh pada nilai titik tripel dan titik kritis yang dipublikasikan. Alat ini dirancang untuk pembelajaran konseptual, bukan untuk rekayasa proses atau perhitungan keselamatan.',
|
|
43
|
+
},
|
|
44
|
+
];
|
|
45
|
+
|
|
46
|
+
export const content: ToolLocaleContent = {
|
|
47
|
+
slug,
|
|
48
|
+
title,
|
|
49
|
+
description,
|
|
50
|
+
ui: {
|
|
51
|
+
controls: 'Kontrol diagram fase',
|
|
52
|
+
substance: 'Zat',
|
|
53
|
+
units: 'Satuan',
|
|
54
|
+
scientificUnits: 'Ilmiah (K, MPa)',
|
|
55
|
+
metricUnits: 'Metrik (Celsius, kPa)',
|
|
56
|
+
imperialUnits: 'Imperial (Fahrenheit, psi)',
|
|
57
|
+
temperature: 'Suhu',
|
|
58
|
+
pressure: 'Tekanan',
|
|
59
|
+
diagram: 'Diagram fase tekanan-suhu',
|
|
60
|
+
sample: 'Keadaan sampel',
|
|
61
|
+
phase: 'Fase stabil',
|
|
62
|
+
triplePoint: 'Titik tripel',
|
|
63
|
+
criticalPoint: 'Titik kritis',
|
|
64
|
+
vaporCurve: 'Batas uap-cair',
|
|
65
|
+
meltingLine: 'Batas padat-cair',
|
|
66
|
+
latentHeat: 'Kontras kalor laten',
|
|
67
|
+
criticalProximity: 'Kedekatan kritis',
|
|
68
|
+
coordinates: 'Koordinat',
|
|
69
|
+
solid: 'Padat',
|
|
70
|
+
liquid: 'Cair',
|
|
71
|
+
gas: 'Gas',
|
|
72
|
+
supercritical: 'Superkritis',
|
|
73
|
+
low: 'rendah',
|
|
74
|
+
high: 'tinggi',
|
|
75
|
+
reset: 'Atur ulang',
|
|
76
|
+
interpretation: 'Interpretasi',
|
|
77
|
+
note: 'Garis batas menandai kesetimbangan; daerah menandai fase paling stabil untuk kondisi yang dipilih.',
|
|
78
|
+
},
|
|
79
|
+
seo: [
|
|
80
|
+
{
|
|
81
|
+
type: 'title',
|
|
82
|
+
text: 'Visualisator diagram fase interaktif untuk titik tripel, kurva didih, dan titik kritis',
|
|
83
|
+
level: 2,
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
type: 'paragraph',
|
|
87
|
+
html: 'Visualisator diagram fase ini mengubah grafik tekanan-suhu abstrak menjadi peta interaktif. Pilih zat, gerakkan suhu dan tekanan, dan lihat apakah sampel diprediksi berperilaku sebagai padat, cair, gas, atau fluida superkritis. Tujuannya adalah membuat batas fase terasa spasial: melintasi garis mengubah keadaan stabil, sementara mendekati titik kritis mengubah arti batas fase itu sendiri.',
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
type: 'paragraph',
|
|
91
|
+
html: 'Alat ini dibuat untuk siswa, guru, penulis sains, dan siapa pun yang mencari penjelasan jelas tentang diagram fase. Alat ini menekankan fitur yang paling penting dalam termodinamika pengantar: titik tripel di mana tiga fase hidup berdampingan, kurva uap-cair, batas padat-cair, dan titik akhir kritis di mana perbedaan cair-gas menghilang.',
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
type: 'title',
|
|
95
|
+
text: 'Cara membaca diagram tekanan-suhu',
|
|
96
|
+
level: 3,
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
type: 'paragraph',
|
|
100
|
+
html: 'Diagram fase menempatkan suhu pada satu sumbu dan tekanan pada sumbu lainnya. Setiap daerah menunjukkan fase yang stabil dalam kondisi tersebut. Garis di antara daerah adalah kurva kesetimbangan: di sepanjang garis tersebut, dua fase dapat tetap dalam kesetimbangan daripada satu fase menggantikan fase lainnya sepenuhnya.',
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
type: 'table',
|
|
104
|
+
headers: ['Fitur diagram', 'Makna', 'Apa yang diamati dalam alat'],
|
|
105
|
+
rows: [
|
|
106
|
+
['Titik tripel', 'Padat, cair, dan gas hidup berdampingan', 'Persimpangan suhu rendah tempat batas-batas bertemu.'],
|
|
107
|
+
['Kurva uap-cair', 'Kesetimbangan didih atau kondensasi', 'Garis melengkung dari titik tripel ke titik kritis.'],
|
|
108
|
+
['Batas padat-cair', 'Kesetimbangan leleh atau beku', 'Garis curam yang memisahkan daerah padat dan cair.'],
|
|
109
|
+
['Titik kritis', 'Akhir dari batas uap-cair', 'Titik akhir yang disorot di mana kalor laten memudar.'],
|
|
110
|
+
['Daerah superkritis', 'Tidak ada perbedaan tajam cair-gas', 'Area bersuhu tinggi dan bertekanan tinggi di luar titik kritis.'],
|
|
111
|
+
],
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
type: 'title',
|
|
115
|
+
text: 'Mengapa titik kritis penting',
|
|
116
|
+
level: 3,
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
type: 'paragraph',
|
|
120
|
+
html: 'Di bawah titik kritis, pendidihan adalah transisi fase: cair dan uap dapat hidup berdampingan, dan energi dapat diserap sebagai kalor laten sementara suhu tetap terikat pada kondisi batas. Pada titik kritis, batas tersebut berakhir. Di atasnya, kerapatan berubah secara kontinu dan zat tersebut digambarkan sebagai fluida superkritis daripada cairan atau gas normal.',
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
type: 'paragraph',
|
|
124
|
+
html: 'Hal ini penting dalam kimia, ilmu planet, ekstraksi industri, refrigerasi, dan fisika tekanan tinggi. Karbon dioksida, misalnya, menjadi superkritis pada kondisi yang relatif terjangkau dibandingkan dengan air, itulah sebabnya CO2 superkritis digunakan dalam ekstraksi dan pemrosesan material. Air memerlukan suhu dan tekanan yang jauh lebih tinggi, menjadikan titik kritisnya penting untuk sistem tenaga dan geofisika.',
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
type: 'title',
|
|
128
|
+
text: 'Apa yang disederhanakan oleh visualisator ini',
|
|
129
|
+
level: 3,
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
type: 'paragraph',
|
|
133
|
+
html: 'Diagram fase nyata dapat mencakup polimorf, keadaan metastabil, campuran non-ideal, banyak fase padat, dan persamaan keadaan yang disesuaikan secara eksperimental. Alat pendidikan ini menjaga model tetap kompak dengan sengaja. Alat ini menjangkarkan setiap zat pada nilai referensi yang dikenal dan menggambar kurva pembelajaran yang halus sehingga ide-ide utama mudah diperiksa tanpa memerlukan tabel termodinamika.',
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
type: 'list',
|
|
137
|
+
items: [
|
|
138
|
+
'<strong>Gunakan untuk intuisi:</strong> ini membantu menjelaskan mengapa panci presto, es kering, pendidihan, dan fluida superkritis berperilaku berbeda.',
|
|
139
|
+
'<strong>Jangan gunakan untuk batas rekayasa:</strong> kurva sederhana bukanlah pengganti data properti bersertifikat.',
|
|
140
|
+
'<strong>Fokus pada topologi:</strong> hasil pembelajaran terpenting adalah bagaimana daerah fase terhubung dan di mana batas berakhir.',
|
|
141
|
+
],
|
|
142
|
+
},
|
|
143
|
+
],
|
|
144
|
+
faq,
|
|
145
|
+
bibliography,
|
|
146
|
+
howTo,
|
|
147
|
+
schemas: [
|
|
148
|
+
{
|
|
149
|
+
'@context': 'https://schema.org',
|
|
150
|
+
'@type': 'SoftwareApplication',
|
|
151
|
+
name: title,
|
|
152
|
+
description,
|
|
153
|
+
applicationCategory: 'ScientificApplication',
|
|
154
|
+
operatingSystem: 'Any',
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
'@context': 'https://schema.org',
|
|
158
|
+
'@type': 'FAQPage',
|
|
159
|
+
mainEntity: faq.map((item) => ({
|
|
160
|
+
'@type': 'Question',
|
|
161
|
+
name: item.question,
|
|
162
|
+
acceptedAnswer: {
|
|
163
|
+
'@type': 'Answer',
|
|
164
|
+
text: item.answer,
|
|
165
|
+
},
|
|
166
|
+
})),
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
'@context': 'https://schema.org',
|
|
170
|
+
'@type': 'HowTo',
|
|
171
|
+
name: title,
|
|
172
|
+
step: howTo.map((step) => ({
|
|
173
|
+
'@type': 'HowToStep',
|
|
174
|
+
name: step.name,
|
|
175
|
+
text: step.text,
|
|
176
|
+
})),
|
|
177
|
+
},
|
|
178
|
+
],
|
|
179
|
+
};
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
|
|
4
|
+
const slug = 'diagramma-di-fase-punto-critico-visualizzatore';
|
|
5
|
+
const title = 'Diagramma di Fase e Visualizzatore del Punto Critico';
|
|
6
|
+
const description = 'Esplora le regioni solida, liquida, gassosa e supercritica su un diagramma di fase pressione-temperatura interattivo con marcatori di punto triplo e punto critico.';
|
|
7
|
+
|
|
8
|
+
const howTo = [
|
|
9
|
+
{
|
|
10
|
+
name: 'Scegli una sostanza',
|
|
11
|
+
text: 'Passa da acqua a anidride carbonica e azoto per vedere come punti tripli e critici reali rimodellano la mappa delle fasi.',
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
name: 'Muovi temperatura e pressione',
|
|
15
|
+
text: 'Usa i cursori per posizionare il campione sul piano pressione-temperatura. Il diagramma aggiorna la regione di fase attiva e il marcatore del campione in tempo reale.',
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
name: 'Osserva l\'alone critico',
|
|
19
|
+
text: 'Spostati verso la fine del confine vapore-liquido per vedere il calore latente svanire e la distinzione liquido-gas collassare in un fluido supercritico.',
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
name: 'Leggi il pannello didattico',
|
|
23
|
+
text: 'Usa l\'etichetta di fase, il misuratore di calore latente e le letture dei punti per collegare il diagramma visivo al vocabolario termodinamico.',
|
|
24
|
+
},
|
|
25
|
+
];
|
|
26
|
+
|
|
27
|
+
const faq = [
|
|
28
|
+
{
|
|
29
|
+
question: 'Cos\'e un diagramma di fase?',
|
|
30
|
+
answer: 'Un diagramma di fase mappa quale stato della materia e stabile a diverse combinazioni di temperatura e pressione. Le linee di confine segnano le condizioni in cui due fasi possono coesistere in equilibrio.',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
question: 'Cosa succede al punto critico?',
|
|
34
|
+
answer: 'Al punto critico, il confine vapore-liquido termina. Al di sopra della temperatura e pressione critiche, il materiale diventa un fluido supercritico e non c\'e una netta distinzione tra liquido e gas.',
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
question: 'Perche l\'acqua ha una linea di fusione diversa?',
|
|
38
|
+
answer: 'L\'acqua e insolita perche il ghiaccio e meno denso dell\'acqua liquida vicino al punto di fusione. L\'aumento della pressione puo favorire la fase liquida piu densa, quindi il confine solido-liquido ha una pendenza diversa rispetto a molte sostanze.',
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
question: 'Le curve tracciate sono accurate in laboratorio?',
|
|
42
|
+
answer: 'No. Lo strumento utilizza curve semplificate ancorate a valori pubblicati di punto triplo e punto critico. E progettato per l\'apprendimento concettuale, non per l\'ingegneria di processo o i calcoli di sicurezza.',
|
|
43
|
+
},
|
|
44
|
+
];
|
|
45
|
+
|
|
46
|
+
export const content: ToolLocaleContent = {
|
|
47
|
+
slug,
|
|
48
|
+
title,
|
|
49
|
+
description,
|
|
50
|
+
ui: {
|
|
51
|
+
controls: 'Controlli del diagramma di fase',
|
|
52
|
+
substance: 'Sostanza',
|
|
53
|
+
units: 'Unita',
|
|
54
|
+
scientificUnits: 'Scientifiche (K, MPa)',
|
|
55
|
+
metricUnits: 'Metriche (Celsius, kPa)',
|
|
56
|
+
imperialUnits: 'Imperial (Fahrenheit, psi)',
|
|
57
|
+
temperature: 'Temperatura',
|
|
58
|
+
pressure: 'Pressione',
|
|
59
|
+
diagram: 'Diagramma di fase pressione-temperatura',
|
|
60
|
+
sample: 'Stato del campione',
|
|
61
|
+
phase: 'Fase stabile',
|
|
62
|
+
triplePoint: 'Punto triplo',
|
|
63
|
+
criticalPoint: 'Punto critico',
|
|
64
|
+
vaporCurve: 'Confine vapore-liquido',
|
|
65
|
+
meltingLine: 'Confine solido-liquido',
|
|
66
|
+
latentHeat: 'Contrasto di calore latente',
|
|
67
|
+
criticalProximity: 'Prossimita critica',
|
|
68
|
+
coordinates: 'Coordinate',
|
|
69
|
+
solid: 'Solido',
|
|
70
|
+
liquid: 'Liquido',
|
|
71
|
+
gas: 'Gas',
|
|
72
|
+
supercritical: 'Supercritico',
|
|
73
|
+
low: 'basso',
|
|
74
|
+
high: 'alto',
|
|
75
|
+
reset: 'Reimposta',
|
|
76
|
+
interpretation: 'Interpretazione',
|
|
77
|
+
note: 'Le linee di confine segnano la coesistenza; le regioni segnano la fase piu stabile per le condizioni selezionate.',
|
|
78
|
+
},
|
|
79
|
+
seo: [
|
|
80
|
+
{
|
|
81
|
+
type: 'title',
|
|
82
|
+
text: 'Visualizzatore interattivo di diagrammi di fase per punti tripli, curve di ebollizione e punti critici',
|
|
83
|
+
level: 2,
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
type: 'paragraph',
|
|
87
|
+
html: 'Questo visualizzatore di diagrammi di fase trasforma un grafico astratto pressione-temperatura in una mappa interattiva. Scegli una sostanza, muovi la temperatura e la pressione, e osserva se il campione e previsto comportarsi come solido, liquido, gas o fluido supercritico. L\'obiettivo e rendere spaziali i confini di fase: attraversare una linea cambia lo stato stabile, mentre avvicinarsi al punto critico cambia il significato stesso di un confine di fase.',
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
type: 'paragraph',
|
|
91
|
+
html: 'Lo strumento e creato per studenti, insegnanti, divulgatori scientifici e chiunque cerchi una spiegazione chiara dei diagrammi di fase. Enfatizza le caratteristiche piu importanti nella termodinamica introduttiva: il punto triplo dove tre fasi coesistono, la curva vapore-liquido, il confine solido-liquido e il punto finale critico dove la distinzione liquido-gas scompare.',
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
type: 'title',
|
|
95
|
+
text: 'Come leggere il diagramma pressione-temperatura',
|
|
96
|
+
level: 3,
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
type: 'paragraph',
|
|
100
|
+
html: 'Un diagramma di fase colloca la temperatura su un asse e la pressione sull\'altro. Ogni regione mostra la fase stabile in quelle condizioni. Le linee tra le regioni sono curve di coesistenza: lungo quelle linee, due fasi possono rimanere in equilibrio invece che una fase sostituisca completamente l\'altra.',
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
type: 'table',
|
|
104
|
+
headers: ['Caratteristica del diagramma', 'Significato', 'Cosa osservare nello strumento'],
|
|
105
|
+
rows: [
|
|
106
|
+
['Punto triplo', 'Solido, liquido e gas coesistono', 'Il punto di giunzione a bassa temperatura dove i confini si incontrano.'],
|
|
107
|
+
['Curva vapore-liquido', 'Equilibrio di ebollizione o condensazione', 'La linea curva dal punto triplo al punto critico.'],
|
|
108
|
+
['Confine solido-liquido', 'Equilibrio di fusione o congelamento', 'La linea ripida che separa le regioni solida e liquida.'],
|
|
109
|
+
['Punto critico', 'Fine del confine vapore-liquido', 'Il punto finale evidenziato dove il calore latente svanisce.'],
|
|
110
|
+
['Regione supercritica', 'Nessuna netta distinzione liquido-gas', 'L\'area ad alta temperatura e alta pressione oltre il punto critico.'],
|
|
111
|
+
],
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
type: 'title',
|
|
115
|
+
text: 'Perche il punto critico e importante',
|
|
116
|
+
level: 3,
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
type: 'paragraph',
|
|
120
|
+
html: 'Al di sotto del punto critico, l\'ebollizione e una transizione di fase: liquido e vapore possono coesistere e l\'energia puo essere assorbita come calore latente mentre la temperatura rimane legata alla condizione al contorno. Al punto critico, quel confine termina. Al di sopra, la densita cambia continuamente e la sostanza viene descritta come un fluido supercritico piuttosto che un liquido o gas normale.',
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
type: 'paragraph',
|
|
124
|
+
html: 'Questo e importante in chimica, scienze planetarie, estrazione industriale, refrigerazione e fisica delle alte pressioni. L\'anidride carbonica, ad esempio, diventa supercritica in condizioni relativamente accessibili rispetto all\'acqua, motivo per cui la CO2 supercritica viene utilizzata nell\'estrazione e nella lavorazione dei materiali. L\'acqua richiede temperature e pressioni molto piu elevate, rendendo il suo punto critico importante per i sistemi energetici e la geofisica.',
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
type: 'title',
|
|
128
|
+
text: 'Cosa semplifica questo visualizzatore',
|
|
129
|
+
level: 3,
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
type: 'paragraph',
|
|
133
|
+
html: 'I diagrammi di fase reali possono includere polimorfi, stati metastabili, miscele non ideali, fasi solide multiple ed equazioni di stato adattate sperimentalmente. Questo strumento didattico mantiene il modello intenzionalmente compatto. Ancor ogni sostanza a valori di riferimento riconoscibili e traccia curve didattiche morbide in modo che le idee principali siano facili da ispezionare senza bisogno di una tabella termodinamica.',
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
type: 'list',
|
|
137
|
+
items: [
|
|
138
|
+
'<strong>Usalo per l\'intuizione:</strong> aiuta a spiegare perche pentole a pressione, ghiaccio secco, ebollizione e fluidi supercritici si comportano diversamente.',
|
|
139
|
+
'<strong>Non usarlo per limiti ingegneristici:</strong> le curve semplificate non sostituiscono i dati certificati sulle proprieta.',
|
|
140
|
+
'<strong>Concentrati sulla topologia:</strong> il risultato di apprendimento piu importante e come le regioni di fase si collegano e dove i confini terminano.',
|
|
141
|
+
],
|
|
142
|
+
},
|
|
143
|
+
],
|
|
144
|
+
faq,
|
|
145
|
+
bibliography,
|
|
146
|
+
howTo,
|
|
147
|
+
schemas: [
|
|
148
|
+
{
|
|
149
|
+
'@context': 'https://schema.org',
|
|
150
|
+
'@type': 'SoftwareApplication',
|
|
151
|
+
name: title,
|
|
152
|
+
description,
|
|
153
|
+
applicationCategory: 'ScientificApplication',
|
|
154
|
+
operatingSystem: 'Any',
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
'@context': 'https://schema.org',
|
|
158
|
+
'@type': 'FAQPage',
|
|
159
|
+
mainEntity: faq.map((item) => ({
|
|
160
|
+
'@type': 'Question',
|
|
161
|
+
name: item.question,
|
|
162
|
+
acceptedAnswer: {
|
|
163
|
+
'@type': 'Answer',
|
|
164
|
+
text: item.answer,
|
|
165
|
+
},
|
|
166
|
+
})),
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
'@context': 'https://schema.org',
|
|
170
|
+
'@type': 'HowTo',
|
|
171
|
+
name: title,
|
|
172
|
+
step: howTo.map((step) => ({
|
|
173
|
+
'@type': 'HowToStep',
|
|
174
|
+
name: step.name,
|
|
175
|
+
text: step.text,
|
|
176
|
+
})),
|
|
177
|
+
},
|
|
178
|
+
],
|
|
179
|
+
};
|