@jjlmoya/utils-science 1.21.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 +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/lorenz-attractor/bibliography.astro +14 -0
- package/src/tool/lorenz-attractor/bibliography.ts +12 -0
- package/src/tool/lorenz-attractor/component.astro +146 -0
- package/src/tool/lorenz-attractor/entry.ts +27 -0
- package/src/tool/lorenz-attractor/i18n/de.ts +141 -0
- package/src/tool/lorenz-attractor/i18n/en.ts +185 -0
- package/src/tool/lorenz-attractor/i18n/es.ts +141 -0
- package/src/tool/lorenz-attractor/i18n/fr.ts +141 -0
- package/src/tool/lorenz-attractor/i18n/id.ts +139 -0
- package/src/tool/lorenz-attractor/i18n/it.ts +140 -0
- package/src/tool/lorenz-attractor/i18n/ja.ts +139 -0
- package/src/tool/lorenz-attractor/i18n/ko.ts +139 -0
- package/src/tool/lorenz-attractor/i18n/nl.ts +139 -0
- package/src/tool/lorenz-attractor/i18n/pl.ts +139 -0
- package/src/tool/lorenz-attractor/i18n/pt.ts +139 -0
- package/src/tool/lorenz-attractor/i18n/ru.ts +139 -0
- package/src/tool/lorenz-attractor/i18n/sv.ts +139 -0
- package/src/tool/lorenz-attractor/i18n/tr.ts +139 -0
- package/src/tool/lorenz-attractor/i18n/zh.ts +139 -0
- package/src/tool/lorenz-attractor/index.ts +9 -0
- package/src/tool/lorenz-attractor/logic/LorenzEngine.ts +32 -0
- package/src/tool/lorenz-attractor/lorenz-attractor.css +453 -0
- package/src/tool/lorenz-attractor/renderer.ts +136 -0
- package/src/tool/lorenz-attractor/script.ts +283 -0
- package/src/tool/lorenz-attractor/seo.astro +15 -0
- package/src/tools.ts +2 -0
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
const slug = 'atrator-de-lorenz';
|
|
2
|
+
const title = 'Simulador de Caos do Atractor de Lorenz: O Efeito Borboleta em 3D';
|
|
3
|
+
const description = 'Explore a teoria do caos com esta simulacao interativa 3D do atractor de Lorenz. Visualize o efeito borboleta.';
|
|
4
|
+
|
|
5
|
+
const howTo = [
|
|
6
|
+
{
|
|
7
|
+
"name": "Rodar a tela",
|
|
8
|
+
"text": "Clique e arraste no visor 3D para rotacionar o atractor."
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"name": "Ajustar os sliders",
|
|
12
|
+
"text": "Modifique os parametros Sigma, Rho e Beta para ver a mudanca para o caos."
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"name": "Observar a divergencia",
|
|
16
|
+
"text": "Veja como a distancia entre as duas trajectorias cresce exponencialmente."
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"name": "Pausar e reiniciar",
|
|
20
|
+
"text": "Use os botoes para pausar a simulacao ou restaurar as configuracoes."
|
|
21
|
+
}
|
|
22
|
+
];
|
|
23
|
+
|
|
24
|
+
const faq = [
|
|
25
|
+
{
|
|
26
|
+
"question": "O que e o Atractor de Lorenz?",
|
|
27
|
+
"answer": "O atractor de Lorenz e um conjunto de solucoes caoticas do sistema de Lorenz."
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"question": "O que e o Efeito Borboleta?",
|
|
31
|
+
"answer": "A sensibilidade extrema as condicoes iniciais em sistemas deterministas nao lineares."
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"question": "O que significam os parametros?",
|
|
35
|
+
"answer": "Sigma representa o numero de Prandtl, Rho o numero de Rayleigh e Beta a relacao geometrica."
|
|
36
|
+
}
|
|
37
|
+
];
|
|
38
|
+
|
|
39
|
+
import { bibliography } from '../bibliography';
|
|
40
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
41
|
+
|
|
42
|
+
export const content: ToolLocaleContent = {
|
|
43
|
+
slug,
|
|
44
|
+
title,
|
|
45
|
+
description,
|
|
46
|
+
ui: {
|
|
47
|
+
"copied": "Copiado",
|
|
48
|
+
"noHistory": "Sem historico",
|
|
49
|
+
"load": "Carregar",
|
|
50
|
+
"delete": "Eliminar",
|
|
51
|
+
"title": "Atractor de Lorenz",
|
|
52
|
+
"subTitle": "Caos Deterministico",
|
|
53
|
+
"parameterControls": "Parametros do Sistema",
|
|
54
|
+
"simulationSpeed": "Velocidade (dt)",
|
|
55
|
+
"initialPerturbation": "Perturbacao Inicial (dx)",
|
|
56
|
+
"trajectories": "Trajectorias",
|
|
57
|
+
"distance": "Distancia de Divergencia",
|
|
58
|
+
"exponentialGrowth": "Divergencia Exponencial",
|
|
59
|
+
"resetDefault": "Reset",
|
|
60
|
+
"clearPath": "Clear",
|
|
61
|
+
"play": "Resume",
|
|
62
|
+
"pause": "Pause",
|
|
63
|
+
"coords": "Coordenadas",
|
|
64
|
+
"divergenceExplanation": "O grafico de divergencia mostra a distancia euclidiana entre as duas trajectorias ao longo do tempo."
|
|
65
|
+
},
|
|
66
|
+
seo: [
|
|
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 = σ * (y - x):</strong> Descreve a taxa de movimento convectivo. O parametro σ (numero de Prandtl) representa a relacao entre a viscosidade do fluido e a condutividade termica.",
|
|
74
|
+
"<strong>dy/dt = x * (ρ - z) - y:</strong> Representa a diferenca de temperatura entre as correntes convectivas ascendentes e descendentes. ρ (numero de Rayleigh) representa a intensidade do aquecimento convectivo.",
|
|
75
|
+
"<strong>dz/dt = x * y - β * z:</strong> Regista a distorcao do perfil de temperatura vertical. β 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)","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)","28.0","Numero de Rayleigh","Principal motor do caos. Abaixo de ρ = 1, a origem e o unico ponto estavel. Em ρ = 28, o sistema e totalmente caotico."],
|
|
86
|
+
["β (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
|
+
],
|
|
103
|
+
faq,
|
|
104
|
+
bibliography,
|
|
105
|
+
howTo,
|
|
106
|
+
schemas: [
|
|
107
|
+
{
|
|
108
|
+
'@context': 'https://schema.org',
|
|
109
|
+
'@type': 'SoftwareApplication',
|
|
110
|
+
name: title,
|
|
111
|
+
description: description,
|
|
112
|
+
applicationCategory: 'ScientificApplication',
|
|
113
|
+
operatingSystem: 'Any',
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
'@context': 'https://schema.org',
|
|
117
|
+
'@type': 'FAQPage',
|
|
118
|
+
mainEntity: faq.map((item) => ({
|
|
119
|
+
'@type': 'Question',
|
|
120
|
+
name: item.question,
|
|
121
|
+
acceptedAnswer: {
|
|
122
|
+
'@type': 'Answer',
|
|
123
|
+
text: item.answer,
|
|
124
|
+
},
|
|
125
|
+
})),
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
'@context': 'https://schema.org',
|
|
129
|
+
'@type': 'HowTo',
|
|
130
|
+
name: title,
|
|
131
|
+
step: howTo.map((step) => ({
|
|
132
|
+
'@type': 'HowToStep',
|
|
133
|
+
name: step.name,
|
|
134
|
+
stepValue: step.name,
|
|
135
|
+
text: step.text,
|
|
136
|
+
})),
|
|
137
|
+
},
|
|
138
|
+
],
|
|
139
|
+
};
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
const slug = 'attraktor-lorenca';
|
|
2
|
+
const title = 'Симулятор хаоса аттрактора Лоренца: эффект бабочки в 3D';
|
|
3
|
+
const description = 'Исследуйте теорию хаоса с помощью этого интерактивного 3D-симулятора аттрактора Лоренца.';
|
|
4
|
+
|
|
5
|
+
const howTo = [
|
|
6
|
+
{
|
|
7
|
+
"name": "Вращение холста",
|
|
8
|
+
"text": "Нажмите и перетащите в 3D-окне, чтобы повернуть аттрактор."
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"name": "Настройка слайдеров",
|
|
12
|
+
"text": "Изменяйте параметры Sigma, Rho и Beta для наблюдения за хаосом."
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"name": "Наблюдение расхождения",
|
|
16
|
+
"text": "Следите за экспоненциальным ростом расстояния между траекториями."
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"name": "Пауза и сброс",
|
|
20
|
+
"text": "Используйте кнопки управления для паузы или сброса параметров."
|
|
21
|
+
}
|
|
22
|
+
];
|
|
23
|
+
|
|
24
|
+
const faq = [
|
|
25
|
+
{
|
|
26
|
+
"question": "Что такое аттрактор Лоренца?",
|
|
27
|
+
"answer": "Аттрактор Лоренца - это хаотическое решение системы дифференциальных уравнений Лоренца."
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"question": "Что такое эффект бабочки?",
|
|
31
|
+
"answer": "Чувствительная зависимость нелинейной системы от начальных условий."
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"question": "Что означают параметры?",
|
|
35
|
+
"answer": "Sigma - число Прандтля, Rho - число Рэлея, Beta - геометрический параметр."
|
|
36
|
+
}
|
|
37
|
+
];
|
|
38
|
+
|
|
39
|
+
import { bibliography } from '../bibliography';
|
|
40
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
41
|
+
|
|
42
|
+
export const content: ToolLocaleContent = {
|
|
43
|
+
slug,
|
|
44
|
+
title,
|
|
45
|
+
description,
|
|
46
|
+
ui: {
|
|
47
|
+
"copied": "Скопировано",
|
|
48
|
+
"noHistory": "Нет истории",
|
|
49
|
+
"load": "Загрузить",
|
|
50
|
+
"delete": "Удалить",
|
|
51
|
+
"title": "Аттрактор Лоренца",
|
|
52
|
+
"subTitle": "Детерминированный хаос",
|
|
53
|
+
"parameterControls": "Параметры системы",
|
|
54
|
+
"simulationSpeed": "Скорость (dt)",
|
|
55
|
+
"initialPerturbation": "Начальное возмущение (dx)",
|
|
56
|
+
"trajectories": "Траектории",
|
|
57
|
+
"distance": "Расстояние расхождения",
|
|
58
|
+
"exponentialGrowth": "Экспоненциальное расхождение",
|
|
59
|
+
"resetDefault": "Reset",
|
|
60
|
+
"clearPath": "Clear",
|
|
61
|
+
"play": "Resume",
|
|
62
|
+
"pause": "Pause",
|
|
63
|
+
"coords": "Координаты",
|
|
64
|
+
"divergenceExplanation": "График расхождения показывает евклидово расстояние между двумя траекториями во времени."
|
|
65
|
+
},
|
|
66
|
+
seo: [
|
|
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 = σ * (y - x):</strong> Описывает скорость конвективного движения. Параметр σ (число Прандтля): отношение вязкости жидкости к теплопроводности.",
|
|
74
|
+
"<strong>dy/dt = x * (ρ - z) - y:</strong> Представляет разность температур между восходящими и нисходящими конвективными потоками. ρ (число Рэлея): интенсивность конвективного нагрева.",
|
|
75
|
+
"<strong>dz/dt = x * y - β * z:</strong> Отслеживает искажение вертикального профиля температуры. β: геометрическое соотношение сторон конвективной ячейки.",
|
|
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
|
+
["σ (Сигма)","10.0","Число Прандтля","Определяет внутреннее трение жидкости. Более высокие значения ускоряют реакцию изменений скорости на температурные градиенты."],
|
|
85
|
+
["ρ (Ро)","28.0","Число Рэлея","Главный движущий фактор хаоса. Ниже ρ = 1 начало координат является единственной устойчивой точкой. При ρ = 28 система полностью хаотична."],
|
|
86
|
+
["β (Бета)","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
|
+
],
|
|
103
|
+
faq,
|
|
104
|
+
bibliography,
|
|
105
|
+
howTo,
|
|
106
|
+
schemas: [
|
|
107
|
+
{
|
|
108
|
+
'@context': 'https://schema.org',
|
|
109
|
+
'@type': 'SoftwareApplication',
|
|
110
|
+
name: title,
|
|
111
|
+
description: description,
|
|
112
|
+
applicationCategory: 'ScientificApplication',
|
|
113
|
+
operatingSystem: 'Any',
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
'@context': 'https://schema.org',
|
|
117
|
+
'@type': 'FAQPage',
|
|
118
|
+
mainEntity: faq.map((item) => ({
|
|
119
|
+
'@type': 'Question',
|
|
120
|
+
name: item.question,
|
|
121
|
+
acceptedAnswer: {
|
|
122
|
+
'@type': 'Answer',
|
|
123
|
+
text: item.answer,
|
|
124
|
+
},
|
|
125
|
+
})),
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
'@context': 'https://schema.org',
|
|
129
|
+
'@type': 'HowTo',
|
|
130
|
+
name: title,
|
|
131
|
+
step: howTo.map((step) => ({
|
|
132
|
+
'@type': 'HowToStep',
|
|
133
|
+
name: step.name,
|
|
134
|
+
stepValue: step.name,
|
|
135
|
+
text: step.text,
|
|
136
|
+
})),
|
|
137
|
+
},
|
|
138
|
+
],
|
|
139
|
+
};
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
const slug = 'lorenzattraktor';
|
|
2
|
+
const title = 'Lorenz attraktor Kaossimulator Fjarilseffekten i 3D';
|
|
3
|
+
const description = 'Utforska kaosteori med denna interaktiva 3D Lorenz-attraktor-simulering. Visualisera fjarilseffekten.';
|
|
4
|
+
|
|
5
|
+
const howTo = [
|
|
6
|
+
{
|
|
7
|
+
"name": "Rotera vyn",
|
|
8
|
+
"text": "Klicka och dra i 3D-visningen for att rotera attraktorn."
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"name": "Justera reglagen",
|
|
12
|
+
"text": "Andra parametrarna Sigma, Rho and Beta for att se kaotiska skiften."
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"name": "Observera avvikelsen",
|
|
16
|
+
"text": "Se hur avstandet mellan de tva banorna vaxer exponentiellt."
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"name": "Pausa och aterstall",
|
|
20
|
+
"text": "Anvand knapparna for att pausa simuleringen eller aterstalla standardvarden."
|
|
21
|
+
}
|
|
22
|
+
];
|
|
23
|
+
|
|
24
|
+
const faq = [
|
|
25
|
+
{
|
|
26
|
+
"question": "Vad ar Lorenz-attraktorn?",
|
|
27
|
+
"answer": "Lorenz-attraktorn ar en uppsattning kaotiska losningar till Lorenz-systemet."
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"question": "Vad ar Fjarilseffekten?",
|
|
31
|
+
"answer": "Det kansliga beroendet av startforhallanden i icke-lineara system."
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"question": "Vad betyder parametrarna?",
|
|
35
|
+
"answer": "Sigma representerar Prandtl-talet, Rho Rayleigh-talet, och Beta ett geometriskt forhallande."
|
|
36
|
+
}
|
|
37
|
+
];
|
|
38
|
+
|
|
39
|
+
import { bibliography } from '../bibliography';
|
|
40
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
41
|
+
|
|
42
|
+
export const content: ToolLocaleContent = {
|
|
43
|
+
slug,
|
|
44
|
+
title,
|
|
45
|
+
description,
|
|
46
|
+
ui: {
|
|
47
|
+
"copied": "Kopierat",
|
|
48
|
+
"noHistory": "Ingen historik",
|
|
49
|
+
"load": "Ladda",
|
|
50
|
+
"delete": "Ta bort",
|
|
51
|
+
"title": "Lorenz-attraktor",
|
|
52
|
+
"subTitle": "Deterministiskt Kaos",
|
|
53
|
+
"parameterControls": "Systemparametrar",
|
|
54
|
+
"simulationSpeed": "Hastighet (dt)",
|
|
55
|
+
"initialPerturbation": "Initial Storning (dx)",
|
|
56
|
+
"trajectories": "Banor",
|
|
57
|
+
"distance": "Divergensavstand",
|
|
58
|
+
"exponentialGrowth": "Exponentiell Divergens",
|
|
59
|
+
"resetDefault": "Reset",
|
|
60
|
+
"clearPath": "Clear",
|
|
61
|
+
"play": "Resume",
|
|
62
|
+
"pause": "Pause",
|
|
63
|
+
"coords": "Koordinater",
|
|
64
|
+
"divergenceExplanation": "Divergensgrafen visar det euklidiska avstandet mellan de tva banorna over tid."
|
|
65
|
+
},
|
|
66
|
+
seo: [
|
|
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 = σ * (y - x):</strong> Beskriver hastigheten for det konvektiva rorelsemonstret. Parametern σ (Prandtl-tal) representerar kvoten av vatskornas viskositet och varmeledningsformaga.",
|
|
74
|
+
"<strong>dy/dt = x * (ρ - z) - y:</strong> Representerar temperaturskillnaden mellan uppatstigande och nedgatende konvektionsstrommar. ρ (Rayleigh-tal) representerar den konvektiva uppvarmningens intensitet.",
|
|
75
|
+
"<strong>dz/dt = x * y - β * z:</strong> Spar distorsionen av det vertikala temperaturprofilet. β 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)","10.0","Prandtl-tal","Bestammer vatskornas inre friktion. Hogre varden paскоrar reaktionen av hastighetsforandringar i forhallande till temperaturgradienter."],
|
|
85
|
+
["ρ (Rho)","28.0","Rayleigh-tal","Huvuddrivaren for kaos. Under ρ = 1 ar ursprunget den enda stabila punkten. Vid ρ = 28 ar systemet fullstandigt kaotiskt."],
|
|
86
|
+
["β (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
|
+
],
|
|
103
|
+
faq,
|
|
104
|
+
bibliography,
|
|
105
|
+
howTo,
|
|
106
|
+
schemas: [
|
|
107
|
+
{
|
|
108
|
+
'@context': 'https://schema.org',
|
|
109
|
+
'@type': 'SoftwareApplication',
|
|
110
|
+
name: title,
|
|
111
|
+
description: description,
|
|
112
|
+
applicationCategory: 'ScientificApplication',
|
|
113
|
+
operatingSystem: 'Any',
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
'@context': 'https://schema.org',
|
|
117
|
+
'@type': 'FAQPage',
|
|
118
|
+
mainEntity: faq.map((item) => ({
|
|
119
|
+
'@type': 'Question',
|
|
120
|
+
name: item.question,
|
|
121
|
+
acceptedAnswer: {
|
|
122
|
+
'@type': 'Answer',
|
|
123
|
+
text: item.answer,
|
|
124
|
+
},
|
|
125
|
+
})),
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
'@context': 'https://schema.org',
|
|
129
|
+
'@type': 'HowTo',
|
|
130
|
+
name: title,
|
|
131
|
+
step: howTo.map((step) => ({
|
|
132
|
+
'@type': 'HowToStep',
|
|
133
|
+
name: step.name,
|
|
134
|
+
stepValue: step.name,
|
|
135
|
+
text: step.text,
|
|
136
|
+
})),
|
|
137
|
+
},
|
|
138
|
+
],
|
|
139
|
+
};
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
const slug = 'lorenz-atractor';
|
|
2
|
+
const title = 'Lorenz Çekeri Kaos Simülatörü: 3D Kelebek Etkisi';
|
|
3
|
+
const description = 'Bu etkilesimli 3D Lorenz cekeri simulasyonu ile kaos teorisini kesfedin. Kelebek etkisini gorsellestirin.';
|
|
4
|
+
|
|
5
|
+
const howTo = [
|
|
6
|
+
{
|
|
7
|
+
"name": "Gorunumu dondurun",
|
|
8
|
+
"text": "Cekeri dondurmek icin 3D ekran uzerinde tiklayip surukleyin."
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"name": "Surguleri ayarlayin",
|
|
12
|
+
"text": "Kaos davranisini gozlemlemek icin Sigma, Rho ve Beta parametrelerini degistirin."
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"name": "Sapmayi izleyin",
|
|
16
|
+
"text": "Iki yorunge arasindaki mesafenin ustel olarak buyumesini izleyin."
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"name": "Duraklat ve sifirla",
|
|
20
|
+
"text": "Simulasyonu duraklatmak veya varsayilanlara sifirlamak icin kontrolleri kullanin."
|
|
21
|
+
}
|
|
22
|
+
];
|
|
23
|
+
|
|
24
|
+
const faq = [
|
|
25
|
+
{
|
|
26
|
+
"question": "Lorenz Çekeri nedir?",
|
|
27
|
+
"answer": "Lorenz cekeri, Lorenz denklem sisteminin kaotik cozumler kumesidir."
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"question": "Kelebek Etkisi nedir?",
|
|
31
|
+
"answer": "Dogrusal olmayan bir sistemde baslangic kosullarina hassas baglilik durumudur."
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"question": "Parametreler neyi temsil eder?",
|
|
35
|
+
"answer": "Sigma Prandtl sayisini, Rho Rayleigh sayisini, Beta ise geometrik en-boy oranini temsil eder."
|
|
36
|
+
}
|
|
37
|
+
];
|
|
38
|
+
|
|
39
|
+
import { bibliography } from '../bibliography';
|
|
40
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
41
|
+
|
|
42
|
+
export const content: ToolLocaleContent = {
|
|
43
|
+
slug,
|
|
44
|
+
title,
|
|
45
|
+
description,
|
|
46
|
+
ui: {
|
|
47
|
+
"copied": "Kopyalandi",
|
|
48
|
+
"noHistory": "Gecmis yok",
|
|
49
|
+
"load": "Yukle",
|
|
50
|
+
"delete": "Sil",
|
|
51
|
+
"title": "Lorenz Çekeri",
|
|
52
|
+
"subTitle": "Belirlenimci Kaos",
|
|
53
|
+
"parameterControls": "Sistem Parametreleri",
|
|
54
|
+
"simulationSpeed": "Simulasyon Hizi (dt)",
|
|
55
|
+
"initialPerturbation": "Baslangic Sapmasi (dx)",
|
|
56
|
+
"trajectories": "Yorungeler",
|
|
57
|
+
"distance": "Sapma Mesafesi",
|
|
58
|
+
"exponentialGrowth": "Ustel Sapma",
|
|
59
|
+
"resetDefault": "Reset",
|
|
60
|
+
"clearPath": "Clear",
|
|
61
|
+
"play": "Resume",
|
|
62
|
+
"pause": "Pause",
|
|
63
|
+
"coords": "Koordinatlar",
|
|
64
|
+
"divergenceExplanation": "Sapma grafigi, iki yorunge arasindaki Oklid mesafesinin zaman icindeki degisimini gosterir."
|
|
65
|
+
},
|
|
66
|
+
seo: [
|
|
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 = σ * (y - x):</strong> Konvektif hareket hizini aciklar. σ parametresi (Prandtl sayisi) akiskanin viskozitesinin isil iletkenligine oranini temsil eder.",
|
|
74
|
+
"<strong>dy/dt = x * (ρ - z) - y:</strong> Yukari ve asagi konveksiyon akimlari arasindaki sicaklik farkini temsil eder. ρ (Rayleigh sayisi) konvektif isinmanin yogunlugunu temsil eder.",
|
|
75
|
+
"<strong>dz/dt = x * y - β * z:</strong> Dikey sicaklik profilinin dogrusal gradyandan sapmasini izler. β, 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)","10.0","Prandtl Sayisi","Akiskanin ic surtusmesini belirler. Daha yuksek degerler, sicaklik gradyanlarina gore hiz degisikliklerinin tepkisini hizlandirir."],
|
|
85
|
+
["ρ (Rho)","28.0","Rayleigh Sayisi","Kaosun ana suruculeri. ρ = 1'in altinda, orijin tek kararli noktadir. ρ = 28'de sistem tamamen kaotiktir."],
|
|
86
|
+
["β (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
|
+
],
|
|
103
|
+
faq,
|
|
104
|
+
bibliography,
|
|
105
|
+
howTo,
|
|
106
|
+
schemas: [
|
|
107
|
+
{
|
|
108
|
+
'@context': 'https://schema.org',
|
|
109
|
+
'@type': 'SoftwareApplication',
|
|
110
|
+
name: title,
|
|
111
|
+
description: description,
|
|
112
|
+
applicationCategory: 'ScientificApplication',
|
|
113
|
+
operatingSystem: 'Any',
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
'@context': 'https://schema.org',
|
|
117
|
+
'@type': 'FAQPage',
|
|
118
|
+
mainEntity: faq.map((item) => ({
|
|
119
|
+
'@type': 'Question',
|
|
120
|
+
name: item.question,
|
|
121
|
+
acceptedAnswer: {
|
|
122
|
+
'@type': 'Answer',
|
|
123
|
+
text: item.answer,
|
|
124
|
+
},
|
|
125
|
+
})),
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
'@context': 'https://schema.org',
|
|
129
|
+
'@type': 'HowTo',
|
|
130
|
+
name: title,
|
|
131
|
+
step: howTo.map((step) => ({
|
|
132
|
+
'@type': 'HowToStep',
|
|
133
|
+
name: step.name,
|
|
134
|
+
stepValue: step.name,
|
|
135
|
+
text: step.text,
|
|
136
|
+
})),
|
|
137
|
+
},
|
|
138
|
+
],
|
|
139
|
+
};
|