@jjlmoya/utils-science 1.21.0 → 1.22.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/package.json +1 -1
  2. package/src/category/index.ts +2 -1
  3. package/src/entries.ts +3 -1
  4. package/src/index.ts +1 -0
  5. package/src/tests/locale_completeness.test.ts +2 -2
  6. package/src/tests/tool_validation.test.ts +2 -2
  7. package/src/tool/lorenz-attractor/bibliography.astro +14 -0
  8. package/src/tool/lorenz-attractor/bibliography.ts +12 -0
  9. package/src/tool/lorenz-attractor/component.astro +146 -0
  10. package/src/tool/lorenz-attractor/entry.ts +27 -0
  11. package/src/tool/lorenz-attractor/i18n/de.ts +113 -0
  12. package/src/tool/lorenz-attractor/i18n/en.ts +185 -0
  13. package/src/tool/lorenz-attractor/i18n/es.ts +113 -0
  14. package/src/tool/lorenz-attractor/i18n/fr.ts +113 -0
  15. package/src/tool/lorenz-attractor/i18n/id.ts +113 -0
  16. package/src/tool/lorenz-attractor/i18n/it.ts +113 -0
  17. package/src/tool/lorenz-attractor/i18n/ja.ts +113 -0
  18. package/src/tool/lorenz-attractor/i18n/ko.ts +113 -0
  19. package/src/tool/lorenz-attractor/i18n/nl.ts +113 -0
  20. package/src/tool/lorenz-attractor/i18n/pl.ts +113 -0
  21. package/src/tool/lorenz-attractor/i18n/pt.ts +113 -0
  22. package/src/tool/lorenz-attractor/i18n/ru.ts +113 -0
  23. package/src/tool/lorenz-attractor/i18n/sv.ts +113 -0
  24. package/src/tool/lorenz-attractor/i18n/tr.ts +113 -0
  25. package/src/tool/lorenz-attractor/i18n/zh.ts +113 -0
  26. package/src/tool/lorenz-attractor/index.ts +9 -0
  27. package/src/tool/lorenz-attractor/logic/LorenzEngine.ts +32 -0
  28. package/src/tool/lorenz-attractor/lorenz-attractor.css +335 -0
  29. package/src/tool/lorenz-attractor/renderer.ts +136 -0
  30. package/src/tool/lorenz-attractor/script.ts +282 -0
  31. package/src/tool/lorenz-attractor/seo.astro +15 -0
  32. package/src/tools.ts +2 -0
@@ -0,0 +1,113 @@
1
+ const slug = 'lorenzattractor';
2
+ const title = 'Lorenz attractor Chaos Simulator Het Vlindereffect in 3D';
3
+ const description = 'Verken chaostheorie met deze interactieve 3D Lorenz-attractor simulatie. Visualiseer het vlindereffect.';
4
+
5
+ const howTo = [
6
+ {
7
+ "name": "Draai het canvas",
8
+ "text": "Klik en sleep in de 3D-viewport om de attractor te roteren."
9
+ },
10
+ {
11
+ "name": "Pas de sliders aan",
12
+ "text": "Wijzig de Sigma, Rho en Beta parameters om de chaos te beinvloeden."
13
+ },
14
+ {
15
+ "name": "Observeer de divergentie",
16
+ "text": "Zie hoe de afstand tussen de twee banen exponentieel groeit."
17
+ },
18
+ {
19
+ "name": "Pauzeer en reset",
20
+ "text": "Gebruik de knoppen om de simulatie te pauzeren of te resetten."
21
+ }
22
+ ];
23
+
24
+ const faq = [
25
+ {
26
+ "question": "Wat is de Lorenz-attractor?",
27
+ "answer": "De Lorenz-attractor is een verzameling chaotische oplossingen van het Lorenz-systeem."
28
+ },
29
+ {
30
+ "question": "Wat is het Vlindereffect?",
31
+ "answer": "De gevoelige afhankelijkheid van beginvoorwaarden in niet-lineaire systemen."
32
+ },
33
+ {
34
+ "question": "Wat betekenen de parameters?",
35
+ "answer": "Sigma is het Prandtl-getal, Rho het Rayleigh-getal en Beta de geometrische verhouding."
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": "Kopieert",
48
+ "noHistory": "Geen geschiedenis",
49
+ "load": "Laden",
50
+ "delete": "Verwijderen",
51
+ "title": "Lorenz-attractor",
52
+ "subTitle": "Deterministische Chaos",
53
+ "parameterControls": "Systeemparameters",
54
+ "simulationSpeed": "Snelheid (dt)",
55
+ "initialPerturbation": "Initiele Verstoring (dx)",
56
+ "trajectories": "Banen",
57
+ "distance": "Divergentie-afstand",
58
+ "exponentialGrowth": "Exponentiele Divergentie",
59
+ "resetDefault": "Reset",
60
+ "clearPath": "Clear",
61
+ "play": "Resume",
62
+ "pause": "Pause",
63
+ "coords": "Coordinaten",
64
+ "divergenceExplanation": "De divergentiegrafiek toont de Euclidische afstand tussen de twee banen over de tijd."
65
+ },
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
+ ],
77
+ faq,
78
+ bibliography,
79
+ howTo,
80
+ schemas: [
81
+ {
82
+ '@context': 'https://schema.org',
83
+ '@type': 'SoftwareApplication',
84
+ name: title,
85
+ description: description,
86
+ applicationCategory: 'ScientificApplication',
87
+ operatingSystem: 'Any',
88
+ },
89
+ {
90
+ '@context': 'https://schema.org',
91
+ '@type': 'FAQPage',
92
+ mainEntity: faq.map((item) => ({
93
+ '@type': 'Question',
94
+ name: item.question,
95
+ acceptedAnswer: {
96
+ '@type': 'Answer',
97
+ text: item.answer,
98
+ },
99
+ })),
100
+ },
101
+ {
102
+ '@context': 'https://schema.org',
103
+ '@type': 'HowTo',
104
+ name: title,
105
+ step: howTo.map((step) => ({
106
+ '@type': 'HowToStep',
107
+ name: step.name,
108
+ stepValue: step.name,
109
+ text: step.text,
110
+ })),
111
+ },
112
+ ],
113
+ };
@@ -0,0 +1,113 @@
1
+ const slug = 'atraktor-lorenza';
2
+ const title = 'Symulator Chaosu Atraktora Lorenza: Efekt Motyla w 3D';
3
+ const description = 'Badaj teorie chaosu z interaktywna symulacja 3D atraktora Lorenza. Zobacz efekt motyla.';
4
+
5
+ const howTo = [
6
+ {
7
+ "name": "Obracaj widok",
8
+ "text": "Kliknij i przeciagnij na obszarze 3D, aby obrocic atraktor."
9
+ },
10
+ {
11
+ "name": "Dostosuj suwaki",
12
+ "text": "Zmieniaj parametry Sigma, Rho i Beta, aby wplynac na zachowanie ukladu."
13
+ },
14
+ {
15
+ "name": "Obserwuj dywergencje",
16
+ "text": "Zobacz, jak odleglosc miedzy dwiema trajektoriami rosnie wykladniczo."
17
+ },
18
+ {
19
+ "name": "Pauza i reset",
20
+ "text": "Uzyj przyciskow kontrolnych, aby zatrzymac lub zresetowac symulacje."
21
+ }
22
+ ];
23
+
24
+ const faq = [
25
+ {
26
+ "question": "Co to jest Atraktor Lorenza?",
27
+ "answer": "Atraktor Lorenza to zbior chaotycznych rozwiazan ukladu rownan Lorenza."
28
+ },
29
+ {
30
+ "question": "Co to jest Efekt Motyla?",
31
+ "answer": "Wrażliwa zaleznosc ukladu od warunkow poczatkowych."
32
+ },
33
+ {
34
+ "question": "Co oznaczaja parametry?",
35
+ "answer": "Sigma to liczba Prandtla, Rho to liczba Rayleigha, a Beta to stosunek geometryczny."
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": "Skopiowano",
48
+ "noHistory": "Brak historii",
49
+ "load": "Wczytaj",
50
+ "delete": "Usun",
51
+ "title": "Atraktor Lorenza",
52
+ "subTitle": "Chaos Deterministyczny",
53
+ "parameterControls": "Parametry Ukladu",
54
+ "simulationSpeed": "Predkosc (dt)",
55
+ "initialPerturbation": "Zaburzenie Poczatkowe (dx)",
56
+ "trajectories": "Trajektorie",
57
+ "distance": "Odleglosc Dywergencji",
58
+ "exponentialGrowth": "Dywergencja Wykladnicza",
59
+ "resetDefault": "Reset",
60
+ "clearPath": "Clear",
61
+ "play": "Resume",
62
+ "pause": "Pause",
63
+ "coords": "Wspolrzedne",
64
+ "divergenceExplanation": "Wykres dywergencji pokazuje odleglosc euklidesowa miedzy dwiema trajektoriami w czasie."
65
+ },
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
+ ],
77
+ faq,
78
+ bibliography,
79
+ howTo,
80
+ schemas: [
81
+ {
82
+ '@context': 'https://schema.org',
83
+ '@type': 'SoftwareApplication',
84
+ name: title,
85
+ description: description,
86
+ applicationCategory: 'ScientificApplication',
87
+ operatingSystem: 'Any',
88
+ },
89
+ {
90
+ '@context': 'https://schema.org',
91
+ '@type': 'FAQPage',
92
+ mainEntity: faq.map((item) => ({
93
+ '@type': 'Question',
94
+ name: item.question,
95
+ acceptedAnswer: {
96
+ '@type': 'Answer',
97
+ text: item.answer,
98
+ },
99
+ })),
100
+ },
101
+ {
102
+ '@context': 'https://schema.org',
103
+ '@type': 'HowTo',
104
+ name: title,
105
+ step: howTo.map((step) => ({
106
+ '@type': 'HowToStep',
107
+ name: step.name,
108
+ stepValue: step.name,
109
+ text: step.text,
110
+ })),
111
+ },
112
+ ],
113
+ };
@@ -0,0 +1,113 @@
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
+ {
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
+ ],
77
+ faq,
78
+ bibliography,
79
+ howTo,
80
+ schemas: [
81
+ {
82
+ '@context': 'https://schema.org',
83
+ '@type': 'SoftwareApplication',
84
+ name: title,
85
+ description: description,
86
+ applicationCategory: 'ScientificApplication',
87
+ operatingSystem: 'Any',
88
+ },
89
+ {
90
+ '@context': 'https://schema.org',
91
+ '@type': 'FAQPage',
92
+ mainEntity: faq.map((item) => ({
93
+ '@type': 'Question',
94
+ name: item.question,
95
+ acceptedAnswer: {
96
+ '@type': 'Answer',
97
+ text: item.answer,
98
+ },
99
+ })),
100
+ },
101
+ {
102
+ '@context': 'https://schema.org',
103
+ '@type': 'HowTo',
104
+ name: title,
105
+ step: howTo.map((step) => ({
106
+ '@type': 'HowToStep',
107
+ name: step.name,
108
+ stepValue: step.name,
109
+ text: step.text,
110
+ })),
111
+ },
112
+ ],
113
+ };
@@ -0,0 +1,113 @@
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
+ {
68
+ "type": "title",
69
+ "text": "Детерминированный хаос: уравнения Лоренца",
70
+ "level": 2
71
+ },
72
+ {
73
+ "type": "paragraph",
74
+ "html": "Система Лоренца - это классическая модель нелинейной динамики и теории хаоса."
75
+ }
76
+ ],
77
+ faq,
78
+ bibliography,
79
+ howTo,
80
+ schemas: [
81
+ {
82
+ '@context': 'https://schema.org',
83
+ '@type': 'SoftwareApplication',
84
+ name: title,
85
+ description: description,
86
+ applicationCategory: 'ScientificApplication',
87
+ operatingSystem: 'Any',
88
+ },
89
+ {
90
+ '@context': 'https://schema.org',
91
+ '@type': 'FAQPage',
92
+ mainEntity: faq.map((item) => ({
93
+ '@type': 'Question',
94
+ name: item.question,
95
+ acceptedAnswer: {
96
+ '@type': 'Answer',
97
+ text: item.answer,
98
+ },
99
+ })),
100
+ },
101
+ {
102
+ '@context': 'https://schema.org',
103
+ '@type': 'HowTo',
104
+ name: title,
105
+ step: howTo.map((step) => ({
106
+ '@type': 'HowToStep',
107
+ name: step.name,
108
+ stepValue: step.name,
109
+ text: step.text,
110
+ })),
111
+ },
112
+ ],
113
+ };
@@ -0,0 +1,113 @@
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
+ {
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
+ ],
77
+ faq,
78
+ bibliography,
79
+ howTo,
80
+ schemas: [
81
+ {
82
+ '@context': 'https://schema.org',
83
+ '@type': 'SoftwareApplication',
84
+ name: title,
85
+ description: description,
86
+ applicationCategory: 'ScientificApplication',
87
+ operatingSystem: 'Any',
88
+ },
89
+ {
90
+ '@context': 'https://schema.org',
91
+ '@type': 'FAQPage',
92
+ mainEntity: faq.map((item) => ({
93
+ '@type': 'Question',
94
+ name: item.question,
95
+ acceptedAnswer: {
96
+ '@type': 'Answer',
97
+ text: item.answer,
98
+ },
99
+ })),
100
+ },
101
+ {
102
+ '@context': 'https://schema.org',
103
+ '@type': 'HowTo',
104
+ name: title,
105
+ step: howTo.map((step) => ({
106
+ '@type': 'HowToStep',
107
+ name: step.name,
108
+ stepValue: step.name,
109
+ text: step.text,
110
+ })),
111
+ },
112
+ ],
113
+ };
@@ -0,0 +1,113 @@
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
+ {
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
+ ],
77
+ faq,
78
+ bibliography,
79
+ howTo,
80
+ schemas: [
81
+ {
82
+ '@context': 'https://schema.org',
83
+ '@type': 'SoftwareApplication',
84
+ name: title,
85
+ description: description,
86
+ applicationCategory: 'ScientificApplication',
87
+ operatingSystem: 'Any',
88
+ },
89
+ {
90
+ '@context': 'https://schema.org',
91
+ '@type': 'FAQPage',
92
+ mainEntity: faq.map((item) => ({
93
+ '@type': 'Question',
94
+ name: item.question,
95
+ acceptedAnswer: {
96
+ '@type': 'Answer',
97
+ text: item.answer,
98
+ },
99
+ })),
100
+ },
101
+ {
102
+ '@context': 'https://schema.org',
103
+ '@type': 'HowTo',
104
+ name: title,
105
+ step: howTo.map((step) => ({
106
+ '@type': 'HowToStep',
107
+ name: step.name,
108
+ stepValue: step.name,
109
+ text: step.text,
110
+ })),
111
+ },
112
+ ],
113
+ };