@jjlmoya/utils-forensic-science 1.7.0 → 1.9.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 +2 -2
- package/src/category/index.ts +21 -16
- package/src/entries.ts +8 -1
- package/src/tests/locale_completeness.test.ts +2 -2
- package/src/tests/tool_validation.test.ts +2 -2
- package/src/tool/time-of-death-algor-mortis-calculator/bibliography.astro +14 -0
- package/src/tool/time-of-death-algor-mortis-calculator/bibliography.ts +7 -0
- package/src/tool/time-of-death-algor-mortis-calculator/component.astro +133 -0
- package/src/tool/time-of-death-algor-mortis-calculator/controller.ts +254 -0
- package/src/tool/time-of-death-algor-mortis-calculator/dom-views.ts +144 -0
- package/src/tool/time-of-death-algor-mortis-calculator/entry.ts +29 -0
- package/src/tool/time-of-death-algor-mortis-calculator/evaluator.ts +34 -0
- package/src/tool/time-of-death-algor-mortis-calculator/i18n/de.ts +139 -0
- package/src/tool/time-of-death-algor-mortis-calculator/i18n/en.ts +136 -0
- package/src/tool/time-of-death-algor-mortis-calculator/i18n/es.ts +136 -0
- package/src/tool/time-of-death-algor-mortis-calculator/i18n/fr.ts +136 -0
- package/src/tool/time-of-death-algor-mortis-calculator/i18n/id.ts +139 -0
- package/src/tool/time-of-death-algor-mortis-calculator/i18n/it.ts +136 -0
- package/src/tool/time-of-death-algor-mortis-calculator/i18n/ja.ts +136 -0
- package/src/tool/time-of-death-algor-mortis-calculator/i18n/ko.ts +136 -0
- package/src/tool/time-of-death-algor-mortis-calculator/i18n/nl.ts +139 -0
- package/src/tool/time-of-death-algor-mortis-calculator/i18n/pl.ts +139 -0
- package/src/tool/time-of-death-algor-mortis-calculator/i18n/pt.ts +136 -0
- package/src/tool/time-of-death-algor-mortis-calculator/i18n/ru.ts +139 -0
- package/src/tool/time-of-death-algor-mortis-calculator/i18n/sv.ts +139 -0
- package/src/tool/time-of-death-algor-mortis-calculator/i18n/tr.ts +139 -0
- package/src/tool/time-of-death-algor-mortis-calculator/i18n/zh.ts +136 -0
- package/src/tool/time-of-death-algor-mortis-calculator/index.ts +11 -0
- package/src/tool/time-of-death-algor-mortis-calculator/logic.test.ts +77 -0
- package/src/tool/time-of-death-algor-mortis-calculator/logic.ts +177 -0
- package/src/tool/time-of-death-algor-mortis-calculator/seo.astro +15 -0
- package/src/tool/time-of-death-algor-mortis-calculator/storage.ts +21 -0
- package/src/tool/time-of-death-algor-mortis-calculator/time-of-death-algor-mortis-calculator.css +596 -0
- package/src/tool/time-of-death-algor-mortis-calculator/ui.ts +60 -0
- package/src/tools.ts +3 -1
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { TimeOfDeathAlgorMortisLocaleContent } from '../entry';
|
|
3
|
+
|
|
4
|
+
const slug = 'calculateur-heure-deces-algor-mortis';
|
|
5
|
+
const title = 'Calculateur de l Heure de Deces par Algor Mortis';
|
|
6
|
+
const description = 'Estimez l intervalle post mortem et l heure probable du deces grace au nomogramme de Henssge et a la thermometrie cadaverique.';
|
|
7
|
+
|
|
8
|
+
const howTo = [
|
|
9
|
+
{ name: 'Saisir les temperatures rectale et ambiante', text: 'Entrez la temperature rectale profonde mesuree sur les lieux et la temperature ambiante moyenne.' },
|
|
10
|
+
{ name: 'Renseigner la masse corporelle et le facteur', text: 'Indiquez le poids corporel en kilogrammes et choisissez le coefficient d isolation vestimentaire ou aquatique.' },
|
|
11
|
+
{ name: 'Indiquer l heure de la prise de mesure', text: 'Saisissez l heure exacte du releve de temperature ou cliquez sur Heure actuelle.' },
|
|
12
|
+
{ name: 'Analyser l intervalle et la courbe thermique', text: 'Consultez l intervalle post mortem calcule, la fenetre horaire a 95 pour cent et la trajectoire de refroidissement.' }
|
|
13
|
+
];
|
|
14
|
+
|
|
15
|
+
const faq = [
|
|
16
|
+
{ question: 'Qu est-ce que l Algor Mortis en medecine legale?', answer: 'L Algor Mortis designe le refroidissement physique progressif du corps apres l arret cardio-circulatoire jusqu a l equilibre thermique ambiant.' },
|
|
17
|
+
{ question: 'Pourquoi le nomogramme de Henssge est-il privilegie?', answer: 'Parce qu il integre le plateau thermique initial et la decroissance bi-exponentielle en fonction du poids et de l isolation vestimentaire.' },
|
|
18
|
+
{ question: 'Quelle est la precision de l estimation thermometrique?', answer: 'Dans des conditions standards controlees, l intervalle de confiance a 95 pour cent est d environ plus ou moins 2.8 heures pendant les dix premieres heures.' },
|
|
19
|
+
{ question: 'Qu est-ce que le plateau thermique post mortem?', answer: 'C est la periode initiale de 1 a 3 heures apres le deces durant laquelle la temperature rectale centrale diminue tres lentement.' }
|
|
20
|
+
];
|
|
21
|
+
|
|
22
|
+
export const content: TimeOfDeathAlgorMortisLocaleContent = {
|
|
23
|
+
slug,
|
|
24
|
+
title,
|
|
25
|
+
description,
|
|
26
|
+
ui: {
|
|
27
|
+
title,
|
|
28
|
+
subtitle: 'Estimateur de l Intervalle Post Mortem et Nomogramme de Henssge',
|
|
29
|
+
disclaimer: 'Outil de simulation pédagogique et académique. Les conclusions médico-légales officielles nécessitent une autopsie judiciaire complète et l analyse des rigidités.',
|
|
30
|
+
unitSystemLabel: 'Système d unités',
|
|
31
|
+
unitMetricLabel: 'Métrique',
|
|
32
|
+
unitImperialLabel: 'Impérial',
|
|
33
|
+
presetsHeader: 'Scénarios médico-légaux types',
|
|
34
|
+
presetCustom: 'Paramètres personnalisés',
|
|
35
|
+
presetNakedCalm: 'Nu dans une pièce calme (20°C)',
|
|
36
|
+
presetDressedIndoor: 'Habillé en intérieur (19.5°C)',
|
|
37
|
+
presetWinterOutdoor: 'Extérieur en hiver (4°C)',
|
|
38
|
+
presetSubmergedWater: 'Immergé dans l eau calme (12°C)',
|
|
39
|
+
presetHeavyDuvet: 'Sous couette épaisse au lit (18°C)',
|
|
40
|
+
inputsHeader: 'Mesures thermiques et paramètres du site',
|
|
41
|
+
rectalTempLabel: 'Temp. rectale centrale',
|
|
42
|
+
ambientTempLabel: 'Temp. ambiante',
|
|
43
|
+
bodyWeightLabel: 'Poids corporel',
|
|
44
|
+
factorLabel: 'Facteur correctif environnemental',
|
|
45
|
+
measurementTimeLabel: 'Heure de la mesure',
|
|
46
|
+
factorNaked: 'Nu dans l air calme',
|
|
47
|
+
factorLightClothes: 'Vêtements légers (1-2 couches)',
|
|
48
|
+
factorStandardClothes: 'Vêtements standards (3-4 couches)',
|
|
49
|
+
factorHeavyWinter: 'Vêtements chauds d hiver',
|
|
50
|
+
factorLightBlanket: 'Lit avec couverture légère',
|
|
51
|
+
factorHeavyDuvet: 'Lit avec couette en duvet épaisse',
|
|
52
|
+
factorStillWater: 'Immergé dans l eau stagnante',
|
|
53
|
+
factorFlowingWater: 'Immergé dans l eau courante froide',
|
|
54
|
+
factorWetClothing: 'Vêtements mouillés avec vent',
|
|
55
|
+
factorMovingAir: 'Air en mouvement avec ventilateur',
|
|
56
|
+
resultsHeader: 'Analyse de l intervalle post mortem',
|
|
57
|
+
estimatedPmiLabel: 'Temps écoulé depuis le décès',
|
|
58
|
+
deathWindowLabel: 'Fenêtre horaire probable',
|
|
59
|
+
confidenceMarginLabel: 'Marge de confiance (95%)',
|
|
60
|
+
coolingPhaseLabel: 'Phase thermodynamique',
|
|
61
|
+
coolingRateLabel: 'Taux instantané de perte thermique',
|
|
62
|
+
glaisterEstimateLabel: 'Comparaison avec règle de Glaister',
|
|
63
|
+
chartHeader: 'Courbe de refroidissement bi exponentielle de Henssge',
|
|
64
|
+
chartXAxis: 'Heures post mortem',
|
|
65
|
+
chartYAxis: 'Température corporelle',
|
|
66
|
+
chartNowMarker: 'Mesure effectuée',
|
|
67
|
+
chartPlateauMarker: 'Plateau initial',
|
|
68
|
+
phasePlateau: 'Phase de plateau',
|
|
69
|
+
phaseDescent: 'Décroissance exponentielle',
|
|
70
|
+
phaseEquilibrium: 'Équilibre thermique',
|
|
71
|
+
phaseHyperthermia: 'Alerte hyperthermie pré-mortem',
|
|
72
|
+
hoursUnit: 'heures',
|
|
73
|
+
minutesUnit: 'min',
|
|
74
|
+
celsiusUnit: '°C',
|
|
75
|
+
fahrenheitUnit: '°F',
|
|
76
|
+
kgUnit: 'kg',
|
|
77
|
+
lbUnit: 'lb',
|
|
78
|
+
celsiusPerHour: '°C/h',
|
|
79
|
+
fahrenheitPerHour: '°F/h',
|
|
80
|
+
resetBtn: 'Réinitialiser',
|
|
81
|
+
nowBtn: 'Heure actuelle',
|
|
82
|
+
coreThermometerLabel: 'Température centrale',
|
|
83
|
+
baselineAmbientLabel: 'Seuil ambiant',
|
|
84
|
+
referenceBodyTempLabel: 'Température référence'
|
|
85
|
+
},
|
|
86
|
+
seo: [
|
|
87
|
+
{ type: 'title', text: 'Principes Physiques du Refroidissement Cadavérique et Datation de la Mort', level: 2 },
|
|
88
|
+
{ type: 'paragraph', html: 'L estimation du délai post mortem représente une des problématiques majeures de la médecine légale moderne lors de la découverte d un corps. <strong>Algor Mortis</strong> caractérise la déperdition thermique progressive subie par le corps humain dès l arrêt circulatoire irréversible jusqu à l établissement d un équilibre thermique total avec le milieu environnant. Grâce à la mesure de la température rectale profonde et aux lois physiques de la thermodynamique, les praticiens légistes sont en mesure de circonscrire scientifiquement la fenêtre temporelle du décès.' },
|
|
89
|
+
{ type: 'diagnostic', variant: 'info', title: 'Comportement Thermodynamique Post Mortem', html: 'Le refroidissement du cadavre ne suit pas une trajectoire rectiligne uniforme. Il débute par une phase de latence essentielle appelée <em>plateau thermique</em>, suivie d une chute exponentielle rapide puis d une décélération progressive en asymptote.' },
|
|
90
|
+
{ type: 'stats', columns: 3, items: [
|
|
91
|
+
{ value: '37.2°C', label: 'Référence centrale normothermique' },
|
|
92
|
+
{ value: '±2.8 h', label: 'Marge statistique à 95%' },
|
|
93
|
+
{ value: 'Bi Exponentiel', label: 'Modèle mathématique de Henssge' }
|
|
94
|
+
] },
|
|
95
|
+
{ type: 'title', text: 'L Equation Bi Exponentielle de Claus Henssge', level: 3 },
|
|
96
|
+
{ type: 'paragraph', html: 'Les formules linéaires historiques simplifiées, comme la règle de Glaister, supposaient une perte constante de 0.83 degré Celsius par heure. Cependant, cette méthode empirique sommaire néglige la corpulence, l épaisseur des vêtements et l existence incontournable du plateau thermique initial.' },
|
|
97
|
+
{ type: 'code', ariaLabel: 'Equation de Henssge', code: 'Q = (T_rectale - T_ambiante) / (37.2 - T_ambiante)\nQ = 1.25 * exp(-k * t) - 0.25 * exp(-5 * k * t)\nk = 1.2815 / (PoidsCorporel^0.625 * FacteurCorrection) - 0.0284' },
|
|
98
|
+
{ type: 'paragraph', html: 'Le professeur Claus Henssge a formulé une équation transcendantale à deux exponentielles décrivant simultanément le gradient de surface cutané et la capacité thermique du noyau viscéral profond, garantissant une estimation médico-légale très robuste.' },
|
|
99
|
+
{ type: 'title', text: 'Facteurs de Correction Environnementaux et Vestimentaires', level: 3 },
|
|
100
|
+
{ type: 'paragraph', html: 'Le taux de transfert thermique par conduction, convection et rayonnement dépend étroitement de la corpulence, des courants d air ambiants et des couches de tissus protecteurs.' },
|
|
101
|
+
{ type: 'table', headers: ['Situation sur la Scène', 'Facteur Cf', 'Impact Physique'], rows: [
|
|
102
|
+
['Nu dans l air calme', '1.0', 'Rayonnement standard et convection naturelle libre'],
|
|
103
|
+
['Vêtements légers (1-2 couches)', '1.1', 'Légère réduction de la perte convective cutanée'],
|
|
104
|
+
['Vêtements de ville normaux (3-4 couches)', '1.2', 'Barrière thermique modérée sur le tronc'],
|
|
105
|
+
['Vêtements chauds d hiver', '1.4', 'Isolation élevée piégeant l air chaud'],
|
|
106
|
+
['Sous une couette épaisse au lit', '1.8', 'Forte rétention thermique retardant le refroidissement'],
|
|
107
|
+
['Immergé dans l eau calme', '0.5', 'Conductivité thermique de l eau 24 fois plus forte que l air'],
|
|
108
|
+
['Immergé dans l eau courante froide', '0.35', 'Convection forcée accélérant la perte de chaleur']
|
|
109
|
+
] },
|
|
110
|
+
{ type: 'title', text: 'Phases Thermodynamiques du Refroidissement', level: 3 },
|
|
111
|
+
{ type: 'comparative', columns: 2, items: [
|
|
112
|
+
{ title: 'Le Plateau Thermique Initial', description: 'Pendant les 1 à 3 premières heures, la température rectale profonde varie peu pendant que la peau se refroidit.', points: ['Mise en place du gradient noyau écorce', 'Sous-estimation par les règles linéaires', 'Modélisé par le terme -0.25 exp(-5kt)'] },
|
|
113
|
+
{ title: 'La Décroissance Exponentielle Rapide', description: 'Une fois le gradient établi, la déperdition calorique se produit à vitesse maximale dépendante du poids.', highlight: true, points: ['Sensibilité analytique maximale', 'Intervalle de confiance le plus étroit', 'Fenêtre idéale pour la thermométrie'] }
|
|
114
|
+
] },
|
|
115
|
+
{ type: 'title', text: 'Recommandations Pratiques de Prise de Température', level: 3 },
|
|
116
|
+
{ type: 'list', items: [
|
|
117
|
+
'<strong>Mesurer la température rectale profonde:</strong> introduire la sonde thermométrique étalonnée à 8 ou 10 cm dans le rectum.',
|
|
118
|
+
'<strong>Mesurer la température ambiante près du corps:</strong> placer le capteur à moins de 10 cm du cadavre.',
|
|
119
|
+
'<strong>Vérifier la stabilité thermique du lieu:</strong> noter le chauffage, les fenêtres ouvertes ou l ensoleillement direct.',
|
|
120
|
+
'<strong>Évaluer l humidité des vêtements:</strong> les textiles mouillés augmentent fortement l évaporation.'
|
|
121
|
+
] },
|
|
122
|
+
{ type: 'summary', title: 'Synthèse Méthodologique', items: [
|
|
123
|
+
'Le nomogramme de Henssge est le standard scientifique validé pour la datation de la mort.',
|
|
124
|
+
'Toujours exprimer le résultat sous la forme d un intervalle probabiliste avec écarts-types.',
|
|
125
|
+
'Croiser impérativement la thermométrie avec la rigidité cadavérique et les lividités.'
|
|
126
|
+
] }
|
|
127
|
+
],
|
|
128
|
+
faq,
|
|
129
|
+
bibliography,
|
|
130
|
+
howTo,
|
|
131
|
+
schemas: [
|
|
132
|
+
{ '@context': 'https://schema.org', '@type': 'SoftwareApplication', name: title, description, applicationCategory: 'ForensicApplication', operatingSystem: 'Any' },
|
|
133
|
+
{ '@context': 'https://schema.org', '@type': 'FAQPage', mainEntity: faq.map((item) => ({ '@type': 'Question', name: item.question, acceptedAnswer: { '@type': 'Answer', text: item.answer } })) },
|
|
134
|
+
{ '@context': 'https://schema.org', '@type': 'HowTo', name: title, step: howTo.map((step) => ({ '@type': 'HowToStep', name: step.name, text: step.text })) }
|
|
135
|
+
]
|
|
136
|
+
};
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { TimeOfDeathAlgorMortisLocaleContent } from '../entry';
|
|
3
|
+
|
|
4
|
+
const slug = 'kalkulator-waktu-kematian-algor-mortis';
|
|
5
|
+
const title = 'Kalkulator Waktu Kematian Algor Mortis';
|
|
6
|
+
const description = 'Perkirakan interval pasca kematian dan waktu kematian menggunakan metode nomogram Henssge dan penurunan suhu tubuh.';
|
|
7
|
+
|
|
8
|
+
const howTo = [
|
|
9
|
+
{ name: 'Masukkan Suhu Rektal dan Lingkungan', text: 'Ketikkan suhu rektal inti yang diukur di tempat kejadian perkara beserta suhu udara sekitar.' },
|
|
10
|
+
{ name: 'Tentukan Berat Badan dan Faktor Koreksi', text: 'Masukkan berat tubuh dalam kilogram dan pilih faktor koreksi isolasi pakaian atau perendaman air.' },
|
|
11
|
+
{ name: 'Tentukan Waktu Pengukuran Suhu', text: 'Masukkan jam dan menit saat suhu diukur atau klik Waktu Sekarang.' },
|
|
12
|
+
{ name: 'Analisis Interval dan Kurva Pendinginan', text: 'Tinjau perkiraan waktu sejak kematian, rentang kepastian 95 persen, dan grafik termal.' }
|
|
13
|
+
];
|
|
14
|
+
|
|
15
|
+
const faq = [
|
|
16
|
+
{ question: 'Apa itu Algor Mortis dalam kedokteran forensik?', answer: 'Algor Mortis adalah proses penurunan suhu tubuh secara bertahap setelah kematian hingga mencapai keseimbangan dengan suhu lingkungan.' },
|
|
17
|
+
{ question: 'Mengapa nomogram Henssge lebih disukai daripada rumus linier?', answer: 'Karena memperhitungkan fase dataran tinggi suhu awal dan kurva pendinginan eksponensial ganda berdasarkan berat badan dan isolasi pakaian.' },
|
|
18
|
+
{ question: 'Seberapa akurat perkiraan waktu kematian berbasis suhu?', answer: 'Dalam kondisi standar yang terkontrol, margin kepercayaan 95 persen adalah sekitar kurang lebih 2.8 jam pada 10 jam pertama.' },
|
|
19
|
+
{ question: 'Apa yang dimaksud dengan dataran tinggi suhu pasca kematian?', answer: 'Dataran tinggi suhu adalah periode 1 hingga 3 jam pertama setelah kematian saat suhu rektal inti turun sangat lambat.' }
|
|
20
|
+
];
|
|
21
|
+
|
|
22
|
+
export const content: TimeOfDeathAlgorMortisLocaleContent = {
|
|
23
|
+
slug,
|
|
24
|
+
title,
|
|
25
|
+
description,
|
|
26
|
+
ui: {
|
|
27
|
+
title,
|
|
28
|
+
subtitle: 'Estimator Interval Pasca Kematian dan Nomogram Pendinginan',
|
|
29
|
+
disclaimer: 'Hanya untuk simulasi akademik dan edukasi. Kesimpulan forensik resmi memerlukan otopsi komprehensif dan evaluasi lebam mayat.',
|
|
30
|
+
unitSystemLabel: 'Sistem Satuan',
|
|
31
|
+
unitMetricLabel: 'Metrik',
|
|
32
|
+
unitImperialLabel: 'Imperial',
|
|
33
|
+
presetsHeader: 'Skenario Forensik Standar',
|
|
34
|
+
presetCustom: 'Parameter Khusus',
|
|
35
|
+
presetNakedCalm: 'Tanpa busana di ruangan tenang (20°C)',
|
|
36
|
+
presetDressedIndoor: 'Berpakaian di dalam ruangan (19.5°C)',
|
|
37
|
+
presetWinterOutdoor: 'Luar ruangan musim dingin (4°C)',
|
|
38
|
+
presetSubmergedWater: 'Tenggelam dalam air tenang (12°C)',
|
|
39
|
+
presetHeavyDuvet: 'Di bawah selimut tebal di ranjang (18°C)',
|
|
40
|
+
inputsHeader: 'Parameter Lokasi dan Pengukuran Termal',
|
|
41
|
+
rectalTempLabel: 'Suhu Rektal Inti',
|
|
42
|
+
ambientTempLabel: 'Suhu Lingkungan',
|
|
43
|
+
bodyWeightLabel: 'Berat Badan',
|
|
44
|
+
factorLabel: 'Faktor Koreksi Lingkungan',
|
|
45
|
+
measurementTimeLabel: 'Waktu Pengukuran',
|
|
46
|
+
factorNaked: 'Tanpa busana di udara tenang',
|
|
47
|
+
factorLightClothes: 'Pakaian tipis (1-2 lapis)',
|
|
48
|
+
factorStandardClothes: 'Pakaian standar harian (3-4 lapis)',
|
|
49
|
+
factorHeavyWinter: 'Pakaian musim dingin tebal',
|
|
50
|
+
factorLightBlanket: 'Ranjang dengan selimut tipis',
|
|
51
|
+
factorHeavyDuvet: 'Ranjang dengan selimut bulu tebal',
|
|
52
|
+
factorStillWater: 'Tenggelam dalam air tenang',
|
|
53
|
+
factorFlowingWater: 'Tenggelam dalam air dingin mengalir',
|
|
54
|
+
factorWetClothing: 'Pakaian basah berangin',
|
|
55
|
+
factorMovingAir: 'Udara bergerak dengan kipas angin',
|
|
56
|
+
resultsHeader: 'Analisis Interval Pasca Kematian',
|
|
57
|
+
estimatedPmiLabel: 'Perkiraan Waktu Sejak Kematian',
|
|
58
|
+
deathWindowLabel: 'Rentang Waktu Kematian',
|
|
59
|
+
confidenceMarginLabel: 'Margin Kepercayaan (95%)',
|
|
60
|
+
coolingPhaseLabel: 'Fase Termodinamika',
|
|
61
|
+
coolingRateLabel: 'Laju Kehilangan Panas Saat Ini',
|
|
62
|
+
glaisterEstimateLabel: 'Perbandingan Rumus Glaister',
|
|
63
|
+
chartHeader: 'Lintasan Pendinginan Eksponensial Ganda Henssge',
|
|
64
|
+
chartXAxis: 'Jam Pasca Kematian',
|
|
65
|
+
chartYAxis: 'Suhu Tubuh Inti',
|
|
66
|
+
chartNowMarker: 'Nilai Pengukuran',
|
|
67
|
+
chartPlateauMarker: 'Dataran Awal',
|
|
68
|
+
phasePlateau: 'Fase Dataran Tinggi',
|
|
69
|
+
phaseDescent: 'Penurunan Eksponensial',
|
|
70
|
+
phaseEquilibrium: 'Keseimbangan Termal',
|
|
71
|
+
phaseHyperthermia: 'Peringatan Hipertermia',
|
|
72
|
+
hoursUnit: 'jam',
|
|
73
|
+
minutesUnit: 'mnt',
|
|
74
|
+
celsiusUnit: '°C',
|
|
75
|
+
fahrenheitUnit: '°F',
|
|
76
|
+
kgUnit: 'kg',
|
|
77
|
+
lbUnit: 'lb',
|
|
78
|
+
celsiusPerHour: '°C/jam',
|
|
79
|
+
fahrenheitPerHour: '°F/jam',
|
|
80
|
+
resetBtn: 'Atur Ulang',
|
|
81
|
+
nowBtn: 'Waktu Sekarang',
|
|
82
|
+
coreThermometerLabel: 'Suhu Inti',
|
|
83
|
+
baselineAmbientLabel: 'Batas Lingkungan',
|
|
84
|
+
referenceBodyTempLabel: 'Suhu Normal'
|
|
85
|
+
},
|
|
86
|
+
seo: [
|
|
87
|
+
{ type: 'title', text: 'Prinsip Fisika Pendinginan Mayat dan Estimasi Saat Kematian', level: 2 },
|
|
88
|
+
{ type: 'paragraph', html: 'Menentukan interval pasca kematian (Postmortem Interval atau PMI) merupakan salah satu tujuan utama kedokteran forensik dalam proses penyelidikan hukum dan kriminalistik. <strong>Algor Mortis</strong> merujuk pada penurunan suhu tubuh secara bertahap setelah berhentinya sirkulasi darah dan aktivitas metabolisme seluler sampai mencapai keseimbangan termal dengan lingkungan sekitar. Melalui pengukuran suhu rektal dalam yang akurat dan penerapan hukum termodinamika pelepasan panas, dokter forensik dan penyidik dapat merekonstruksi rentang waktu terjadinya kematian secara objektif dan ilmiah.' },
|
|
89
|
+
{ type: 'paragraph', html: 'Pelepasan energi kalor dari dalam tubuh terjadi melalui mekanisme radiasi termal, konduksi kontak langsung, konveksi udara bebas, dan evaporasi kelembaban kulit. Karena organ dalam mentransfer panas terlebih dahulu ke lapisan jaringan terluar, penurunan suhu membentuk gradien fisis yang kompleks.' },
|
|
90
|
+
{ type: 'diagnostic', variant: 'info', title: 'Karakteristik Termodinamika Mayat', html: 'Pendinginan tubuh manusia setelah meninggal tidak berlangsung secara linier sejak menit pertama. Terdapat fase perlambatan awal yang dikenal sebagai <em>dataran tinggi suhu</em>, diikuti oleh penurunan eksponensial yang curam, dan akhirnya mendatar saat mendekati suhu lingkungan.' },
|
|
91
|
+
{ type: 'stats', columns: 3, items: [
|
|
92
|
+
{ value: '37.2°C', label: 'Referensi Inti Normotermal' },
|
|
93
|
+
{ value: '±2.8 jam', label: 'Margin Kepastian 10 Jam Pertama' },
|
|
94
|
+
{ value: 'Eksponensial Ganda', label: 'Model Matematis Henssge' }
|
|
95
|
+
] },
|
|
96
|
+
{ type: 'title', text: 'Persamaan Eksponensial Ganda Claus Henssge', level: 3 },
|
|
97
|
+
{ type: 'paragraph', html: 'Aturan perkiraan linier tradisional seperti rumus Glaister mengasumsikan penurunan suhu yang konstan sekitar 0.83 derajat Celsius per jam. Namun, pendekatan linier sederhana tersebut memiliki banyak kelemahan karena mengabaikan isolasi pakaian, massa badan, dan fenomena dataran tinggi suhu awal.' },
|
|
98
|
+
{ type: 'code', ariaLabel: 'Rumus Henssge', code: 'Q = (T_rektal - T_lingkungan) / (37.2 - T_lingkungan)\nQ = 1.25 * exp(-k * t) - 0.25 * exp(-5 * k * t)\nk = 1.2815 / (BeratBadan^0.625 * FaktorKoreksi) - 0.0284' },
|
|
99
|
+
{ type: 'paragraph', html: 'Profesor Claus Henssge merumuskan persamaan matematika dengan dua fungsi eksponensial yang memperhitungkan gradien pendinginan permukaan kulit terluar dan pelepasan energi panas organ dalam secara simultan. Model komputasi ini memberikan estimasi waktu yang jauh lebih dapat diandalkan di pengadilan.' },
|
|
100
|
+
{ type: 'paragraph', html: 'Koefisien termal Q tanpa dimensi merepresentasikan proporsi sisa kalor tubuh relatif terhadap suhu lingkungan dasar saat kematian. Formulasi matematis ini memastikan perhitungan tetap stabil dan presisi di berbagai kondisi iklim.' },
|
|
101
|
+
{ type: 'title', text: 'Faktor Koreksi Lingkungan dan Pakaian', level: 3 },
|
|
102
|
+
{ type: 'paragraph', html: 'Laju perpindahan panas tubuh sangat dipengaruhi oleh berat badan, konveksi udara di ruangan, kelembaban, serta lapisan bahan pakaian yang menutupi tubuh jenazah.' },
|
|
103
|
+
{ type: 'table', headers: ['Kondisi Tempat Kejadian', 'Nilai Faktor Cf', 'Pengaruh Fisik'], rows: [
|
|
104
|
+
['Tanpa busana di udara tenang', '1.0', 'Radiasi dan konveksi alami standar'],
|
|
105
|
+
['Pakaian tipis (1-2 lapis)', '1.1', 'Sedikit mengurangi pelepasan panas kulit'],
|
|
106
|
+
['Pakaian harian biasa (3-4 lapis)', '1.2', 'Hambatan termal sedang pada batang tubuh'],
|
|
107
|
+
['Pakaian musim dingin tebal', '1.4', 'Isolasi tinggi yang memerangkap udara hangat'],
|
|
108
|
+
['Di bawah selimut tebal di ranjang', '1.8', 'Retensi panas sangat tinggi dan memperlambat pendinginan'],
|
|
109
|
+
['Tenggelam dalam air tenang', '0.5', 'Konduktivitas termal air 24 kali lebih tinggi dari udara'],
|
|
110
|
+
['Tenggelam dalam air dingin mengalir', '0.35', 'Konveksi paksa cairan mempercepat pelepasan kalor']
|
|
111
|
+
] },
|
|
112
|
+
{ type: 'title', text: 'Fase Termodinamika Pendinginan Tubuh', level: 3 },
|
|
113
|
+
{ type: 'comparative', columns: 2, items: [
|
|
114
|
+
{ title: 'Dataran Tinggi Suhu Awal', description: 'Selama 1 sampai 3 jam pertama setelah kematian, suhu rektal inti hampir tidak berubah saat gradien suhu ke kulit mulai terbentuk.', points: ['Pembentukan gradien inti ke permukaan', 'Rumus linier meremehkan durasi di fase ini', 'Dimodelkan oleh suku -0.25 exp(-5kt)'] },
|
|
115
|
+
{ title: 'Penurunan Eksponensial Cepat', description: 'Setelah gradien terbentuk, kalor dilepaskan secara konstan pada laju yang ditentukan oleh massa badan.', highlight: true, points: ['Sensitivitas analisis tertinggi', 'Interval keyakinan statistik paling sempit', 'Jendela optimal untuk metode termometri'] }
|
|
116
|
+
] },
|
|
117
|
+
{ type: 'title', text: 'Panduan Pengukuran Suhu Mayat di Tempat Kejadian', level: 3 },
|
|
118
|
+
{ type: 'paragraph', html: 'Kepatuhan terhadap protokol standar pengukuran suhu sangat penting dalam investigasi medikolegal. Kesalahan penempatan sensor atau fluktuasi suhu ruangan yang tidak tercatat dapat mengubah estimasi rentang waktu secara signifikan.' },
|
|
119
|
+
{ type: 'list', items: [
|
|
120
|
+
'<strong>Ukur suhu rektal inti dalam:</strong> masukkan probe termistor digital yang terkalibrasi setidaknya 8 sampai 10 cm ke dalam rektum.',
|
|
121
|
+
'<strong>Ukur suhu lingkungan di dekat mayat:</strong> letakkan sensor tidak lebih dari 10 cm dari tubuh jenazah.',
|
|
122
|
+
'<strong>Dokumentasikan kestabilan ruangan:</strong> catat adanya pendingin ruangan, jendela terbuka, atau sinar matahari langsung.',
|
|
123
|
+
'<strong>Periksa kebasahan pakaian:</strong> pakaian basah meningkatkan pendinginan evaporatif secara drastis.'
|
|
124
|
+
] },
|
|
125
|
+
{ type: 'summary', title: 'Ringkasan Metodologi', items: [
|
|
126
|
+
'Nomogram Henssge adalah standar internasional yang diakui untuk estimasi waktu kematian termometrik.',
|
|
127
|
+
'Selalu laporkan hasil dalam bentuk rentang waktu dengan deviasi standar, bukan satu titik waktu mutlak.',
|
|
128
|
+
'Kombinasikan pemeriksaan suhu dengan rigor mortis, livor mortis, dan eksitabilitas otot supravital.'
|
|
129
|
+
] }
|
|
130
|
+
],
|
|
131
|
+
faq,
|
|
132
|
+
bibliography,
|
|
133
|
+
howTo,
|
|
134
|
+
schemas: [
|
|
135
|
+
{ '@context': 'https://schema.org', '@type': 'SoftwareApplication', name: title, description, applicationCategory: 'ForensicApplication', operatingSystem: 'Any' },
|
|
136
|
+
{ '@context': 'https://schema.org', '@type': 'FAQPage', mainEntity: faq.map((item) => ({ '@type': 'Question', name: item.question, acceptedAnswer: { '@type': 'Answer', text: item.answer } })) },
|
|
137
|
+
{ '@context': 'https://schema.org', '@type': 'HowTo', name: title, step: howTo.map((step) => ({ '@type': 'HowToStep', name: step.name, text: step.text })) }
|
|
138
|
+
]
|
|
139
|
+
};
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { TimeOfDeathAlgorMortisLocaleContent } from '../entry';
|
|
3
|
+
|
|
4
|
+
const slug = 'calcolatore-ora-del-decesso-algor-mortis';
|
|
5
|
+
const title = 'Calcolatore dell Ora del Decesso per Algor Mortis';
|
|
6
|
+
const description = 'Stima l intervallo post mortem e l ora probabile della morte mediante il nomogramma di Henssge e il raffreddamento cadaverico.';
|
|
7
|
+
|
|
8
|
+
const howTo = [
|
|
9
|
+
{ name: 'Inserire temperatura rettale e ambientale', text: 'Immettere la temperatura rettale profonda misurata sulla scena e la temperatura media dell ambiente.' },
|
|
10
|
+
{ name: 'Impostare peso corporeo e fattore correttivo', text: 'Indicare il peso in chilogrammi e selezionare il fattore di correzione per indumenti o immersione in acqua.' },
|
|
11
|
+
{ name: 'Specificare l orario di rilevamento', text: 'Inserire l orario esatto della misurazione termica o selezionare Ora attuale.' },
|
|
12
|
+
{ name: 'Analizzare l intervallo post mortem', text: 'Consultare l intervallo stimato, la finestra oraria con confidenza al 95 per cento e la curva di raffreddamento.' }
|
|
13
|
+
];
|
|
14
|
+
|
|
15
|
+
const faq = [
|
|
16
|
+
{ question: 'Che cos è l Algor Mortis in medicina legale?', answer: 'L Algor Mortis è il progressivo raffreddamento termico del cadavere dopo l arresto cardiocircolatorio fino all equilibrio con l ambiente circostante.' },
|
|
17
|
+
{ question: 'Perché si preferisce il nomogramma di Henssge?', answer: 'Perché modella accuratamente il plateau termico iniziale e il decadimento bi-esponenziale in base al peso corporeo e all isolamento termico.' },
|
|
18
|
+
{ question: 'Quanto è precisa la stima termometrica della morte?', answer: 'In condizioni standard controllate, l intervallo di confidenza al 95 per cento è di circa più o meno 2.8 ore nelle prime dieci ore.' },
|
|
19
|
+
{ question: 'Cosa si intende per plateau termico post mortem?', answer: 'È il periodo iniziale di 1 a 3 ore dopo il decesso durante il quale la temperatura rettale centrale scende molto lentamente.' }
|
|
20
|
+
];
|
|
21
|
+
|
|
22
|
+
export const content: TimeOfDeathAlgorMortisLocaleContent = {
|
|
23
|
+
slug,
|
|
24
|
+
title,
|
|
25
|
+
description,
|
|
26
|
+
ui: {
|
|
27
|
+
title,
|
|
28
|
+
subtitle: 'Stimatore dell Intervallo Post Mortem e Nomogramma Termico',
|
|
29
|
+
disclaimer: 'Simulazione puramente didattica e formativa. Le conclusioni peritali ufficiali richiedono l autopsia giudiziaria e la valutazione della rigidità cadaverica.',
|
|
30
|
+
unitSystemLabel: 'Sistema di unità',
|
|
31
|
+
unitMetricLabel: 'Metrico',
|
|
32
|
+
unitImperialLabel: 'Imperiale',
|
|
33
|
+
presetsHeader: 'Scenari medico-legali tipici',
|
|
34
|
+
presetCustom: 'Parametri personalizzati',
|
|
35
|
+
presetNakedCalm: 'Nudo in stanza tranquilla (20°C)',
|
|
36
|
+
presetDressedIndoor: 'Vestito in ambienti interni (19.5°C)',
|
|
37
|
+
presetWinterOutdoor: 'All aperto in inverno (4°C)',
|
|
38
|
+
presetSubmergedWater: 'Immerso in acqua calma (12°C)',
|
|
39
|
+
presetHeavyDuvet: 'Sotto piumone pesante a letto (18°C)',
|
|
40
|
+
inputsHeader: 'Misurazioni termiche e parametri di scena',
|
|
41
|
+
rectalTempLabel: 'Temp. rettale profonda',
|
|
42
|
+
ambientTempLabel: 'Temp. ambiente',
|
|
43
|
+
bodyWeightLabel: 'Peso corporeo',
|
|
44
|
+
factorLabel: 'Fattore correttivo ambientale',
|
|
45
|
+
measurementTimeLabel: 'Ora della misurazione',
|
|
46
|
+
factorNaked: 'Nudo in aria calma',
|
|
47
|
+
factorLightClothes: 'Abiti leggeri (1-2 strati)',
|
|
48
|
+
factorStandardClothes: 'Abiti standard da città (3-4 strati)',
|
|
49
|
+
factorHeavyWinter: 'Indumenti invernali pesanti',
|
|
50
|
+
factorLightBlanket: 'Letto con coperta leggera',
|
|
51
|
+
factorHeavyDuvet: 'Letto con piumone spesso',
|
|
52
|
+
factorStillWater: 'Immerso in acqua stagnante',
|
|
53
|
+
factorFlowingWater: 'Immerso in acqua corrente fredda',
|
|
54
|
+
factorWetClothing: 'Abiti bagnati esposti al vento',
|
|
55
|
+
factorMovingAir: 'Aria in movimento con ventilatore',
|
|
56
|
+
resultsHeader: 'Analisi dell intervallo post mortem',
|
|
57
|
+
estimatedPmiLabel: 'Tempo trascorso dalla morte',
|
|
58
|
+
deathWindowLabel: 'Finestra oraria probabile',
|
|
59
|
+
confidenceMarginLabel: 'Margine di confidenza (95%)',
|
|
60
|
+
coolingPhaseLabel: 'Fase termodinamica',
|
|
61
|
+
coolingRateLabel: 'Tasso istantaneo di perdita termica',
|
|
62
|
+
glaisterEstimateLabel: 'Confronto con regola di Glaister',
|
|
63
|
+
chartHeader: 'Traiettoria di raffreddamento bi esponenziale di Henssge',
|
|
64
|
+
chartXAxis: 'Ore post mortem',
|
|
65
|
+
chartYAxis: 'Temperatura centrale',
|
|
66
|
+
chartNowMarker: 'Dato misurato',
|
|
67
|
+
chartPlateauMarker: 'Plateau iniziale',
|
|
68
|
+
phasePlateau: 'Fase di plateau',
|
|
69
|
+
phaseDescent: 'Discesa esponenziale',
|
|
70
|
+
phaseEquilibrium: 'Equilibrio termico',
|
|
71
|
+
phaseHyperthermia: 'Allerta ipertermia pre-mortem',
|
|
72
|
+
hoursUnit: 'ore',
|
|
73
|
+
minutesUnit: 'min',
|
|
74
|
+
celsiusUnit: '°C',
|
|
75
|
+
fahrenheitUnit: '°F',
|
|
76
|
+
kgUnit: 'kg',
|
|
77
|
+
lbUnit: 'lb',
|
|
78
|
+
celsiusPerHour: '°C/h',
|
|
79
|
+
fahrenheitPerHour: '°F/h',
|
|
80
|
+
resetBtn: 'Ripristina',
|
|
81
|
+
nowBtn: 'Ora attuale',
|
|
82
|
+
coreThermometerLabel: 'Temperatura centrale',
|
|
83
|
+
baselineAmbientLabel: 'Soglia ambientale',
|
|
84
|
+
referenceBodyTempLabel: 'Riferimento corporeo'
|
|
85
|
+
},
|
|
86
|
+
seo: [
|
|
87
|
+
{ type: 'title', text: 'Principi Fisici del Raffreddamento Cadaverico e Stima dell Epoca della Morte', level: 2 },
|
|
88
|
+
{ type: 'paragraph', html: 'La determinazione dell intervallo post mortem (PMI) è uno dei compiti fondamentali della medicina legale nell ambito delle indagini giudiziarie e tanatologiche. L <strong>Algor Mortis</strong> definisce il raffreddamento progressivo del corpo umano dopo l arresto cardiocircolatorio irreversibile fino al raggiungimento del perfetto equilibrio termico con l ambiente esterno. Attraverso la misurazione termometrica rettale profonda e l applicazione di equazioni termodinamiche rigorose, i medici legisti possono circoscrivere con precisione scientifica l orario in cui è avvenuto il decesso.' },
|
|
89
|
+
{ type: 'diagnostic', variant: 'info', title: 'Comportamento Termodinamico Post Mortem', html: 'La cessione di calore dal cadavere all ambiente non avviene secondo una retta uniforme fin dal principio. Presenta una fase iniziale di latenza detta <em>plateau termico</em>, seguita da una ripida caduta esponenziale e da una fase asintotica finale verso la temperatura esterna.' },
|
|
90
|
+
{ type: 'stats', columns: 3, items: [
|
|
91
|
+
{ value: '37.2°C', label: 'Riferimento rettale normotermico' },
|
|
92
|
+
{ value: '±2.8 h', label: 'Intervallo statistico al 95%' },
|
|
93
|
+
{ value: 'Bi Esponenziale', label: 'Modello matematico di Henssge' }
|
|
94
|
+
] },
|
|
95
|
+
{ type: 'title', text: 'L Equazione Bi Esponenziale di Claus Henssge', level: 3 },
|
|
96
|
+
{ type: 'paragraph', html: 'Le formule lineari empiriche come la regola di Glaister assumevano una perdita costante di circa 0.83 gradi Celsius all ora. Questa approssimazione semplicistica ignora tuttavia il peso corporeo dell individuo, l isolamento termico offerto dagli indumenti e il fenomeno fondamentale del plateau termico iniziale.' },
|
|
97
|
+
{ type: 'code', ariaLabel: 'Equazione di Henssge', code: 'Q = (T_rettale - T_ambiente) / (37.2 - T_ambiente)\nQ = 1.25 * exp(-k * t) - 0.25 * exp(-5 * k * t)\nk = 1.2815 / (PesoCorporeo^0.625 * FattoreCorrezione) - 0.0284' },
|
|
98
|
+
{ type: 'paragraph', html: 'Il professor Claus Henssge ha elaborato una celebre formula a due esponenziali che descrive sia il gradiente termico di superficie sia l inerzia termica del nucleo corporeo viscerale profondo, consentendo una datazione forense affidabile in sede processuale.' },
|
|
99
|
+
{ type: 'title', text: 'Fattori di Correzione Ambientali e Vestiari', level: 3 },
|
|
100
|
+
{ type: 'paragraph', html: 'Lo scambio di calore per conduzione, convezione e irraggiamento varia sensibilmente in base alla massa corporea, ai flussi d aria e agli strati tessili isolanti presenti sulla salma.' },
|
|
101
|
+
{ type: 'table', headers: ['Condizione di Scena', 'Valore Fattore Cf', 'Effetto Fisico'], rows: [
|
|
102
|
+
['Nudo in aria calma', '1.0', 'Irraggiamento standard e convezione naturale'],
|
|
103
|
+
['Abiti leggeri (1-2 strati)', '1.1', 'Lieve riduzione della perdita convettiva cutanea'],
|
|
104
|
+
['Abiti normali da città (3-4 strati)', '1.2', 'Moderata barriera termica su tronco ed arti'],
|
|
105
|
+
['Abiti invernali pesanti', '1.4', 'Elevato isolamento che intrappola aria calda'],
|
|
106
|
+
['Sotto piumone spesso nel letto', '1.8', 'Altissima ritenzione calorica e raffreddamento ritardato'],
|
|
107
|
+
['Immerso in acqua calma', '0.5', 'Conducibilità termica dell acqua 24 volte superiore all aria'],
|
|
108
|
+
['Immerso in acqua corrente fredda', '0.35', 'Convezione forzata liquida fortemente accelerata']
|
|
109
|
+
] },
|
|
110
|
+
{ type: 'title', text: 'Fasi Termodinamiche del Processo Cadaverico', level: 3 },
|
|
111
|
+
{ type: 'comparative', columns: 2, items: [
|
|
112
|
+
{ title: 'Plateau Termico Iniziale', description: 'Nelle prime 1 a 3 ore, la temperatura rettale centrale subisce minime variazioni mentre si stabilisce il gradiente verso la pelle.', points: ['Formazione del gradiente centro periferia', 'Le formule lineari sottostimano la durata', 'Modellato dal termine -0.25 exp(-5kt)'] },
|
|
113
|
+
{ title: 'Rapida Discesa Esponenziale', description: 'Una volta instaurato il gradiente, la perdita calorica procede a velocità costante correlata alla massa.', highlight: true, points: ['Massima sensibilità diagnostica', 'Margine di incertezza più stretto', 'Finestra ideale per la termometria'] }
|
|
114
|
+
] },
|
|
115
|
+
{ type: 'title', text: 'Indicazioni Pratiche per la Misurazione della Temperatura', level: 3 },
|
|
116
|
+
{ type: 'list', items: [
|
|
117
|
+
'<strong>Misurare la temperatura rettale profonda:</strong> inserire la sonda digitale calibrata per almeno 8 a 10 cm nel retto.',
|
|
118
|
+
'<strong>Rilevare la temperatura ambientale accanto al corpo:</strong> posizionare il termometro entro 10 cm dal cadavere.',
|
|
119
|
+
'<strong>Verificare la stabilità termica dell ambiente:</strong> annotare riscaldamenti accesi, finestre aperte o irraggiamento solare.',
|
|
120
|
+
'<strong>Esaminare l umidità degli indumenti:</strong> tessuti bagnati incrementano notevolmente il raffreddamento per evaporazione.'
|
|
121
|
+
] },
|
|
122
|
+
{ type: 'summary', title: 'Sintesi Metodologica', items: [
|
|
123
|
+
'Il nomogramma di Henssge è il punto di riferimento internazionale per la stima termica dell epoca della morte.',
|
|
124
|
+
'Occorre sempre formulare una finestra oraria probabilistica con margini di deviazione standard.',
|
|
125
|
+
'È fondamentale integrare il dato termico con l esame dei fenomeni abiotici consecutivi quali rigidità e ipostasi.'
|
|
126
|
+
] }
|
|
127
|
+
],
|
|
128
|
+
faq,
|
|
129
|
+
bibliography,
|
|
130
|
+
howTo,
|
|
131
|
+
schemas: [
|
|
132
|
+
{ '@context': 'https://schema.org', '@type': 'SoftwareApplication', name: title, description, applicationCategory: 'ForensicApplication', operatingSystem: 'Any' },
|
|
133
|
+
{ '@context': 'https://schema.org', '@type': 'FAQPage', mainEntity: faq.map((item) => ({ '@type': 'Question', name: item.question, acceptedAnswer: { '@type': 'Answer', text: item.answer } })) },
|
|
134
|
+
{ '@context': 'https://schema.org', '@type': 'HowTo', name: title, step: howTo.map((step) => ({ '@type': 'HowToStep', name: step.name, text: step.text })) }
|
|
135
|
+
]
|
|
136
|
+
};
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
import { bibliography } from '../bibliography';
|
|
2
|
+
import type { TimeOfDeathAlgorMortisLocaleContent } from '../entry';
|
|
3
|
+
|
|
4
|
+
const slug = 'time-of-death-algor-mortis-calculator';
|
|
5
|
+
const title = '死後経過時間死冷計算機 ヘンスゲノモグラム';
|
|
6
|
+
const description = '直腸温と環境温度からヘンスゲの二重指数式ノモグラムを用いて死後経過時間と推定死亡時刻を算出します。';
|
|
7
|
+
|
|
8
|
+
const howTo = [
|
|
9
|
+
{ name: '直腸温と周囲温度を入力', text: '現場で測定した深部直腸温度と周囲の平均環境温度を入力します。' },
|
|
10
|
+
{ name: '体重と環境補正係数を設定', text: '着衣の状態や水中浸漬に応じた補正係数および体重を入力します。' },
|
|
11
|
+
{ name: '測定時刻を指定', text: '温度を測定した正確な時刻を入力するか現在時刻をクリックします。' },
|
|
12
|
+
{ name: '死後経過時間と冷却曲線を分析', text: '推定死後経過時間と95パーセント信頼区間の死亡推定時間帯を確認します。' }
|
|
13
|
+
];
|
|
14
|
+
|
|
15
|
+
const faq = [
|
|
16
|
+
{ question: '法医学における死冷とは何ですか', answer: '死冷とは心停止後に体熱産生が停止し遺体温度が周囲温度と平衡に達するまで低下する物理的現象です。' },
|
|
17
|
+
{ question: 'ヘンスゲのノモグラムが推奨される理由は何ですか', answer: '初期の温度プラトー現象と体重や着衣による熱放散の二重指数関数的変化を正確にモデル化しているためです。' },
|
|
18
|
+
{ question: '体温による死亡時刻推定の精度はどの程度ですか', answer: '標準的な管理条件下では最初の10時間以内における95パーセント信頼区間はおよそプラスマイナス2.8時間です。' },
|
|
19
|
+
{ question: '死後温度プラトーとは何ですか', answer: '死後1から3時間の初期において深部直腸温度がほとんど低下せず熱勾配が形成される遅延期間を指します。' }
|
|
20
|
+
];
|
|
21
|
+
|
|
22
|
+
export const content: TimeOfDeathAlgorMortisLocaleContent = {
|
|
23
|
+
slug,
|
|
24
|
+
title,
|
|
25
|
+
description,
|
|
26
|
+
ui: {
|
|
27
|
+
title,
|
|
28
|
+
subtitle: '死後経過時間推定および熱減衰ノモグラム',
|
|
29
|
+
disclaimer: '本ツールは教育および学術シミュレーション専用です。正式な法医鑑定には司法解剖や死後硬直死斑の総合的評価が必要です。',
|
|
30
|
+
unitSystemLabel: '単位系',
|
|
31
|
+
unitMetricLabel: 'メートル法',
|
|
32
|
+
unitImperialLabel: 'ヤードポンド法',
|
|
33
|
+
presetsHeader: '標準法医学シナリオ',
|
|
34
|
+
presetCustom: 'カスタム設定',
|
|
35
|
+
presetNakedCalm: '無風室内裸体 (20°C)',
|
|
36
|
+
presetDressedIndoor: '標準着衣室内 (19.5°C)',
|
|
37
|
+
presetWinterOutdoor: '冬季屋外環境 (4°C)',
|
|
38
|
+
presetSubmergedWater: '静水中浸漬 (12°C)',
|
|
39
|
+
presetHeavyDuvet: '厚手羽毛布団着用 (18°C)',
|
|
40
|
+
inputsHeader: '現場測定値および環境パラメータ',
|
|
41
|
+
rectalTempLabel: '深部直腸温度',
|
|
42
|
+
ambientTempLabel: '周囲環境温度',
|
|
43
|
+
bodyWeightLabel: '推定体重',
|
|
44
|
+
factorLabel: '環境補正係数',
|
|
45
|
+
measurementTimeLabel: '温度測定時刻',
|
|
46
|
+
factorNaked: '無風空気中裸体',
|
|
47
|
+
factorLightClothes: '軽着衣 1から2枚',
|
|
48
|
+
factorStandardClothes: '標準着衣 3から4枚',
|
|
49
|
+
factorHeavyWinter: '厚手防寒着着用',
|
|
50
|
+
factorLightBlanket: '薄手毛布使用',
|
|
51
|
+
factorHeavyDuvet: '厚手羽毛布団使用',
|
|
52
|
+
factorStillWater: '静水中に浸漬',
|
|
53
|
+
factorFlowingWater: '冷流水中に浸漬',
|
|
54
|
+
factorWetClothing: '濡れた着衣と風',
|
|
55
|
+
factorMovingAir: '扇風機等の送風環境',
|
|
56
|
+
resultsHeader: '死後経過時間解析結果',
|
|
57
|
+
estimatedPmiLabel: '推定死後経過時間',
|
|
58
|
+
deathWindowLabel: '死亡推定時間帯',
|
|
59
|
+
confidenceMarginLabel: '95パーセント信頼区間',
|
|
60
|
+
coolingPhaseLabel: '熱力学的フェーズ',
|
|
61
|
+
coolingRateLabel: '瞬間冷却速度',
|
|
62
|
+
glaisterEstimateLabel: 'グレイスター線形基準比較',
|
|
63
|
+
chartHeader: 'ヘンスゲ二重指数冷却曲線',
|
|
64
|
+
chartXAxis: '死後経過時間',
|
|
65
|
+
chartYAxis: '深部直腸温度',
|
|
66
|
+
chartNowMarker: '測定温度値',
|
|
67
|
+
chartPlateauMarker: '初期プラトー',
|
|
68
|
+
phasePlateau: 'プラトー期',
|
|
69
|
+
phaseDescent: '指数関数的下降期',
|
|
70
|
+
phaseEquilibrium: '熱平衡到達',
|
|
71
|
+
phaseHyperthermia: '生前高体温警告',
|
|
72
|
+
hoursUnit: '時間',
|
|
73
|
+
minutesUnit: '分',
|
|
74
|
+
celsiusUnit: '°C',
|
|
75
|
+
fahrenheitUnit: '°F',
|
|
76
|
+
kgUnit: 'kg',
|
|
77
|
+
lbUnit: 'lb',
|
|
78
|
+
celsiusPerHour: '°C/h',
|
|
79
|
+
fahrenheitPerHour: '°F/h',
|
|
80
|
+
resetBtn: 'リセット',
|
|
81
|
+
nowBtn: '現在時刻',
|
|
82
|
+
coreThermometerLabel: '深部体温',
|
|
83
|
+
baselineAmbientLabel: '環境基準温度',
|
|
84
|
+
referenceBodyTempLabel: '生前標準体温'
|
|
85
|
+
},
|
|
86
|
+
seo: [
|
|
87
|
+
{ type: 'title', text: '死冷の熱力学的原理と死後経過時間推定', level: 2 },
|
|
88
|
+
{ type: 'paragraph', html: '死後経過時間(PMI)の判定は法医学における最重要課題の一つです。<strong>死冷(Algor Mortis)</strong>は心停止後に人体の熱産生が絶たれ周囲温度と平衡に達するまで進行する体温降下現象です。深部直腸温の精密測定と熱力学モデルにより死亡時刻の確率的推定が可能となります。' },
|
|
89
|
+
{ type: 'diagnostic', variant: 'info', title: '死後冷却の熱力学的特性', html: '遺体の温度降下は直線的ではありません。初期に<em>温度プラトー</em>と呼ばれる下降の遅延が生じその後急峻な指数関数的降下期へ移行します。' },
|
|
90
|
+
{ type: 'stats', columns: 3, items: [
|
|
91
|
+
{ value: '37.2°C', label: '生前深部基準温度' },
|
|
92
|
+
{ value: '±2.8h', label: '初期95%信頼限界' },
|
|
93
|
+
{ value: '二重指数式', label: 'ヘンスゲ計算モデル' }
|
|
94
|
+
] },
|
|
95
|
+
{ type: 'title', text: 'クラウス ヘンスゲの二重指数方程式', level: 3 },
|
|
96
|
+
{ type: 'paragraph', html: 'かつて用いられたグレイスター則のような単純線形モデルは1時間あたり約0.83度の一定降下を仮定していましたが体重や着衣の影響を反映できませんでした。' },
|
|
97
|
+
{ type: 'code', ariaLabel: 'ヘンスゲの計算式', code: 'Q = (T_直腸 - T_周囲) / (37.2 - T_周囲)\nQ = 1.25 * exp(-k * t) - 0.25 * exp(-5 * k * t)\nk = 1.2815 / (体重^0.625 * 補正係数) - 0.0284' },
|
|
98
|
+
{ type: 'paragraph', html: 'ヘンスゲ教授が提唱した二重指数式は体表からの熱勾配形成と深部体幹の熱慣性を同時に考慮しており信頼性の高い時間推定を実現します。' },
|
|
99
|
+
{ type: 'title', text: '環境および着衣による補正係数一覧', level: 3 },
|
|
100
|
+
{ type: 'paragraph', html: '熱伝達速度は体格や気流および衣服の断熱層によって大きく変化します。' },
|
|
101
|
+
{ type: 'table', headers: ['現場状況', '補正係数', '物理的機序'], rows: [
|
|
102
|
+
['無風室内裸体', '1.0', '標準的な放射および自然対流'],
|
|
103
|
+
['軽着衣 1から2枚', '1.1', '皮膚対流熱損失の軽微な抑制'],
|
|
104
|
+
['標準着衣 3から4枚', '1.2', '体幹および四肢の中等度断熱'],
|
|
105
|
+
['厚手防寒着着用', '1.4', '空気層保持による高度断熱'],
|
|
106
|
+
['厚手羽毛布団使用', '1.8', '極めて高い保温性による冷却遅延'],
|
|
107
|
+
['静水中に浸漬', '0.5', '水の熱伝導率は空気の約24倍'],
|
|
108
|
+
['冷流水中に浸漬', '0.35', '強制対流による急激な熱奪取']
|
|
109
|
+
] },
|
|
110
|
+
{ type: 'title', text: '死後冷却の熱力学的段階', level: 3 },
|
|
111
|
+
{ type: 'comparative', columns: 2, items: [
|
|
112
|
+
{ title: '死後温度プラトー期', description: '死後1から3時間は体表が冷却される一方直腸温度はほとんど低下しません。', points: ['中心部から末梢への温度勾配形成', '線形計算では過小評価される領域', '方程式のマイナス0.25項で補正'] },
|
|
113
|
+
{ title: '急速指数降下期', description: '熱勾配形成後は体重に応じた一定の割合で熱が急速に放出されます。', highlight: true, points: ['最も測定感度が高い期間', '統計的誤差が最小の領域', '体温測定法の最適時間帯'] }
|
|
114
|
+
] },
|
|
115
|
+
{ type: 'title', text: '現場体温測定における実務的留意点', level: 3 },
|
|
116
|
+
{ type: 'list', items: [
|
|
117
|
+
'<strong>深部直腸温度の確実な測定:</strong> 校正済み温度計プローブを直腸内に8から10cm挿入して測定します。',
|
|
118
|
+
'<strong>遺体近傍の環境温度測定:</strong> 遺体から10cm以内の位置で周囲空気温度を測定します。',
|
|
119
|
+
'<strong>現場環境の熱的安定性の確認:</strong> 暖房器具や開放窓および直射日光の有無を記録します。',
|
|
120
|
+
'<strong>衣服の湿潤状態の確認:</strong> 濡れた衣類は気化熱により冷却速度を大幅に加速させます。'
|
|
121
|
+
] },
|
|
122
|
+
{ type: 'summary', title: '方法論のまとめ', items: [
|
|
123
|
+
'ヘンスゲのノモグラム法は国際的に広く認知された死後経過時間推定基準です。',
|
|
124
|
+
'単一の確定時刻ではなく標準偏差を伴う確率的時間帯として提示する必要があります。',
|
|
125
|
+
'死後硬直や死斑および超生体反応の所見と総合的に照合して判定します。'
|
|
126
|
+
] }
|
|
127
|
+
],
|
|
128
|
+
faq,
|
|
129
|
+
bibliography,
|
|
130
|
+
howTo,
|
|
131
|
+
schemas: [
|
|
132
|
+
{ '@context': 'https://schema.org', '@type': 'SoftwareApplication', name: title, description, applicationCategory: 'ForensicApplication', operatingSystem: 'Any' },
|
|
133
|
+
{ '@context': 'https://schema.org', '@type': 'FAQPage', mainEntity: faq.map((item) => ({ '@type': 'Question', name: item.question, acceptedAnswer: { '@type': 'Answer', text: item.answer } })) },
|
|
134
|
+
{ '@context': 'https://schema.org', '@type': 'HowTo', name: title, step: howTo.map((step) => ({ '@type': 'HowToStep', name: step.name, text: step.text })) }
|
|
135
|
+
]
|
|
136
|
+
};
|