@jjlmoya/utils-science 1.22.0 → 1.23.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jjlmoya/utils-science",
3
- "version": "1.22.0",
3
+ "version": "1.23.0",
4
4
  "type": "module",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -68,7 +68,7 @@ const { ui } = Astro.props;
68
68
 
69
69
  <div class="lorenz-slider-group">
70
70
  <div class="lorenz-slider-header">
71
- <span>{ui.simulationSpeed}</span>
71
+ <span class="lorenz-slider-label">{ui.simulationSpeed}</span>
72
72
  <span class="lorenz-slider-val" id="valDt">0.005</span>
73
73
  </div>
74
74
  <input
@@ -85,7 +85,7 @@ const { ui } = Astro.props;
85
85
 
86
86
  <div class="lorenz-slider-group">
87
87
  <div class="lorenz-slider-header">
88
- <span>{ui.initialPerturbation}</span>
88
+ <span class="lorenz-slider-label">{ui.initialPerturbation}</span>
89
89
  <span class="lorenz-slider-val" id="valPerturb">0.00010</span>
90
90
  </div>
91
91
  <input
@@ -64,16 +64,44 @@ export const content: ToolLocaleContent = {
64
64
  "divergenceExplanation": "Das Divergenzdiagramm zeigt den euklidischen Abstand zwischen den beiden Trajektorien im Laufe der Zeit."
65
65
  },
66
66
  seo: [
67
- {
68
- "type": "title",
69
- "text": "Deterministisches Chaos: Die Lorenz-Gleichungen verstehen",
70
- "level": 2
71
- },
72
- {
73
- "type": "paragraph",
74
- "html": "Das Lorenz-System ist ein Meilenstein in der Geschichte der Mathematik und der nichtlinearen Dynamik."
75
- }
76
- ],
67
+ { type: 'title', text: "Deterministisches Chaos: Die Lorenz-Gleichungen verstehen", level: 2 },
68
+ { type: 'paragraph', html: "Das Lorenz-System ist ein Meilenstein der nichtlinearen Dynamik und Chaostheorie. Es wurde 1963 vom Meteorologen und Mathematiker <strong>Edward Lorenz</strong> entwickelt und entstand aus einem vereinfachten Modell der atmosphaerischen Konvektion. Lorenz reduzierte die komplexen Stroemungsdynamikgleichungen auf drei gekoppelte gewoehnliche Differentialgleichungen. Die Entdeckung, dass diese einfachen, deterministischen Gleichungen hochkomplexes, nichtperiodisches, chaotisches Verhalten erzeugen koennen, veraenderte unser Verstaendnis physikalischer Systeme grundlegend." },
69
+ { type: 'paragraph', html: "Das System wird durch drei gekoppelte Differentialgleichungen beschrieben, die eine Koordinate im dreidimensionalen Phasenraum ueber die Zeit verfolgen:" },
70
+ {
71
+ type: 'list',
72
+ items: [
73
+ "<strong>dx/dt = &sigma; * (y - x):</strong> Beschreibt die Rate der Konvektionsbewegung. Der Parameter &sigma; (Prandtl-Zahl) steht fuer das Verhaeltnis von Viskositaet zu Waermeleitfaehigkeit des Fluids.",
74
+ "<strong>dy/dt = x * (&rho; - z) - y:</strong> Stellt den Temperaturunterschied zwischen auf- und absteigenden Konvektionsstroemen dar. &rho; (Rayleigh-Zahl) repraesentiert die konvektive Heizintensitaet.",
75
+ "<strong>dz/dt = x * y - &beta; * z:</strong> Verfolgt die Verzerrung des vertikalen Temperaturprofils. &beta; ist das geometrische Aspektverhaeltnis der konvektiven Zelle.",
76
+ ],
77
+ },
78
+ { type: 'title', text: "Schmetterlingseffekt: Sensitive Abhaengigkeit von Anfangsbedingungen", level: 3 },
79
+ { type: 'paragraph', html: "Das charakteristische Merkmal chaotischer Systeme ist ihre <strong>sensitive Abhaengigkeit von den Anfangsbedingungen</strong>, bekannt als der <strong>Schmetterlingseffekt</strong>. In einem nicht-chaotischen System fuehrt eine kleine Anfangsabweichung zu einer proportional kleinen Endabweichung. In einem chaotischen System hingegen waechst der Abstand zwischen zwei beliebig nah startenden Trajektorien exponentiell." },
80
+ { type: 'paragraph', html: "Dieser Simulator demonstriert dies, indem zwei Trajektorien (T1 in Cyan, T2 in Pink) mit einem winzigen Startwertunterschied (Stoerungsregler) parallel laufen. Anfangs verlaufen sie nahezu identisch und erscheinen als lila Linie. Nach kurzer Zeit verstaerken die nichtlinearen Terme den Unterschied, und die Pfade divergieren vollstaendig." },
81
+ {
82
+ type: 'table',
83
+ headers: ["Parameter","Standardwert","Physikalische Bedeutung","Auswirkung bei Aenderung"],
84
+ rows: [
85
+ ["&sigma; (Sigma)","10.0","Prandtl-Zahl","Bestimmt die innere Reibung des Fluids. Hoehere Werte beschleunigen die Reaktion der Geschwindigkeitsaenderungen auf Temperaturgradienten."],
86
+ ["&rho; (Rho)","28.0","Rayleigh-Zahl","Haupttreiber des Chaos. Unterhalb von &rho; = 1 ist der Ursprung der einzige stabile Punkt. Bei &rho; = 28 ist das System vollstaendig chaotisch."],
87
+ ["&beta; (Beta)","8/3 (2.667)","Geometrisches Aspektverhaeltnis","Steuert das Breite-zu-Hoehe-Verhaeltnis der Konvektionszellen. Beeinflusst Massstab und Rotationsgeschwindigkeit der Orbits."],
88
+ ],
89
+ },
90
+ { type: 'title', text: "Phasenraum, Seltsame Attraktoren und Fraktale", level: 3 },
91
+ { type: 'paragraph', html: "In der klassischen Physik enden Trajektorien entweder in stabilen Punkten (Senken) oder wiederholen sich als Grenzzyklen. Das Lorenz-System tut weder das eine noch das andere: Die Bahn schlingt sich unendlich im dreidimensionalen Raum, ohne sich selbst zu schneiden. Diese unbegrenzte, sich nicht wiederholende Struktur ist in einem endlichen Volumen des Phasenraums eingeschlossen und bildet einen <strong>seltsamen Attraktor</strong>." },
92
+ { type: 'paragraph', html: "Die Geometrie des Attraktors ist fraktal mit einer Hausdorff-Dimension von ca. 2.06. Der Attraktor ist damit mehr als eine zweidimensionale Flaeche, aber weniger als ein dreidimensionaler Koerper, und zeigt eine komplexe topologische Struktur." },
93
+ { type: 'title', text: "Anwendungen der Chaostheorie in der Wissenschaft", level: 3 },
94
+ { type: 'paragraph', html: "Die Erkenntnisse aus dem Lorenz-Attraktor gehen weit ueber die Wettervorhersage hinaus. Die Chaostheorie hat viele moderne Wissenschaftsgebiete beeinflusst:" },
95
+ {
96
+ type: 'list',
97
+ items: [
98
+ "<strong>Meteorologie:</strong> Setzte grundlegende Grenzen der Wettervorhersagbarkeit und fuehrte zu Ensemble-Prognosemethoden.",
99
+ "<strong>Kryptographie:</strong> Die deterministische, aber unvorhersehbare Natur chaotischer Orbits wird zur Erzeugung sicherer Pseudozufallsschluessen und zur Verschluesselung verwendet.",
100
+ "<strong>Kardiologie:</strong> Modelliert Herzrhythmen, wobei gesunde Herzen chaotische Eigenschaften aufweisen, waehrend periodische Rhythmen auf Pathologien hinweisen koennen.",
101
+ "<strong>Ingenieurwesen:</strong> Hilft, stabile Strukturen zu entwerfen, indem chaotische Resonanz in Haengebruecken und mechanischen Systemen analysiert und vermieden wird.",
102
+ ],
103
+ },
104
+ ],
77
105
  faq,
78
106
  bibliography,
79
107
  howTo,
@@ -64,16 +64,44 @@ export const content: ToolLocaleContent = {
64
64
  "divergenceExplanation": "El grafico de divergencia muestra la distancia euclidiana entre las dos trayectorias a lo largo del tiempo. Observa como aumenta exponencialmente."
65
65
  },
66
66
  seo: [
67
- {
68
- "type": "title",
69
- "text": "Caos Determinista: Entendiendo las Ecuaciones de Lorenz",
70
- "level": 2
71
- },
72
- {
73
- "type": "paragraph",
74
- "html": "El sistema de Lorenz es una formulacion fundamental en la dinamica no lineal y la teoria del caos, que describe el movimiento de una particula en un espacio tridimensional."
75
- }
76
- ],
67
+ { type: 'title', text: "Caos Determinista: Entendiendo las Ecuaciones de Lorenz", level: 2 },
68
+ { type: 'paragraph', html: "El sistema de Lorenz es una formulacion historica en la dinamica no lineal y la teoria del caos. Originalmente derivado en 1963 por el meteorologo y matematico <strong>Edward Lorenz</strong>, el modelo nacio de una representacion simplificada de la convecion atmosferica. Lorenz simplifico las complejas ecuaciones de la dinamica de fluidos en tres ecuaciones diferenciales ordinarias acopladas. Su descubrimiento de que estas ecuaciones simples y deterministicas podian producir un comportamiento complejo, no periodico y caotico cambio nuestra comprension de los sistemas fisicos." },
69
+ { type: 'paragraph', html: "El sistema esta definido por tres ecuaciones diferenciales acopladas que siguen una coordenada en el espacio de fases tridimensional a lo largo del tiempo:" },
70
+ {
71
+ type: 'list',
72
+ items: [
73
+ "<strong>dx/dt = &sigma; * (y - x):</strong> Describe la tasa de movimiento convectivo. El parametro &sigma; (numero de Prandtl) representa la relacion entre la viscosidad del fluido y la conductividad termica.",
74
+ "<strong>dy/dt = x * (&rho; - z) - y:</strong> Representa la diferencia de temperatura entre las corrientes convectivas ascendentes y descendentes. El parametro &rho; (numero de Rayleigh) representa la intensidad del calentamiento convectivo.",
75
+ "<strong>dz/dt = x * y - &beta; * z:</strong> Sigue la distorsion del perfil de temperatura vertical respecto a un gradiente lineal. El parametro &beta; es la relacion de aspecto geometrico de la celda convectiva.",
76
+ ],
77
+ },
78
+ { type: 'title', text: "El Efecto Mariposa: Dependencia Sensible de las Condiciones Iniciales", level: 3 },
79
+ { type: 'paragraph', html: "La caracteristica definitoria de los sistemas caoticos es su <strong>dependencia sensible de las condiciones iniciales</strong>, conocida popularmente como el <strong>Efecto Mariposa</strong>. En un sistema no caotico, una pequena diferencia en el estado inicial conduce a una diferencia proporcionalmente pequena en el estado final. En un sistema caotico, sin embargo, la distancia entre dos trayectorias que comienzan arbitrariamente cerca crece exponencialmente con el tiempo." },
80
+ { type: 'paragraph', html: "Esta sensibilidad se demuestra en este simulador ejecutando dos trayectorias (T1 en cian y T2 en rosa) que comienzan con una separacion minima (definida por el deslizador de Perturbacion). Al principio, viajan por practicamente el mismo camino, mostrando una linea morada mezclada. Despues de un breve periodo, la diferencia inicial es amplificada por los terminos no lineales del sistema, y los caminos divergen por completo." },
81
+ {
82
+ type: 'table',
83
+ headers: ["Parametro","Valor Estandar","Contexto Fisico","Comportamiento al Cambiar"],
84
+ rows: [
85
+ ["&sigma; (Sigma)","10.0","Numero de Prandtl","Determina la friccion interna del fluido. Valores mas altos aceleran la reaccion de los cambios de velocidad respecto a los gradientes de temperatura."],
86
+ ["&rho; (Rho)","28.0","Numero de Rayleigh","Principal motor del caos. Por debajo de &rho; = 1, el origen es el unico punto estable. En &rho; = 28, el sistema es completamente caotico."],
87
+ ["&beta; (Beta)","8/3 (2.667)","Relacion de Aspecto Geometrico","Controla la relacion ancho-alto de las celdas de conveccion. Modifica la escala y la velocidad de rotacion de las orbitas."],
88
+ ],
89
+ },
90
+ { type: 'title', text: "Espacio de Fases, Atractores Extranos y Fractales", level: 3 },
91
+ { type: 'paragraph', html: "En la fisica clasica, las trayectorias eventualmente se estabilizan en puntos fijos (sumideros) o repiten el mismo camino indefinidamente (ciclos limite). El sistema de Lorenz no hace ninguno de los dos. El camino gira en tres dimensiones infinitamente sin cruzarse nunca a si mismo. Esta estructura infinita y no repetitiva esta acotada dentro de un volumen finito del espacio de fases, formando un <strong>atractor extrano</strong>." },
92
+ { type: 'paragraph', html: "La geometria de este atractor es fractal, con una dimension de Hausdorff de aproximadamente 2.06. Esto significa que el atractor es mas que una superficie bidimensional pero menos que un volumen tridimensional solido, mostrando una estructura topologica compleja donde los caminos se doblan sin intersectarse." },
93
+ { type: 'title', text: "Aplicaciones de la Teoria del Caos en la Ciencia", level: 3 },
94
+ { type: 'paragraph', html: "Las lecciones aprendidas del atractor de Lorenz se extienden mucho mas alla de la prediccion meteorologica. La teoria del caos ha influido en muchos campos modernos del estudio:" },
95
+ {
96
+ type: 'list',
97
+ items: [
98
+ "<strong>Meteorologia:</strong> Establecio los limites fundamentales de la predictibilidad meteorologica, dando lugar a los metodos de prediccion por conjuntos.",
99
+ "<strong>Criptografia:</strong> La naturaleza determinista pero impredecible de las orbitas caoticas se utiliza para generar claves pseudoaleatorias seguras y cifrar flujos de datos sensibles.",
100
+ "<strong>Cardiologia:</strong> Se utiliza para modelar los ritmos cardiacos, donde los corazones sanos exhiben caracteristicas caoticas, mientras que los ritmos periodicos pueden indicar patologia.",
101
+ "<strong>Ingenieria:</strong> Ayuda a disenar estructuras estables analizando y evitando la resonancia caotica en puentes colgantes y sistemas mecanicos.",
102
+ ],
103
+ },
104
+ ],
77
105
  faq,
78
106
  bibliography,
79
107
  howTo,
@@ -64,16 +64,44 @@ export const content: ToolLocaleContent = {
64
64
  "divergenceExplanation": "Le graphique de divergence montre la distance euclidienne entre les deux trajectoires au fil du temps."
65
65
  },
66
66
  seo: [
67
- {
68
- "type": "title",
69
- "text": "Chaos Deterministe: Comprendre les Equations de Lorenz",
70
- "level": 2
71
- },
72
- {
73
- "type": "paragraph",
74
- "html": "Le systeme de Lorenz est une formulation historique dans l etude des systemes dynamiques non lineaires."
75
- }
76
- ],
67
+ { type: 'title', text: "Chaos Deterministe: Comprendre les Equations de Lorenz", level: 2 },
68
+ { type: 'paragraph', html: "Le systeme de Lorenz est une formulation historique en dynamique non lineaire et en theorie du chaos. Initialement derive en 1963 par le meteorologue et mathematicien <strong>Edward Lorenz</strong>, le modele est ne d'une representation simplifiee de la convection atmospherique. Lorenz a simplifie les equations complexes de la dynamique des fluides en trois equations differentielles ordinaires couplees. Sa decouverte que ces equations simples et deterministes pouvaient produire un comportement complexe, non periodique et chaotique a transforme notre comprehension des systemes physiques." },
69
+ { type: 'paragraph', html: "Le systeme est defini par trois equations differentielles couplees qui suivent une coordonnee dans l'espace des phases tridimensionnel au fil du temps:" },
70
+ {
71
+ type: 'list',
72
+ items: [
73
+ "<strong>dx/dt = &sigma; * (y - x):</strong> Decrit le taux de mouvement convectif. Le parametre &sigma; (nombre de Prandtl) represente le rapport entre la viscosite du fluide et sa conductivite thermique.",
74
+ "<strong>dy/dt = x * (&rho; - z) - y:</strong> Represente la difference de temperature entre les courants convectifs ascendants et descendants. &rho; (nombre de Rayleigh) represente l'intensite du chauffage convectif.",
75
+ "<strong>dz/dt = x * y - &beta; * z:</strong> Suit la distorsion du profil de temperature vertical. &beta; est le rapport d'aspect geometrique de la cellule convective.",
76
+ ],
77
+ },
78
+ { type: 'title', text: "L'Effet Papillon: Sensibilite aux Conditions Initiales", level: 3 },
79
+ { type: 'paragraph', html: "La caracteristique principale des systemes chaotiques est leur <strong>sensibilite aux conditions initiales</strong>, popularisee sous le nom d'<strong>Effet Papillon</strong>. Dans un systeme non chaotique, une petite difference initiale conduit a une difference finale proportionnellement petite. Dans un systeme chaotique, la distance entre deux trajectoires demarrant arbitrairement proches croit exponentiellement." },
80
+ { type: 'paragraph', html: "Ce simulateur illustre cela en executant deux trajectoires (T1 en cyan et T2 en rose) avec une infime separation initiale (reglage de la perturbation). Au depart, elles suivent pratiquement le meme chemin, formant une ligne violette. Apres un court delai, les termes non lineaires amplifient la difference, et les chemins divergent completement." },
81
+ {
82
+ type: 'table',
83
+ headers: ["Parametre","Valeur Standard","Signification Physique","Comportement au Changement"],
84
+ rows: [
85
+ ["&sigma; (Sigma)","10.0","Nombre de Prandtl","Determine la friction interne du fluide. Des valeurs elevees accelerent la reaction des changements de vitesse par rapport aux gradients de temperature."],
86
+ ["&rho; (Rho)","28.0","Nombre de Rayleigh","Principal moteur du chaos. En dessous de &rho; = 1, l'origine est le seul point stable. A &rho; = 28, le systeme est entierement chaotique."],
87
+ ["&beta; (Beta)","8/3 (2.667)","Rapport d'Aspect Geometrique","Controle le rapport largeur/hauteur des cellules de convection. Modifie l'echelle et la vitesse de rotation des orbites."],
88
+ ],
89
+ },
90
+ { type: 'title', text: "Espace des Phases, Attracteurs Etranges et Fractales", level: 3 },
91
+ { type: 'paragraph', html: "En physique classique, les trajectoires se stabilisent en points fixes (puits) ou repetent le meme chemin indefiniment (cycles limites). Le systeme de Lorenz ne fait ni l'un ni l'autre: la trajectoire tourne infiniment en trois dimensions sans jamais se croiser. Cette structure infinie et non repetitive est confinee dans un volume fini de l'espace des phases, formant un <strong>attracteur etrange</strong>." },
92
+ { type: 'paragraph', html: "La geometrie de cet attracteur est fractale, avec une dimension de Hausdorff d'environ 2.06, soit plus qu'une surface bidimensionnelle mais moins qu'un volume tridimensionnel solide." },
93
+ { type: 'title', text: "Applications de la Theorie du Chaos dans les Sciences", level: 3 },
94
+ { type: 'paragraph', html: "Les enseignements de l'attracteur de Lorenz vont bien au-dela de la meteorologie. La theorie du chaos a influence de nombreux domaines modernes:" },
95
+ {
96
+ type: 'list',
97
+ items: [
98
+ "<strong>Meteorologie:</strong> A etabli les limites fondamentales de la predictibilite meteorologique, donnant naissance aux methodes de prevision par ensemble.",
99
+ "<strong>Cryptographie:</strong> La nature deterministe mais imprevisible des orbites chaotiques est utilisee pour generer des cles pseudo-aleatoires securisees.",
100
+ "<strong>Cardiologie:</strong> Utilisee pour modeliser les rythmes cardiaques, les coeurs sains presentant des caracteristiques chaotiques.",
101
+ "<strong>Ingenierie:</strong> Aide a concevoir des structures stables en analysant et evitant la resonance chaotique dans les ponts suspendus.",
102
+ ],
103
+ },
104
+ ],
77
105
  faq,
78
106
  bibliography,
79
107
  howTo,
@@ -64,16 +64,42 @@ export const content: ToolLocaleContent = {
64
64
  "divergenceExplanation": "Grafik divergensi menunjukkan jarak Euclidean antara kedua lintasan dari waktu ke waktu."
65
65
  },
66
66
  seo: [
67
- {
68
- "type": "title",
69
- "text": "Kekacauan Deterministik: Memahami Persamaan Lorenz",
70
- "level": 2
71
- },
72
- {
73
- "type": "paragraph",
74
- "html": "Sistem Lorenz adalah formulasi penting dalam dinamika non-linear dan teori kekacauan."
75
- }
76
- ],
67
+ { type: 'title', text: "Kekacauan Deterministik: Memahami Persamaan Lorenz", level: 2 },
68
+ { type: 'paragraph', html: "Sistem Lorenz adalah formulasi bersejarah dalam dinamika nonlinear dan teori kekacauan. Awalnya diturunkan pada tahun 1963 oleh meteorolog dan matematikawan <strong>Edward Lorenz</strong>, model ini lahir dari representasi sederhana konveksi atmosfer. Lorenz menyederhanakan persamaan dinamika fluida yang kompleks menjadi tiga persamaan diferensial biasa yang digabungkan. Penemuannya bahwa persamaan deterministik sederhana ini dapat menghasilkan perilaku kompleks, non-periodik, dan kacau mengubah pemahaman kita tentang sistem fisik." },
69
+ { type: 'paragraph', html: "Sistem ini didefinisikan oleh tiga persamaan diferensial tergabung yang melacak koordinat dalam ruang fase tiga dimensi seiring waktu:" },
70
+ {
71
+ type: 'list',
72
+ items: [
73
+ "<strong>dx/dt = &sigma; * (y - x):</strong> Menjelaskan laju gerak konvektif. Parameter &sigma; (bilangan Prandtl) mewakili rasio viskositas fluida terhadap konduktivitas termal.",
74
+ "<strong>dy/dt = x * (&rho; - z) - y:</strong> Mewakili perbedaan suhu antara arus konvektif naik dan turun. &rho; (bilangan Rayleigh) mewakili intensitas pemanasan konvektif.",
75
+ "<strong>dz/dt = x * y - &beta; * z:</strong> Melacak distorsi profil suhu vertikal. &beta; adalah rasio aspek geometrik sel konvektif.",
76
+ ],
77
+ },
78
+ { type: 'title', text: "Efek Kupu-kupu: Ketergantungan Sensitif pada Kondisi Awal", level: 3 },
79
+ { type: 'paragraph', html: "Ciri khas sistem kacau adalah <strong>ketergantungan sensitif pada kondisi awal</strong>, yang populer dikenal sebagai <strong>Efek Kupu-kupu</strong>. Simulator ini menunjukkan hal ini dengan menjalankan dua lintasan (T1 dalam Cyan dan T2 dalam Merah Muda) yang dimulai dengan pemisahan kecil. Pada awalnya, keduanya menempuh jalur yang hampir sama. Setelah waktu singkat, perbedaan awal diperkuat oleh suku-suku nonlinear sistem, dan jalur-jalur tersebut menyimpang sepenuhnya." },
80
+ {
81
+ type: 'table',
82
+ headers: ["Parameter","Nilai Standar","Konteks Fisik","Perilaku saat Diubah"],
83
+ rows: [
84
+ ["&sigma; (Sigma)","10.0","Bilangan Prandtl","Menentukan gesekan internal fluida. Nilai yang lebih tinggi mempercepat reaksi perubahan kecepatan terhadap gradien suhu."],
85
+ ["&rho; (Rho)","28.0","Bilangan Rayleigh","Penggerak utama kekacauan. Di bawah &rho; = 1, titik asal adalah satu-satunya titik stabil. Pada &rho; = 28, sistem sepenuhnya kacau."],
86
+ ["&beta; (Beta)","8/3 (2.667)","Rasio Aspek Geometrik","Mengontrol rasio lebar-tinggi sel konveksi. Memodifikasi skala dan kecepatan rotasi orbit."],
87
+ ],
88
+ },
89
+ { type: 'title', text: "Ruang Fase, Penarik Aneh, dan Fraktal", level: 3 },
90
+ { type: 'paragraph', html: "Dalam fisika klasik, lintasan akhirnya stabil di titik tetap atau berulang sebagai siklus batas. Sistem Lorenz tidak melakukan keduanya: jalurnya melingkar tanpa batas dalam tiga dimensi tanpa pernah bersilangan, membentuk <strong>penarik aneh</strong> dengan geometri fraktal (dimensi Hausdorff sekitar 2,06)." },
91
+ { type: 'title', text: "Penerapan Teori Kekacauan dalam Ilmu Pengetahuan", level: 3 },
92
+ { type: 'paragraph', html: "Pelajaran dari penarik Lorenz jauh melampaui prakiraan cuaca dan telah mempengaruhi banyak bidang ilmu modern:" },
93
+ {
94
+ type: 'list',
95
+ items: [
96
+ "<strong>Meteorologi:</strong> Menetapkan batas fundamental prediktabilitas cuaca, yang mengarah ke metode prakiraan ansambel.",
97
+ "<strong>Kriptografi:</strong> Sifat deterministik namun tidak dapat diprediksi dari orbit kacau digunakan untuk menghasilkan kunci semu-acak yang aman.",
98
+ "<strong>Kardiologi:</strong> Digunakan untuk memodelkan ritme jantung, di mana jantung sehat menunjukkan karakteristik kacau.",
99
+ "<strong>Teknik:</strong> Membantu merancang struktur stabil dengan menganalisis dan menghindari resonansi kacau dalam jembatan gantung.",
100
+ ],
101
+ },
102
+ ],
77
103
  faq,
78
104
  bibliography,
79
105
  howTo,
@@ -64,16 +64,43 @@ export const content: ToolLocaleContent = {
64
64
  "divergenceExplanation": "Il grafico di divergenza mostra la distanza euclidea tra le due traiettorie nel tempo."
65
65
  },
66
66
  seo: [
67
- {
68
- "type": "title",
69
- "text": "Caos Deterministico: Comprendere le Equazioni di Lorenz",
70
- "level": 2
71
- },
72
- {
73
- "type": "paragraph",
74
- "html": "Il sistema di Lorenz e una formulazione fondamentale nello studio della dinamica non lineare."
75
- }
76
- ],
67
+ { type: 'title', text: "Caos Deterministico: Comprendere le Equazioni di Lorenz", level: 2 },
68
+ { type: 'paragraph', html: "Il sistema di Lorenz e una formulazione storica nella dinamica non lineare e nella teoria del caos. Originariamente derivato nel 1963 dal meteorologo e matematico <strong>Edward Lorenz</strong>, il modello nacque da una rappresentazione semplificata della convezione atmosferica. Lorenz semplifico le complesse equazioni della dinamica dei fluidi in tre equazioni differenziali ordinarie accoppiate. La sua scoperta che queste equazioni semplici e deterministiche potevano produrre un comportamento complesso, non periodico e caotico cambio la nostra comprensione dei sistemi fisici." },
69
+ { type: 'paragraph', html: "Il sistema e definito da tre equazioni differenziali accoppiate che tracciano una coordinata nello spazio delle fasi tridimensionale nel tempo:" },
70
+ {
71
+ type: 'list',
72
+ items: [
73
+ "<strong>dx/dt = &sigma; * (y - x):</strong> Descrive il tasso di moto convettivo. Il parametro &sigma; (numero di Prandtl) rappresenta il rapporto tra viscosita del fluido e conduttivita termica.",
74
+ "<strong>dy/dt = x * (&rho; - z) - y:</strong> Rappresenta la differenza di temperatura tra le correnti convettive ascendenti e discendenti. &rho; (numero di Rayleigh) rappresenta l'intensita del riscaldamento convettivo.",
75
+ "<strong>dz/dt = x * y - &beta; * z:</strong> Traccia la distorsione del profilo di temperatura verticale. &beta; e il rapporto d'aspetto geometrico della cella convettiva.",
76
+ ],
77
+ },
78
+ { type: 'title', text: "L'Effetto Farfalla: Dipendenza Sensibile dalle Condizioni Iniziali", level: 3 },
79
+ { type: 'paragraph', html: "La caratteristica distintiva dei sistemi caotici e la loro <strong>dipendenza sensibile dalle condizioni iniziali</strong>, nota come <strong>Effetto Farfalla</strong>. In questo simulatore, due traiettorie (T1 in ciano e T2 in rosa) partono con una separazione minuscola. Inizialmente sembrano identiche, formando una linea viola. Dopo breve tempo, i termini non lineari amplificano la differenza e i percorsi divergono completamente." },
80
+ { type: 'paragraph', html: "In un sistema caotico, la distanza tra due traiettorie che iniziano arbitrariamente vicine cresce esponenzialmente nel tempo, rendendo qualsiasi previsione a lungo termine praticamente impossibile senza una precisione infinita delle condizioni iniziali." },
81
+ {
82
+ type: 'table',
83
+ headers: ["Parametro","Valore Standard","Significato Fisico","Comportamento al Variare"],
84
+ rows: [
85
+ ["&sigma; (Sigma)","10.0","Numero di Prandtl","Determina l'attrito interno del fluido. Valori piu alti accelerano la risposta delle variazioni di velocita ai gradienti di temperatura."],
86
+ ["&rho; (Rho)","28.0","Numero di Rayleigh","Principale motore del caos. Sotto &rho; = 1, l'origine e l'unico punto stabile. A &rho; = 28, il sistema e completamente caotico."],
87
+ ["&beta; (Beta)","8/3 (2.667)","Rapporto d'Aspetto Geometrico","Controlla il rapporto larghezza-altezza delle celle di convezione. Modifica la scala e la velocita di rotazione delle orbite."],
88
+ ],
89
+ },
90
+ { type: 'title', text: "Spazio delle Fasi, Attrattori Strani e Frattali", level: 3 },
91
+ { type: 'paragraph', html: "In fisica classica, le traiettorie si stabilizzano in punti fissi o si ripetono come cicli limite. Il sistema di Lorenz non fa ne l'uno ne l'altro: il percorso si avvolge infinitamente in tre dimensioni senza mai incrociarsi, formando un <strong>attrattore strano</strong> con una geometria frattale (dimensione di Hausdorff circa 2,06)." },
92
+ { type: 'title', text: "Applicazioni della Teoria del Caos nella Scienza", level: 3 },
93
+ { type: 'paragraph', html: "Le lezioni dell'attrattore di Lorenz si estendono ben oltre la meteorologia e hanno influenzato molti campi moderni:" },
94
+ {
95
+ type: 'list',
96
+ items: [
97
+ "<strong>Meteorologia:</strong> Ha stabilito i limiti fondamentali della prevedibilita meteorologica, portando ai metodi di previsione d'insieme.",
98
+ "<strong>Crittografia:</strong> La natura deterministica ma imprevedibile delle orbite caotiche viene usata per generare chiavi pseudo-casuali sicure.",
99
+ "<strong>Cardiologia:</strong> Usata per modellare i ritmi cardiaci, dove i cuori sani mostrano caratteristiche caotiche.",
100
+ "<strong>Ingegneria:</strong> Aiuta a progettare strutture stabili analizzando ed evitando la risonanza caotica.",
101
+ ],
102
+ },
103
+ ],
77
104
  faq,
78
105
  bibliography,
79
106
  howTo,
@@ -64,16 +64,42 @@ export const content: ToolLocaleContent = {
64
64
  "divergenceExplanation": "発散グラフは、2つの軌道間のユークリッド距離の経時変化を示しています。"
65
65
  },
66
66
  seo: [
67
- {
68
- "type": "title",
69
- "text": "決定論的カオス:ローレンツ方程式の理解",
70
- "level": 2
71
- },
72
- {
73
- "type": "paragraph",
74
- "html": "ローレンツ方程式系は、非線形力学とカオス理論における歴史的な金字塔です。"
75
- }
76
- ],
67
+ { type: 'title', text: "決定論的カオス: ローレンツ方程式を理解する", level: 2 },
68
+ { type: 'paragraph', html: "ローレンツ系は、非線形力学とカオス理論における歴史的な定式化です。1963年に気象学者・数学者の<strong>エドワード・ローレンツ</strong>によって導出されたこのモデルは、大気対流の単純化された表現から生まれました。ローレンツは複雑な流体力学方程式を3つの連立常微分方程式に単純化しました。これらの単純で決定論的な方程式が複雑・非周期的・カオス的な挙動を生み出せるという発見は、物理系に対する私たちの理解を一変させました。" },
69
+ { type: 'paragraph', html: "この系は、3次元位相空間における座標を時間で追う3つの連立微分方程式で定義されます:" },
70
+ {
71
+ type: 'list',
72
+ items: [
73
+ "<strong>dx/dt = &sigma; * (y - x):</strong> 対流運動の速度を表します。パラメータ &sigma;(プラントル数)は流体粘性と熱伝導率の比を表します。",
74
+ "<strong>dy/dt = x * (&rho; - z) - y:</strong> 上昇・下降対流電流間の温度差を表します。&rho;(レイリー数)は対流加熱の強度を表します。",
75
+ "<strong>dz/dt = x * y - &beta; * z:</strong> 垂直温度プロファイルの歪みを追います。&beta; は対流セルの幾何学的アスペクト比です。",
76
+ ],
77
+ },
78
+ { type: 'title', text: "バタフライ効果: 初期条件への鋭敏な依存性", level: 3 },
79
+ { type: 'paragraph', html: "カオス系の決定的特性は<strong>初期条件への鋭敏な依存性</strong>であり、一般に<strong>バタフライ効果</strong>として知られています。このシミュレーターでは、わずかな初期分離を持つ2つの軌道(T1:シアン、T2:ピンク)を実行することでこれを示します。最初はほぼ同じ経路をたどりますが、短時間後に非線形項が差を増幅させ、経路は完全に分岐します。" },
80
+ {
81
+ type: 'table',
82
+ headers: ["パラメータ","標準値","物理的意味","変更時の挙動"],
83
+ rows: [
84
+ ["&sigma; (シグマ)","10.0","プラントル数","流体の内部摩擦を決定します。値が大きいほど、温度勾配に対する速度変化の反応が速くなります。"],
85
+ ["&rho; (ロー)","28.0","レイリー数","&rho; = 1未満では原点が唯一の安定点です。&rho; = 28でシステムは完全にカオス状態になります。"],
86
+ ["&beta; (ベータ)","8/3 (2.667)","幾何学的アスペクト比","対流セルの幅対高さの比を制御します。軌道のスケールと回転速度を変更します。"],
87
+ ],
88
+ },
89
+ { type: 'title', text: "位相空間、奇妙なアトラクター、フラクタル", level: 3 },
90
+ { type: 'paragraph', html: "古典物理学では、軌道は最終的に固定点に落ち着くか、限界サイクルとして繰り返します。ローレンツ系はそのどちらも行いません: 経路は3次元で自身と交差することなく無限に回転し、ハウスドルフ次元 約 2.06 のフラクタル幾何学を持つ<strong>奇妙なアトラクター</strong>を形成します。" },
91
+ { type: 'title', text: "科学におけるカオス理論の応用", level: 3 },
92
+ { type: 'paragraph', html: "ローレンツアトラクターから得られた教訓は気象予測をはるかに超え、多くの現代的な研究分野に影響を与えました:" },
93
+ {
94
+ type: 'list',
95
+ items: [
96
+ "<strong>気象学:</strong> 天気予測可能性の根本的な限界を確立し、アンサンブル予報手法につながりました。",
97
+ "<strong>暗号理論:</strong> カオス軌道の決定論的でありながら予測不可能な性質は、安全な擬似乱数鍵の生成や機密データの暗号化に使用されます。",
98
+ "<strong>心臓病学:</strong> 心臓リズムのモデル化に使用され、健康な心臓はカオス的特性を示すのに対し、周期的リズムは病理を示す場合があります。",
99
+ "<strong>工学:</strong> 吊り橋や機械システムのカオス共振を分析・回避することで、安定した構造物の設計を支援します。",
100
+ ],
101
+ },
102
+ ],
77
103
  faq,
78
104
  bibliography,
79
105
  howTo,
@@ -64,16 +64,42 @@ export const content: ToolLocaleContent = {
64
64
  "divergenceExplanation": "발산 그래프는 두 궤적 간의 유클리드 거리 변화를 실시간으로 나타냅니다."
65
65
  },
66
66
  seo: [
67
- {
68
- "type": "title",
69
- "text": "결정론적 카오스: 로렌츠 방정식의 이해",
70
- "level": 2
71
- },
72
- {
73
- "type": "paragraph",
74
- "html": "로렌츠 방정식은 비선형 역학카오스 이론 연구에서 가장 중요한 이정표 하나입니다."
75
- }
76
- ],
67
+ { type: 'title', text: "결정론적 혼돈: 로렌츠 방정식 이해하기", level: 2 },
68
+ { type: 'paragraph', html: "로렌츠 시스템은 비선형 동역학 및 혼돈 이론의 역사적 기초입니다. 1963년 기상학자이자 수학자 <strong>에드워드 로렌츠</strong>에 의해 처음 유도된 이 모델은 대기 대류의 단순화된 표현에서 탄생했습니다. 로렌츠는 복잡한 유체 역학 방정식을 세 개의 연립 상미분 방정식으로 단순화했습니다. 이 단순하고 결정론적인 방정식들이 복잡하고 비주기적이며 혼돈적인 거동을 만들어낼 수 있다는 발견은 물리 시스템에 대한 우리의 이해를 바꾸었습니다." },
69
+ { type: 'paragraph', html: " 시스템은 3차원 위상 공간의 좌표를 시간에 따라 추적하는 세 개의 연립 미분 방정식으로 정의됩니다:" },
70
+ {
71
+ type: 'list',
72
+ items: [
73
+ "<strong>dx/dt = &sigma; * (y - x):</strong> 대류 운동의 속도를 나타냅니다. 매개변수 &sigma; (프란틀 수)는 유체 점성 대 열전도율의 비율을 의미합니다.",
74
+ "<strong>dy/dt = x * (&rho; - z) - y:</strong> 상승 하강 대류 전류 간의 온도 차이를 나타냅니다. &rho; (레일리 수)는 대류 가열 강도를 의미합니다.",
75
+ "<strong>dz/dt = x * y - &beta; * z:</strong> 수직 온도 프로파일의 왜곡을 추적합니다. &beta;는 대류 셀의 기하학적 종횡비입니다.",
76
+ ],
77
+ },
78
+ { type: 'title', text: "나비 효과: 초기 조건에 대한 민감한 의존성", level: 3 },
79
+ { type: 'paragraph', html: "혼돈 시스템의 정의적 특성은 <strong>초기 조건에 대한 민감한 의존성</strong>이며, 이는 <strong>나비 효과</strong>로 널리 알려져 있습니다. 이 시뮬레이터는 미세한 초기 분리를 가진 두 궤적(T1: 시안, T2: 분홍)을 실행하여 이를 보여줍니다. 처음에는 거의 동일한 경로를 따르지만, 잠시 후 비선형 항이 차이를 증폭시켜 경로가 완전히 분기됩니다." },
80
+ {
81
+ type: 'table',
82
+ headers: ["매개변수","표준값","물리적 의미","변경 시 거동"],
83
+ rows: [
84
+ ["&sigma; (시그마)","10.0","프란틀 수","유체의 내부 마찰을 결정합니다. 값이 클수록 온도 구배에 대한 속도 변화의 반응이 빨라집니다."],
85
+ ["&rho; (로)","28.0","레일리 수","&rho; = 1 미만에서는 원점이 유일한 안정점입니다. &rho; = 28에서 시스템은 완전히 혼돈 상태입니다."],
86
+ ["&beta; (베타)","8/3 (2.667)","기하학적 종횡비","대류 셀의 폭 대 높이 비율을 제어합니다. 궤도의 규모와 회전 속도를 조절합니다."],
87
+ ],
88
+ },
89
+ { type: 'title', text: "위상 공간, 이상한 끌개, 프랙탈", level: 3 },
90
+ { type: 'paragraph', html: "고전 물리학에서 궤적은 결국 고정점에 정착하거나 한계 사이클로 반복됩니다. 로렌츠 시스템은 그 어느 것도 하지 않습니다: 경로는 3차원에서 자신과 교차하지 않고 무한히 반복되어 하우스도르프 차원 약 2.06의 프랙탈 기하학을 가진 <strong>이상한 끌개</strong>를 형성합니다." },
91
+ { type: 'title', text: "과학에서의 혼돈 이론 응용", level: 3 },
92
+ { type: 'paragraph', html: "로렌츠 끌개의 교훈은 날씨 예측을 훨씬 넘어서며 많은 현대 연구 분야에 영향을 미쳤습니다:" },
93
+ {
94
+ type: 'list',
95
+ items: [
96
+ "<strong>기상학:</strong> 날씨 예측 가능성의 근본적인 한계를 확립하여 앙상블 예측 방법을 이끌었습니다.",
97
+ "<strong>암호학:</strong> 혼돈 궤도의 결정론적이지만 예측 불가능한 특성은 안전한 의사 난수 키 생성 및 민감한 데이터 암호화에 사용됩니다.",
98
+ "<strong>심장학:</strong> 심장 리듬을 모델링하는 데 사용됩니다. 건강한 심장은 혼돈적 특성을 보이는 반면, 주기적 리듬은 병리를 나타낼 수 있습니다.",
99
+ "<strong>공학:</strong> 현수교 및 기계 시스템의 혼돈 공명을 분석하고 방지하여 안정적인 구조 설계를 지원합니다.",
100
+ ],
101
+ },
102
+ ],
77
103
  faq,
78
104
  bibliography,
79
105
  howTo,
@@ -64,16 +64,42 @@ export const content: ToolLocaleContent = {
64
64
  "divergenceExplanation": "De divergentiegrafiek toont de Euclidische afstand tussen de twee banen over de tijd."
65
65
  },
66
66
  seo: [
67
- {
68
- "type": "title",
69
- "text": "Deterministische Chaos: De Lorenz-vergelijkingen Begrijpen",
70
- "level": 2
71
- },
72
- {
73
- "type": "paragraph",
74
- "html": "Het Lorenz-systeem is een klassieke formulering in niet-lineaire dynamica."
75
- }
76
- ],
67
+ { type: 'title', text: "Deterministisch Chaos: De Lorenz-vergelijkingen begrijpen", level: 2 },
68
+ { type: 'paragraph', html: "Het Lorenz-systeem is een mijlpaal in de niet-lineaire dynamica en de chaostheorie. Oorspronkelijk afgeleid in 1963 door de meteoroloog en wiskundige <strong>Edward Lorenz</strong>, ontstond het model uit een vereenvoudigde weergave van atmosferische convectie. Lorenz vereenvoudigde de complexe vloeistofdynamica tot drie gekoppelde gewone differentiaalvergelijkingen. Zijn ontdekking dat deze eenvoudige, deterministische vergelijkingen hoogcomplex, niet-periodiek en chaotisch gedrag konden produceren, veranderde ons begrip van fysische systemen." },
69
+ { type: 'paragraph', html: "Het systeem wordt gedefinieerd door drie gekoppelde differentiaalvergelijkingen die een coordinaat in de driedimensionale faseruimte in de tijd volgen:" },
70
+ {
71
+ type: 'list',
72
+ items: [
73
+ "<strong>dx/dt = &sigma; * (y - x):</strong> Beschrijft de snelheid van convectieve beweging. De parameter &sigma; (Prandtl-getal) staat voor de verhouding van vloeistofviscositeit tot warmtegeleiding.",
74
+ "<strong>dy/dt = x * (&rho; - z) - y:</strong> Stelt het temperatuurverschil voor tussen stijgende en dalende convectiestromen. &rho; (Rayleigh-getal) representeert de convectieve verwarmingsintensiteit.",
75
+ "<strong>dz/dt = x * y - &beta; * z:</strong> Volgt de vervorming van het verticale temperatuurprofiel. &beta; is de geometrische aspectverhouding van de convectiecel.",
76
+ ],
77
+ },
78
+ { type: 'title', text: "Het Vlindereffect: Gevoelige Afhankelijkheid van Beginwaarden", level: 3 },
79
+ { type: 'paragraph', html: "De bepalende eigenschap van chaotische systemen is hun <strong>gevoelige afhankelijkheid van begincondities</strong>, populair bekend als het <strong>Vlindereffect</strong>. Dit simulatieprogramma illustreert dit door twee trajecten (T1 in cyaan en T2 in roze) gelijktijdig te laten lopen met een minimaal verschil. Aanvankelijk volgen ze vrijwel hetzelfde pad. Na korte tijd versterken de niet-lineaire termen het verschil en divergeren de paden volledig." },
80
+ {
81
+ type: 'table',
82
+ headers: ["Parameter","Standaardwaarde","Fysische Context","Gedrag bij Wijziging"],
83
+ rows: [
84
+ ["&sigma; (Sigma)","10.0","Prandtl-getal","Bepaalt de interne wrijving van de vloeistof. Hogere waarden versnellen de reactie van snelheidsveranderingen op temperatuurgradienten."],
85
+ ["&rho; (Rho)","28.0","Rayleigh-getal","Belangrijkste aandrijver van chaos. Onder &rho; = 1 is de oorsprong het enige stabiele punt. Bij &rho; = 28 is het systeem volledig chaotisch."],
86
+ ["&beta; (Beta)","8/3 (2.667)","Geometrische Aspectverhouding","Beheert de breedte-hoogteverhouding van de convectiecellen. Wijzigt de schaal en rotatiesnelheid van de banen."],
87
+ ],
88
+ },
89
+ { type: 'title', text: "Faseruimte, Vreemde Attractoren en Fractalen", level: 3 },
90
+ { type: 'paragraph', html: "In de klassieke fysica stabiliseren trajecten in vaste punten of herhalen ze zich als limietcycli. Het Lorenz-systeem doet geen van beide: het pad kronkelt oneindig in drie dimensies zonder zichzelf ooit te kruisen, en vormt een <strong>vreemde aantrekker</strong> met een fractale geometrie (Hausdorff-dimensie circa 2,06)." },
91
+ { type: 'title', text: "Toepassingen van de Chaostheorie in de Wetenschap", level: 3 },
92
+ { type: 'paragraph', html: "De lessen van de Lorenz-aantrekker reiken veel verder dan weersvoorspelling en hebben veel moderne vakgebieden beinvloed:" },
93
+ {
94
+ type: 'list',
95
+ items: [
96
+ "<strong>Meteorologie:</strong> Stelde de fundamentele limieten van weersvoorspelbaarheid vast, wat leidde tot ensemble-voorspellingsmethoden.",
97
+ "<strong>Cryptografie:</strong> De deterministische maar onvoorspelbare aard van chaotische banen wordt gebruikt om veilige pseudo-willekeurige sleutels te genereren.",
98
+ "<strong>Cardiologie:</strong> Gebruikt om hartritmen te modelleren, waarbij gezonde harten chaotische kenmerken vertonen.",
99
+ "<strong>Techniek:</strong> Helpt stabiele constructies te ontwerpen door chaotische resonantie in hangbruggen en mechanische systemen te analyseren en te vermijden.",
100
+ ],
101
+ },
102
+ ],
77
103
  faq,
78
104
  bibliography,
79
105
  howTo,
@@ -64,16 +64,42 @@ export const content: ToolLocaleContent = {
64
64
  "divergenceExplanation": "Wykres dywergencji pokazuje odleglosc euklidesowa miedzy dwiema trajektoriami w czasie."
65
65
  },
66
66
  seo: [
67
- {
68
- "type": "title",
69
- "text": "Chaos Deterministyczny: Zrozumiec Rownania Lorenza",
70
- "level": 2
71
- },
72
- {
73
- "type": "paragraph",
74
- "html": "Uklad Lorenza to historyczne sformulowanie w dziedzinie dynamiki nieliniowej."
75
- }
76
- ],
67
+ { type: 'title', text: "Chaos Deterministyczny: Zrozumiec Rownania Lorenza", level: 2 },
68
+ { type: 'paragraph', html: "Uklad Lorenza to historyczne sformulowanie w dynamice nieliniowej i teorii chaosu. Opracowany w 1963 roku przez meteorologa i matematyka <strong>Edwarda Lorenza</strong>, model powstat z uproszczonej reprezentacji konwekcji atmosferycznej. Lorenz zredukkowal skomplikowane rownania dynamiki plynow do trzech sprzezonych zwyklych rownan rozniczkowych. Jego odkrycie, ze te proste deterministyczne rownania moga generowac zlozzone, nieperiodyczne i chaotyczne zachowanie, zmienilo nasze rozumienie ukladow fizycznych." },
69
+ { type: 'paragraph', html: "Uklad opisany jest przez trzy sprzeezone rownania rozniczkowe sledzace wspolrzedna w trojwymiarowej przestrzeni fazowej w czasie:" },
70
+ {
71
+ type: 'list',
72
+ items: [
73
+ "<strong>dx/dt = &sigma; * (y - x):</strong> Opisuje tempo ruchu konwekcyjnego. Parametr &sigma; (liczba Prandtla) przedstawia stosunek lepkosci plynu do przewodnosci cieplnej.",
74
+ "<strong>dy/dt = x * (&rho; - z) - y:</strong> Reprezentuje roznice temperatury miedzy wznoszacymi i opadajacymi pradami konwekcyjnymi. &rho; (liczba Rayleigha) reprezentuje intensywnosc ogrzewania konwekcyjnego.",
75
+ "<strong>dz/dt = x * y - &beta; * z:</strong> Sledzi znieksztalcenie pionowego profilu temperatury. &beta; jest geometrycznym wspolczynnikiem ksztaltu komorki konwekcyjnej.",
76
+ ],
77
+ },
78
+ { type: 'title', text: "Efekt Motyla: Czula Zaleznosc od Warunkow Poczatkowych", level: 3 },
79
+ { type: 'paragraph', html: "Cecha definiujaca chaotyczne uklady jest ich <strong>czula zaleznosc od warunkow poczatkowych</strong>, znana popularnie jako <strong>Efekt Motyla</strong>. Symulator demonstruje to, uruchamiajac dwie trajektorie (T1 w kolorze cyan i T2 w kolorze rozowym) z minimalna separacja poczatkowa. Poczatkowo przebiegaja prawie identycznie. Po krotkim czasie nieliniowe czlony wzmacniaja roznice i trajektorie rozchodza sie calkowicie." },
80
+ {
81
+ type: 'table',
82
+ headers: ["Parametr","Wartosc Standardowa","Kontekst Fizyczny","Zachowanie przy Zmianie"],
83
+ rows: [
84
+ ["&sigma; (Sigma)","10.0","Liczba Prandtla","Okresla tarcie wewnetrzne plynu. Wyzsze wartosci przyspieszaja reakcje zmian predkosci na gradienty temperatury."],
85
+ ["&rho; (Rho)","28.0","Liczba Rayleigha","Glowny napedzajacy chaos. Ponizej &rho; = 1 poczatek ukladu jest jedynym stabilnym punktem. Przy &rho; = 28 system jest w pelni chaotyczny."],
86
+ ["&beta; (Beta)","8/3 (2.667)","Geometryczny Wspolczynnik Ksztaltu","Kontroluje stosunek szerokosci do wysokosci komorek konwekcyjnych. Zmienia skale i predkosc rotacji orbit."],
87
+ ],
88
+ },
89
+ { type: 'title', text: "Przestrzen Fazowa, Dziwne Atraktory i Fraktale", level: 3 },
90
+ { type: 'paragraph', html: "W fizyce klasycznej trajektorie stabilizuja sie w punktach stalych lub powtarzaja jako cykle graniczne. Uklad Lorenza nie robi ani jednego, ani drugiego: sciezka zapetla sie nieskonczona ilosc razy w trzech wymiarach bez samoprzecinania, tworzac <strong>dziwny atraktor</strong> z geometria fraktalowa (wymiar Hausdorffa okolo 2,06)." },
91
+ { type: 'title', text: "Zastosowania Teorii Chaosu w Nauce", level: 3 },
92
+ { type: 'paragraph', html: "Wnioski z atraktora Lorenza wykraczaja daleko poza prognozowanie pogody i wywarty wplyw na wiele wspolczesnych dziedzin:" },
93
+ {
94
+ type: 'list',
95
+ items: [
96
+ "<strong>Meteorologia:</strong> Ustanowila fundamentalne granice przewidywalnosci pogody, prowadzac do metod prognozowania zespolowego.",
97
+ "<strong>Kryptografia:</strong> Deterministyczna, ale nieprzewidywalna natura chaotycznych orbit sluzy do generowania bezpiecznych kluczy pseudolosowych.",
98
+ "<strong>Kardiologia:</strong> Uzywana do modelowania rytmow serca, gdzie zdrowe serca wykazuja chaotyczne wlasciwosci.",
99
+ "<strong>Inzynieria:</strong> Pomaga projektowac stabilne konstrukcje poprzez analize i unikanie chaotycznego rezonansu w mostach wiszacych.",
100
+ ],
101
+ },
102
+ ],
77
103
  faq,
78
104
  bibliography,
79
105
  howTo,
@@ -64,16 +64,42 @@ export const content: ToolLocaleContent = {
64
64
  "divergenceExplanation": "O grafico de divergencia mostra a distancia euclidiana entre as duas trajectorias ao longo do tempo."
65
65
  },
66
66
  seo: [
67
- {
68
- "type": "title",
69
- "text": "Caos Deterministico: Compreender as Equacoes de Lorenz",
70
- "level": 2
71
- },
72
- {
73
- "type": "paragraph",
74
- "html": "O sistema de Lorenz e uma formulacao fundamental na teoria do caos."
75
- }
76
- ],
67
+ { type: 'title', text: "Caos Deterministico: Compreender as Equacoes de Lorenz", level: 2 },
68
+ { type: 'paragraph', html: "O sistema de Lorenz e uma formulacao historica na dinamica nao linear e na teoria do caos. Derivado originalmente em 1963 pelo meteorologista e matematico <strong>Edward Lorenz</strong>, o modelo nasceu de uma representacao simplificada da conveccao atmosferica. A sua descoberta de que estas equacoes simples e deterministicas podiam produzir um comportamento caotico complexo e nao periodico transformou a nossa compreensao dos sistemas fisicos." },
69
+ { type: 'paragraph', html: "O sistema e definido por tres equacoes diferenciais acopladas que seguem uma coordenada no espaco de fases tridimensional ao longo do tempo:" },
70
+ {
71
+ type: 'list',
72
+ items: [
73
+ "<strong>dx/dt = &sigma; * (y - x):</strong> Descreve a taxa de movimento convectivo. O parametro &sigma; (numero de Prandtl) representa a relacao entre a viscosidade do fluido e a condutividade termica.",
74
+ "<strong>dy/dt = x * (&rho; - z) - y:</strong> Representa a diferenca de temperatura entre as correntes convectivas ascendentes e descendentes. &rho; (numero de Rayleigh) representa a intensidade do aquecimento convectivo.",
75
+ "<strong>dz/dt = x * y - &beta; * z:</strong> Regista a distorcao do perfil de temperatura vertical. &beta; e a relacao de aspeto geometrico da celula convectiva.",
76
+ ],
77
+ },
78
+ { type: 'title', text: "O Efeito Borboleta: Dependencia Sensivel das Condicoes Iniciais", level: 3 },
79
+ { type: 'paragraph', html: "A caracteristica definidora dos sistemas caoticos e a sua <strong>dependencia sensivel das condicoes iniciais</strong>, popularmente conhecida como o <strong>Efeito Borboleta</strong>. Neste simulador, duas trajetorias (T1 a ciano e T2 a rosa) partem com uma separacao minima. Inicialmente percorrem praticamente o mesmo caminho. Apos um breve periodo, a diferenca e amplificada pelos termos nao lineares e os caminhos divergem completamente." },
80
+ {
81
+ type: 'table',
82
+ headers: ["Parametro","Valor Padrao","Contexto Fisico","Comportamento ao Mudar"],
83
+ rows: [
84
+ ["&sigma; (Sigma)","10.0","Numero de Prandtl","Determina o atrito interno do fluido. Valores mais elevados aceleram a reacao das variacoes de velocidade aos gradientes de temperatura."],
85
+ ["&rho; (Rho)","28.0","Numero de Rayleigh","Principal motor do caos. Abaixo de &rho; = 1, a origem e o unico ponto estavel. Em &rho; = 28, o sistema e totalmente caotico."],
86
+ ["&beta; (Beta)","8/3 (2.667)","Relacao de Aspeto Geometrico","Controla a relacao largura-altura das celulas de conveccao. Modifica a escala e a velocidade de rotacao das orbitas."],
87
+ ],
88
+ },
89
+ { type: 'title', text: "Espaco de Fases, Atratores Estranhos e Fractais", level: 3 },
90
+ { type: 'paragraph', html: "Em fisica classica, as trajetorias estabilizam-se em pontos fixos ou repetem o mesmo caminho indefinidamente. O sistema de Lorenz nao faz nenhum dos dois: a trajetoria enrola-se infinitamente sem nunca se cruzar, formando um <strong>atrator estranho</strong> com geometria fractal (dimensao de Hausdorff cerca de 2,06)." },
91
+ { type: 'title', text: "Aplicacoes da Teoria do Caos na Ciencia", level: 3 },
92
+ { type: 'paragraph', html: "As licoes do atrator de Lorenz estendem-se muito alem da meteorologia e influenciaram muitas areas modernas:" },
93
+ {
94
+ type: 'list',
95
+ items: [
96
+ "<strong>Meteorologia:</strong> Estabeleceu os limites fundamentais da previsibilidade meteorologica, levando a metodos de previsao por conjunto.",
97
+ "<strong>Criptografia:</strong> A natureza determinista mas imprevisivel das orbitas caoticas e usada para gerar chaves pseudo-aleatorias seguras.",
98
+ "<strong>Cardiologia:</strong> Usada para modelar ritmos cardiacos, onde coracoes saudaveis exibem caracteristicas caoticas.",
99
+ "<strong>Engenharia:</strong> Ajuda a projetar estruturas estaveis analisando e evitando a ressonancia caotica em pontes suspensas.",
100
+ ],
101
+ },
102
+ ],
77
103
  faq,
78
104
  bibliography,
79
105
  howTo,
@@ -64,16 +64,42 @@ export const content: ToolLocaleContent = {
64
64
  "divergenceExplanation": "График расхождения показывает евклидово расстояние между двумя траекториями во времени."
65
65
  },
66
66
  seo: [
67
- {
68
- "type": "title",
69
- "text": "Детерминированный хаос: уравнения Лоренца",
70
- "level": 2
71
- },
72
- {
73
- "type": "paragraph",
74
- "html": "Система Лоренца - это классическая модель нелинейной динамики и теории хаоса."
75
- }
76
- ],
67
+ { type: 'title', text: "Детерминированный Хаос: Понимание Уравнений Лоренца", level: 2 },
68
+ { type: 'paragraph', html: "Система Лоренца является историческойформулировкой в нелинейной динамике и теории хаоса. Первоначально выведенная в 1963 году метеорологом и математиком <strong>Эдвардом Лоренцом</strong>, модель возникла из упрощённого описания атмосферной конвекции. Лоренц упростил сложные уравнения гидродинамики до трёх связанных обыкновенных дифференциальных уравнений. Его открытие того, что эти простые, детерминированные уравнения могут порождать сложное, непериодическое и хаотическое поведение, изменило наше понимание физических систем." },
69
+ { type: 'paragraph', html: "Система определяется тремя связанными дифференциальными уравнениями, отслеживающими координату в трёхмерном фазовом пространстве с течением времени:" },
70
+ {
71
+ type: 'list',
72
+ items: [
73
+ "<strong>dx/dt = &sigma; * (y - x):</strong> Описывает скорость конвективного движения. Параметр &sigma; (число Прандтля): отношение вязкости жидкости к теплопроводности.",
74
+ "<strong>dy/dt = x * (&rho; - z) - y:</strong> Представляет разность температур между восходящими и нисходящими конвективными потоками. &rho; (число Рэлея): интенсивность конвективного нагрева.",
75
+ "<strong>dz/dt = x * y - &beta; * z:</strong> Отслеживает искажение вертикального профиля температуры. &beta;: геометрическое соотношение сторон конвективной ячейки.",
76
+ ],
77
+ },
78
+ { type: 'title', text: "Эффект Бабочки: Чувствительная Зависимость от Начальных Условий", level: 3 },
79
+ { type: 'paragraph', html: "Определяющая черта хаотических систем: <strong>чувствительная зависимость от начальных условий</strong>, известная как <strong>Эффект Бабочки</strong>. Симулятор демонстрирует это, запуская две траектории (T1: голубой, T2: розовый) с ничтожным начальным разделением. Поначалу они идут практически по одному пути. Через короткое время нелинейные члены усиливают разницу, и траектории полностью расходятся." },
80
+ {
81
+ type: 'table',
82
+ headers: ["Параметр","Стандартное Значение","Физический Смысл","Поведение при Изменении"],
83
+ rows: [
84
+ ["&sigma; (Сигма)","10.0","Число Прандтля","Определяет внутреннее трение жидкости. Более высокие значения ускоряют реакцию изменений скорости на температурные градиенты."],
85
+ ["&rho; (Ро)","28.0","Число Рэлея","Главный движущий фактор хаоса. Ниже &rho; = 1 начало координат является единственной устойчивой точкой. При &rho; = 28 система полностью хаотична."],
86
+ ["&beta; (Бета)","8/3 (2.667)","Геометрическое соотношение сторон","Управляет соотношением ширины к высоте конвективных ячеек. Изменяет масштаб и скорость вращения орбит."],
87
+ ],
88
+ },
89
+ { type: 'title', text: "Фазовое Пространство, Странные Аттракторы и Фракталы", level: 3 },
90
+ { type: 'paragraph', html: "В классической физике траектории стабилизируются в фиксированных точках или повторяются как предельные циклы. Система Лоренца не делает ни того, ни другого: путь обвивается бесконечно в трёх измерениях, никогда не пересекая себя, образуя <strong>странный аттрактор</strong> с фрактальной геометрией (размерность Хаусдорфа около 2.06)." },
91
+ { type: 'title', text: "Применения Теории Хаоса в Науке", level: 3 },
92
+ { type: 'paragraph', html: "Уроки аттрактора Лоренца распространяются далеко за пределы метеорологии и повлияли на многие современные области науки:" },
93
+ {
94
+ type: 'list',
95
+ items: [
96
+ "<strong>Метеорология:</strong> Установила фундаментальные пределы предсказуемости погоды, что привело к методам ансамблевого прогнозирования.",
97
+ "<strong>Криптография:</strong> Детерминированная, но непредсказуемая природа хаотических орбит используется для генерации безопасных псевдослучайных ключей.",
98
+ "<strong>Кардиология:</strong> Применяется для моделирования сердечных ритмов, где здоровые сердца демонстрируют хаотические характеристики.",
99
+ "<strong>Инженерия:</strong> Помогает проектировать устойчивые конструкции, анализируя и предотвращая хаотический резонанс в подвесных мостах.",
100
+ ],
101
+ },
102
+ ],
77
103
  faq,
78
104
  bibliography,
79
105
  howTo,
@@ -64,16 +64,42 @@ export const content: ToolLocaleContent = {
64
64
  "divergenceExplanation": "Divergensgrafen visar det euklidiska avstandet mellan de tva banorna over tid."
65
65
  },
66
66
  seo: [
67
- {
68
- "type": "title",
69
- "text": "Deterministiskt Kaos: Att forsta Lorenz-ekvationerna",
70
- "level": 2
71
- },
72
- {
73
- "type": "paragraph",
74
- "html": "Lorenz-systemet ar en milstolpe inom icke-linjar dynamik och kaosteori."
75
- }
76
- ],
67
+ { type: 'title', text: "Deterministiskt Kaos: Forsta Lorenz-ekvationerna", level: 2 },
68
+ { type: 'paragraph', html: "Lorenz-systemet ar en milstolpe inom icke-linjar dynamik och kaosteori. Det harrorde ursprungligen fran 1963 av meteorologen och matematikern <strong>Edward Lorenz</strong>, och modellen foddes ur en forenklad representation av atmosfarisk konvektion. Lorenz foresenklade de komplexa stromningsdynamikekvationerna till tre kopplade ordinara differentialekvationer. Hans upptackt att dessa enkla deterministiska ekvationer kunde producera komplext, icke-periodiskt och kaotiskt beteende forandrade var forstaelse av fysikaliska system." },
69
+ { type: 'paragraph', html: "Systemet definieras av tre kopplade differentialekvationer som foljer en koordinat i det tredimensionella fasrummet over tid:" },
70
+ {
71
+ type: 'list',
72
+ items: [
73
+ "<strong>dx/dt = &sigma; * (y - x):</strong> Beskriver hastigheten for det konvektiva rorelsemonstret. Parametern &sigma; (Prandtl-tal) representerar kvoten av vatskornas viskositet och varmeledningsformaga.",
74
+ "<strong>dy/dt = x * (&rho; - z) - y:</strong> Representerar temperaturskillnaden mellan uppatstigande och nedgatende konvektionsstrommar. &rho; (Rayleigh-tal) representerar den konvektiva uppvarmningens intensitet.",
75
+ "<strong>dz/dt = x * y - &beta; * z:</strong> Spar distorsionen av det vertikala temperaturprofilet. &beta; ar det geometriska aspektforhallandet for den konvektiva cellen.",
76
+ ],
77
+ },
78
+ { type: 'title', text: "Fjariilseffekten: Kanslighet for Begynnelsevilkor", level: 3 },
79
+ { type: 'paragraph', html: "Det definierande draget hos kaotiska system ar deras <strong>kanslighet for begynnelsevilkor</strong>, populart kand som <strong>Fjariilseffekten</strong>. Denna simulator demonstrerar detta genom att kora tva banor (T1 i cyan och T2 i rosa) med en minimal separation. Initialt foljer de nastan samma vag. Efter en kort tid forstarker de icke-linjara termerna skillnaden och banorna avviker fullstandigt." },
80
+ {
81
+ type: 'table',
82
+ headers: ["Parameter","Standardvarde","Fysisk Kontext","Beteende vid Andring"],
83
+ rows: [
84
+ ["&sigma; (Sigma)","10.0","Prandtl-tal","Bestammer vatskornas inre friktion. Hogre varden paскоrar reaktionen av hastighetsforandringar i forhallande till temperaturgradienter."],
85
+ ["&rho; (Rho)","28.0","Rayleigh-tal","Huvuddrivaren for kaos. Under &rho; = 1 ar ursprunget den enda stabila punkten. Vid &rho; = 28 ar systemet fullstandigt kaotiskt."],
86
+ ["&beta; (Beta)","8/3 (2.667)","Geometriskt Aspektforhallande","Styr bredd-till-hojd-forhallandet for konvektionscellerna. Modifierar skalan och rotationshastigheten for banorna."],
87
+ ],
88
+ },
89
+ { type: 'title', text: "Fasrum, Underfunderliga Attraktorer och Fraktaler", level: 3 },
90
+ { type: 'paragraph', html: "I klassisk fysik stabiliseras banor i fasta punkter eller upprepas som gransscykler. Lorenz-systemet gor ingendera: banan slingrar sig oandligt i tre dimensioner utan att korsas, och bildar en <strong>underlig attraktor</strong> med fraktal geometri (Hausdorff-dimension ungefar 2,06)." },
91
+ { type: 'title', text: "Tillämpningar av Kaosteorin inom Vetenskapen", level: 3 },
92
+ { type: 'paragraph', html: "Lärdomarna från Lorenz-attraktorn sträcker sig långt bortom väderprognoser och har påverkat många moderna studieområden:" },
93
+ {
94
+ type: 'list',
95
+ items: [
96
+ "<strong>Meteorologi:</strong> Faststallde de grundlaggande gransserna for vaderforutsagbarhet, vilket ledde till ensembleprognoseringmetoder.",
97
+ "<strong>Kryptografi:</strong> Den deterministiska men ooversattliga naturen hos kaotiska banor anvands for att generera sakra pseudo-slumptal.",
98
+ "<strong>Kardiologi:</strong> Anvands for att modellera hjartritmer, dar friska hjartan uppvisar kaotiska egenskaper.",
99
+ "<strong>Teknik:</strong> Hjalper till att utforma stabila konstruktioner genom att analysera och undvika kaotisk resonans i hangbroar.",
100
+ ],
101
+ },
102
+ ],
77
103
  faq,
78
104
  bibliography,
79
105
  howTo,
@@ -64,16 +64,42 @@ export const content: ToolLocaleContent = {
64
64
  "divergenceExplanation": "Sapma grafigi, iki yorunge arasindaki Oklid mesafesinin zaman icindeki degisimini gosterir."
65
65
  },
66
66
  seo: [
67
- {
68
- "type": "title",
69
- "text": "Belirlenimci Kaos: Lorenz Denklemlerini Anlamak",
70
- "level": 2
71
- },
72
- {
73
- "type": "paragraph",
74
- "html": "Lorenz sistemi, dogrusal olmayan dinamik ve kaos teorisinde temel bir formülasyondur."
75
- }
76
- ],
67
+ { type: 'title', text: "Belirlenimci Kaos: Lorenz Denklemlerini Anlamak", level: 2 },
68
+ { type: 'paragraph', html: "Lorenz sistemi, dogrusal olmayan dinamik ve kaos teorisinde tarihi bir formulasyondur. 1963 yilinda meteorolog ve matematikci <strong>Edward Lorenz</strong> tarafindan turetilen model, atmosferik konveksiyonun basitlestirilmis bir temsilinden dogdu. Lorenz, karmasik akiskan dinamigi denklemlerini uc birlesik adi diferansiyel denklemle ozetledi. Bu basit ve deterministik denklemlerin karmasik, periyodik olmayan ve kaotik davranis uretebileceginin kesfi, fiziksel sistemler hakkindaki anlayisimizi degistirdi." },
69
+ { type: 'paragraph', html: "Sistem, uc boyutlu faz uzayinda bir koordinati zaman icinde izleyen uc birlesik diferansiyel denklemle tanimlanir:" },
70
+ {
71
+ type: 'list',
72
+ items: [
73
+ "<strong>dx/dt = &sigma; * (y - x):</strong> Konvektif hareket hizini aciklar. &sigma; parametresi (Prandtl sayisi) akiskanin viskozitesinin isil iletkenligine oranini temsil eder.",
74
+ "<strong>dy/dt = x * (&rho; - z) - y:</strong> Yukari ve asagi konveksiyon akimlari arasindaki sicaklik farkini temsil eder. &rho; (Rayleigh sayisi) konvektif isinmanin yogunlugunu temsil eder.",
75
+ "<strong>dz/dt = x * y - &beta; * z:</strong> Dikey sicaklik profilinin dogrusal gradyandan sapmasini izler. &beta;, konvektif fiziksel hucrenin geometrik en-boy oranini temsil eder.",
76
+ ],
77
+ },
78
+ { type: 'title', text: "Kelebek Etkisi: Baslangic Kosullarına Hassas Bagimlilik", level: 3 },
79
+ { type: 'paragraph', html: "Kaotik sistemlerin belirleyici ozelligi, <strong>baslangic kosullarina hassas bagimliliklari</strong>dir; bu durum populer olarak <strong>Kelebek Etkisi</strong> olarak bilinir. Bu simulator, baslangic perturbasyonunu belirleyen kaydirici ile ayarlanan kucuk bir ayrilikla baslayan iki yoru (T1 Cyan, T2 Pembe) calistirarak bunu gostermektedir. Baslangicta neredeyse ayni yolu izlerler. Kisa bir sureyle dogrusal olmayan terimler farki buyutecek ve yollar tamamen birbirinden ayrilacak." },
80
+ {
81
+ type: 'table',
82
+ headers: ["Parametre","Standart Deger","Fiziksel Baglam","Degistirildiginde Davranis"],
83
+ rows: [
84
+ ["&sigma; (Sigma)","10.0","Prandtl Sayisi","Akiskanin ic surtusmesini belirler. Daha yuksek degerler, sicaklik gradyanlarina gore hiz degisikliklerinin tepkisini hizlandirir."],
85
+ ["&rho; (Rho)","28.0","Rayleigh Sayisi","Kaosun ana suruculeri. &rho; = 1'in altinda, orijin tek kararli noktadir. &rho; = 28'de sistem tamamen kaotiktir."],
86
+ ["&beta; (Beta)","8/3 (2.667)","Geometrik En-Boy Orani","Konveksiyon hucrelerinin genislik-yukseklik oranini kontrol eder. Yoarunge olcegini ve donus hizini degistirir."],
87
+ ],
88
+ },
89
+ { type: 'title', text: "Faz Uzayi, Tuhaf Cezbediciler ve Fraktallar", level: 3 },
90
+ { type: 'paragraph', html: "Klasik fizikte yoarungeler sabit noktalarda karara oturur veya sinir cevrimleri olarak kendini tekrar eder. Lorenz sistemi her ikisini de yapmaz: yol, uc boyutlu uzayda kendisiyle hic kesismeden sonsuz bir sekilde dolasir ve Hausdorff boyutu yaklasik 2,06 olan fraktal geometriye sahip bir <strong>tuhaf cezbedici</strong> olusturur." },
91
+ { type: 'title', text: "Kaos Teorisinin Bilimeteki Uygulamalari", level: 3 },
92
+ { type: 'paragraph', html: "Lorenz cezbedicisinden cikartilan dersler, hava tahmininin cok otesine gecer ve pek cok modern calisma alanini etkilemistir:" },
93
+ {
94
+ type: 'list',
95
+ items: [
96
+ "<strong>Meteoroloji:</strong> Hava ongorulebilirliginin temel sinirlarini ortaya koydu ve topluluk tahmin yontemlerine one surucu oldu.",
97
+ "<strong>Kriptografi:</strong> Kaotik yoarungelerin deterministik ancak ongorelemez yapisi, guvenli psodorandom anahtarlar uretmek icin kullanilir.",
98
+ "<strong>Kardiyoloji:</strong> Kalp ritimlerini modellemek icin kullanilir; saglikli kalplar kaotik ozellikler sergilerken, periyodik ritimler patolojiyi gosterebilir.",
99
+ "<strong>Muhendislik:</strong> Asili kopruler ve mekanik sistemlerdeki kaotik rezonans analiz edip onlenerek kararli yapilar tasarlanmasina yardimci olur.",
100
+ ],
101
+ },
102
+ ],
77
103
  faq,
78
104
  bibliography,
79
105
  howTo,
@@ -64,16 +64,42 @@ export const content: ToolLocaleContent = {
64
64
  "divergenceExplanation": "发散图显示了两条轨迹之间的欧几里得距离随时间的变化。"
65
65
  },
66
66
  seo: [
67
- {
68
- "type": "title",
69
- "text": "决定论混沌:理解洛伦兹方程",
70
- "level": 2
71
- },
72
- {
73
- "type": "paragraph",
74
- "html": "洛伦兹方程组是非线性动力学和混沌理论研究中的里程碑。"
75
- }
76
- ],
67
+ { type: 'title', text: "确定性混沌:理解洛伦兹方程", level: 2 },
68
+ { type: 'paragraph', html: "洛伦兹系统是非线性动力学和混沌理论中的里程碑式成果。1963年,气象学家兼数学家<strong>爱德华·洛伦兹</strong>从大气对流的简化模型中推导出该方程组。洛伦兹将复杂的流体动力学方程简化为三个耦合的常微分方程。他发现这些简单的确定性方程能够产生高度复杂、非周期性的混沌行为,从而彻底改变了我们对物理系统的认识。" },
69
+ { type: 'paragraph', html: "该系统由三个耦合微分方程定义,在时间维度上追踪三维相空间中的坐标:" },
70
+ {
71
+ type: 'list',
72
+ items: [
73
+ "<strong>dx/dt = &sigma; * (y - x):</strong>描述对流运动的速率。参数 &sigma;(普朗特数)表示流体粘度与导热系数之比。",
74
+ "<strong>dy/dt = x * (&rho; - z) - y:</strong>代表上升和下降对流流之间的温度差。&rho;(瑞利数)代表对流加热强度。",
75
+ "<strong>dz/dt = x * y - &beta; * z:</strong>追踪垂直温度剖面的畸变。&beta; 是对流物理单元的几何纵横比。",
76
+ ],
77
+ },
78
+ { type: 'title', text: "蝴蝶效应:对初始条件的敏感依赖", level: 3 },
79
+ { type: 'paragraph', html: "混沌系统的决定性特征是其<strong>对初始条件的敏感依赖</strong>,通俗称为<strong>蝴蝶效应</strong>。本模拟器通过运行两条轨迹(T1为青色,T2为粉色)来展示这一现象,两条轨迹的起始点仅有微小差异。起初,它们几乎沿同一路径运行;短时间后,非线性项将差异放大,两条路径完全分叉。" },
80
+ {
81
+ type: 'table',
82
+ headers: ["参数","标准值","物理含义","改变时的行为"],
83
+ rows: [
84
+ ["&sigma; (西格玛)","10.0","普朗特数","决定流体内部摩擦。值越大,速度变化对温度梯度的响应越快。"],
85
+ ["&rho; (罗)","28.0","瑞利数","&rho; = 1以下,原点是唯一的稳定点。在 &rho; = 28时,系统完全进入混沌状态。"],
86
+ ["&beta; (贝塔)","8/3 (2.667)","几何纵横比","控制对流单元的宽高比,改变轨道的尺度和旋转速度。"],
87
+ ],
88
+ },
89
+ { type: 'title', text: "相空间、奇怪吸引子与分形", level: 3 },
90
+ { type: 'paragraph', html: "在经典物理学中,轨迹最终稳定在不动点,或以极限环的形式重复。洛伦兹系统两者皆不:轨迹在三维空间中无限盘旋而从不自我交叉,形成豪斯多夫维数 约 2.06 的分形几何<strong>奇怪吸引子</strong>。" },
91
+ { type: 'title', text: "混沌理论在科学中的应用", level: 3 },
92
+ { type: 'paragraph', html: "洛伦兹吸引子的启示远不止于气象预报,已对众多现代研究领域产生深远影响:" },
93
+ {
94
+ type: 'list',
95
+ items: [
96
+ "<strong>气象学:</strong>确立了天气可预测性的根本限制,催生了集合预报方法。",
97
+ "<strong>密码学:</strong>混沌轨道确定但不可预测的特性被用于生成安全的伪随机密钥,加密敏感数据流。",
98
+ "<strong>心脏病学:</strong>用于心脏节律建模,健康心脏呈现混沌特征,而周期性节律可能预示病理状态。",
99
+ "<strong>工程学:</strong>通过分析并规避悬索桥和机械系统中的混沌共振,助力设计稳定结构。",
100
+ ],
101
+ },
102
+ ],
77
103
  faq,
78
104
  bibliography,
79
105
  howTo,
@@ -9,7 +9,7 @@
9
9
  --lorenz-border: #e2e8f0;
10
10
  --lorenz-text: #0f172a;
11
11
  --lorenz-text-muted: #64748b;
12
- --lorenz-slider-track: #e2e8f0;
12
+ --lorenz-slider-track: #cbd5e1;
13
13
  --lorenz-shadow-color: rgba(0, 0, 0, 0.04);
14
14
  --lorenz-font-mono: consolas, monaco, 'Courier New', monospace;
15
15
  }
@@ -25,7 +25,7 @@
25
25
  --lorenz-border: rgba(255, 255, 255, 0.06);
26
26
  --lorenz-text: #f3f4f6;
27
27
  --lorenz-text-muted: #9ca3af;
28
- --lorenz-slider-track: #374151;
28
+ --lorenz-slider-track: #4b5563;
29
29
  --lorenz-shadow-color: rgba(255, 255, 255, 0.03);
30
30
  }
31
31
 
@@ -33,6 +33,7 @@
33
33
  width: 100%;
34
34
  max-width: 1200px;
35
35
  margin: 0 auto;
36
+ font: 14px Outfit, Inter, sans-serif;
36
37
  color: var(--lorenz-text);
37
38
  box-sizing: border-box;
38
39
  }
@@ -59,6 +60,50 @@
59
60
  @media (min-width: 992px) {
60
61
  .lorenz-grid {
61
62
  grid-template-columns: 1.5fr 1fr;
63
+ align-items: stretch;
64
+ }
65
+
66
+ .lorenz-canvas-container {
67
+ aspect-ratio: auto;
68
+ min-height: 520px;
69
+ height: 100%;
70
+ }
71
+
72
+ .lorenz-controls-section {
73
+ gap: 12px;
74
+ }
75
+
76
+ .lorenz-sliders-block {
77
+ gap: 10px;
78
+ }
79
+
80
+ .lorenz-slider-group {
81
+ gap: 2px;
82
+ }
83
+
84
+ .lorenz-slider {
85
+ height: 28px;
86
+ }
87
+
88
+ .lorenz-coords-row {
89
+ display: flex;
90
+ flex-direction: row;
91
+ gap: 32px;
92
+ justify-content: flex-start;
93
+ }
94
+
95
+ .lorenz-divergence-display {
96
+ gap: 4px;
97
+ margin-top: 8px;
98
+ margin-bottom: 8px;
99
+ }
100
+
101
+ .lorenz-chart-canvas-wrapper {
102
+ height: 60px;
103
+ }
104
+
105
+ .lorenz-stats-block {
106
+ gap: 8px;
62
107
  }
63
108
  }
64
109
 
@@ -78,6 +123,7 @@
78
123
  height: 100%;
79
124
  display: block;
80
125
  cursor: grab;
126
+ touch-action: none;
81
127
  }
82
128
 
83
129
  .lorenz-canvas:active {
@@ -113,14 +159,19 @@
113
159
  color: var(--lorenz-text-muted);
114
160
  }
115
161
 
162
+ .lorenz-slider-label {
163
+ font: 700 12px Outfit, Inter, sans-serif;
164
+ }
165
+
116
166
  .lorenz-slider-val {
117
167
  color: var(--lorenz-primary);
168
+ font: 13px consolas, monaco, monospace;
118
169
  font-variant-numeric: tabular-nums;
119
170
  }
120
171
 
121
172
  .lorenz-slider {
122
173
  width: 100%;
123
- height: 20px;
174
+ height: 44px;
124
175
  background: transparent;
125
176
  outline: none;
126
177
  -webkit-appearance: none;
@@ -130,9 +181,8 @@
130
181
 
131
182
  .lorenz-slider::-webkit-slider-runnable-track {
132
183
  width: 100%;
133
- height: 2px;
184
+ height: 1px;
134
185
  background: var(--lorenz-slider-track);
135
- border-radius: 1px;
136
186
  }
137
187
 
138
188
  .lorenz-slider::-webkit-slider-thumb {
@@ -140,16 +190,15 @@
140
190
  width: 2px;
141
191
  height: 12px;
142
192
  background: var(--lorenz-primary);
143
- margin-top: -5px;
193
+ margin-top: -5.5px;
144
194
  border-radius: 0;
145
195
  transition: transform 0.1s ease;
146
196
  }
147
197
 
148
198
  .lorenz-slider::-moz-range-track {
149
199
  width: 100%;
150
- height: 2px;
200
+ height: 1px;
151
201
  background: var(--lorenz-slider-track);
152
- border-radius: 1px;
153
202
  }
154
203
 
155
204
  .lorenz-slider::-moz-range-thumb {
@@ -212,25 +261,25 @@
212
261
  }
213
262
 
214
263
  .lorenz-coord-item {
215
- font-size: 0.72rem;
264
+ font: 12px Outfit, Inter, sans-serif;
216
265
  color: var(--lorenz-text-muted);
217
266
  }
218
267
 
219
268
  .lorenz-coord-val {
220
- font-weight: 600;
269
+ font: 600 14px consolas, monaco, monospace;
221
270
  font-variant-numeric: tabular-nums;
222
271
  }
223
272
 
224
273
  .lorenz-divergence-display {
225
274
  display: flex;
226
275
  flex-direction: column;
227
- gap: 6px;
228
- margin-top: 8px;
276
+ gap: 12px;
277
+ margin-top: 24px;
278
+ margin-bottom: 24px;
229
279
  }
230
280
 
231
281
  .lorenz-divergence-title {
232
- font-size: 0.7rem;
233
- font-weight: 700;
282
+ font: 700 12px Outfit, Inter, sans-serif;
234
283
  text-transform: uppercase;
235
284
  letter-spacing: 0.05em;
236
285
  color: var(--lorenz-text-muted);
@@ -243,8 +292,7 @@
243
292
  }
244
293
 
245
294
  .lorenz-divergence-num {
246
- font-size: 2.8rem;
247
- font-weight: 750;
295
+ font: 750 2.8rem consolas, monaco, monospace;
248
296
  line-height: 1;
249
297
  color: var(--lorenz-accent);
250
298
  font-variant-numeric: tabular-nums;
@@ -252,8 +300,7 @@
252
300
  }
253
301
 
254
302
  .lorenz-divergence-delta {
255
- font-size: 0.85rem;
256
- font-weight: 700;
303
+ font: 700 14px consolas, monaco, monospace;
257
304
  color: var(--lorenz-text-muted);
258
305
  font-variant-numeric: tabular-nums;
259
306
  }
@@ -269,8 +316,7 @@
269
316
  .lorenz-chart-header {
270
317
  display: flex;
271
318
  align-items: center;
272
- font-size: 0.7rem;
273
- font-weight: 700;
319
+ font: 700 12px Outfit, Inter, sans-serif;
274
320
  text-transform: uppercase;
275
321
  letter-spacing: 0.05em;
276
322
  color: var(--lorenz-text-muted);
@@ -291,9 +337,8 @@
291
337
  height: 14px;
292
338
  border-radius: 50%;
293
339
  border: 1px solid var(--lorenz-text-muted);
294
- font-size: 9px;
340
+ font: bold 9px consolas, monaco, monospace;
295
341
  color: var(--lorenz-text-muted);
296
- font-weight: bold;
297
342
  }
298
343
 
299
344
  .lorenz-tooltip-text {
@@ -307,7 +352,7 @@
307
352
  text-align: center;
308
353
  padding: 8px 12px;
309
354
  border-radius: 8px;
310
- font-size: 0.7rem;
355
+ font: 12px Outfit, Inter, sans-serif;
311
356
  line-height: 1.3;
312
357
  width: 200px;
313
358
  z-index: 10;
@@ -333,3 +378,76 @@
333
378
  height: 100%;
334
379
  display: block;
335
380
  }
381
+
382
+ @media (max-width: 991px) {
383
+ .lorenz-app {
384
+ height: calc(100svh - 80px);
385
+ display: flex;
386
+ flex-direction: column;
387
+ }
388
+
389
+ .lorenz-card {
390
+ flex: 1;
391
+ display: flex;
392
+ flex-direction: column;
393
+ height: 100%;
394
+ padding: 16px;
395
+ overflow: hidden;
396
+ }
397
+
398
+ .lorenz-grid {
399
+ flex: 1;
400
+ display: flex;
401
+ flex-direction: column;
402
+ height: 100%;
403
+ gap: 16px;
404
+ }
405
+
406
+ .lorenz-canvas-container {
407
+ height: 43%;
408
+ flex-shrink: 0;
409
+ aspect-ratio: auto;
410
+ }
411
+
412
+ .lorenz-controls-section {
413
+ height: 57%;
414
+ overflow-y: auto;
415
+ display: flex;
416
+ flex-direction: column;
417
+ gap: 20px;
418
+ padding-right: 4px;
419
+ }
420
+
421
+ .lorenz-slider-group {
422
+ padding-left: 24px;
423
+ padding-right: 24px;
424
+ }
425
+
426
+ .lorenz-button-row {
427
+ grid-template-columns: 2fr 1fr 1fr;
428
+ gap: 12px;
429
+ order: 4;
430
+ }
431
+
432
+ .lorenz-stats-block {
433
+ order: 1;
434
+ border-top: none;
435
+ padding-top: 0;
436
+ }
437
+
438
+ .lorenz-chart-block {
439
+ order: 2;
440
+ border-top: none;
441
+ padding-top: 0;
442
+ }
443
+
444
+ .lorenz-chart-canvas-wrapper {
445
+ height: 56px;
446
+ }
447
+
448
+ .lorenz-sliders-block {
449
+ order: 3;
450
+ border-top: 1px solid var(--lorenz-border);
451
+ padding-top: 16px;
452
+ }
453
+ }
@@ -107,7 +107,8 @@ function resizeAll() {
107
107
  if (canvas && canvas.parentElement) {
108
108
  resize(canvas, canvas.parentElement.getBoundingClientRect().height);
109
109
  }
110
- resize(chartCanvas, 80);
110
+ const isMobile = window.innerWidth <= 991;
111
+ resize(chartCanvas, isMobile ? 56 : 60);
111
112
  }
112
113
 
113
114
  function drawAttractor() {