@jjlmoya/utils-forensic-science 1.8.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 +6 -1
- 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,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
|
+
};
|
|
@@ -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.8시간', label: '초기 10시간 95% 신뢰범위' },
|
|
93
|
+
{ value: '이중 지수식', label: '헨스게 수학적 모델' }
|
|
94
|
+
] },
|
|
95
|
+
{ type: 'title', text: '클라우스 헨스게의 이중 지수 공식', level: 3 },
|
|
96
|
+
{ type: 'paragraph', html: '과거에 사용되던 글레이스터 법칙은 시간당 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
|
+
};
|