@jjlmoya/utils-diy 1.26.0 → 1.28.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/category/index.ts +2 -1
- package/src/entries.ts +4 -1
- package/src/tests/bibliography_wellformed_export.test.ts +46 -0
- package/src/tests/locale_completeness.test.ts +2 -3
- package/src/tests/seo_translation_completeness.test.ts +69 -0
- package/src/tests/seo_wellformed_export.test.ts +65 -0
- package/src/tests/tool_validation.test.ts +2 -2
- package/src/tool/drywallCalculator/i18n/de.ts +1 -1
- package/src/tool/drywallCalculator/i18n/id.ts +2 -2
- package/src/tool/drywallCalculator/i18n/it.ts +2 -2
- package/src/tool/drywallCalculator/i18n/ja.ts +1 -1
- package/src/tool/drywallCalculator/i18n/ko.ts +1 -1
- package/src/tool/drywallCalculator/i18n/nl.ts +2 -2
- package/src/tool/drywallCalculator/i18n/pl.ts +3 -3
- package/src/tool/drywallCalculator/i18n/pt.ts +3 -3
- package/src/tool/drywallCalculator/i18n/ru.ts +2 -2
- package/src/tool/drywallCalculator/i18n/sv.ts +3 -3
- package/src/tool/drywallCalculator/i18n/tr.ts +3 -3
- package/src/tool/drywallCalculator/i18n/zh.ts +3 -3
- package/src/tool/drywallCalculator/seo.astro +12 -11
- package/src/tool/excavationVolumeCalculator/bibliography.astro +6 -0
- package/src/tool/excavationVolumeCalculator/bibliography.ts +12 -0
- package/src/tool/excavationVolumeCalculator/component.astro +80 -0
- package/src/tool/excavationVolumeCalculator/controller.ts +69 -0
- package/src/tool/excavationVolumeCalculator/dom-views.ts +63 -0
- package/src/tool/excavationVolumeCalculator/entry.ts +26 -0
- package/src/tool/excavationVolumeCalculator/evaluator.ts +21 -0
- package/src/tool/excavationVolumeCalculator/excavation-volume-calculator.css +442 -0
- package/src/tool/excavationVolumeCalculator/i18n/de.ts +120 -0
- package/src/tool/excavationVolumeCalculator/i18n/en.ts +120 -0
- package/src/tool/excavationVolumeCalculator/i18n/es.ts +120 -0
- package/src/tool/excavationVolumeCalculator/i18n/fr.ts +120 -0
- package/src/tool/excavationVolumeCalculator/i18n/id.ts +120 -0
- package/src/tool/excavationVolumeCalculator/i18n/it.ts +120 -0
- package/src/tool/excavationVolumeCalculator/i18n/ja.ts +120 -0
- package/src/tool/excavationVolumeCalculator/i18n/ko.ts +120 -0
- package/src/tool/excavationVolumeCalculator/i18n/nl.ts +120 -0
- package/src/tool/excavationVolumeCalculator/i18n/pl.ts +120 -0
- package/src/tool/excavationVolumeCalculator/i18n/pt.ts +120 -0
- package/src/tool/excavationVolumeCalculator/i18n/ru.ts +120 -0
- package/src/tool/excavationVolumeCalculator/i18n/sv.ts +120 -0
- package/src/tool/excavationVolumeCalculator/i18n/tr.ts +120 -0
- package/src/tool/excavationVolumeCalculator/i18n/zh.ts +120 -0
- package/src/tool/excavationVolumeCalculator/index.ts +11 -0
- package/src/tool/excavationVolumeCalculator/logic.test.ts +29 -0
- package/src/tool/excavationVolumeCalculator/logic.ts +35 -0
- package/src/tool/excavationVolumeCalculator/seo.astro +15 -0
- package/src/tool/excavationVolumeCalculator/storage.ts +28 -0
- package/src/tool/excavationVolumeCalculator/ui.ts +66 -0
- package/src/tools.ts +2 -1
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { ExcavationCalculatorUI } from '../ui';
|
|
4
|
+
import { excavationVolumeCalculatorBibliography } from '../bibliography';
|
|
5
|
+
|
|
6
|
+
const slug = 'calcolatore-volume-scavo-rigonfiamento-terreno';
|
|
7
|
+
const title = 'Calcolatore Volume Scavo e Stima Rigonfiamento Terreno';
|
|
8
|
+
const description = 'Calcola il volume in banco dello scavo e stima il volume di terreno sciolto dopo lo scavo con un intervallo per sabbia, terra vegetale, argilla e ghiaia.';
|
|
9
|
+
|
|
10
|
+
const faq = [
|
|
11
|
+
{
|
|
12
|
+
question: 'Qual è la differenza tra volume in banco e volume sciolto?',
|
|
13
|
+
answer: 'Il volume in banco è il volume del terreno in situ prima di essere scavato. Il volume sciolto è lo spazio stimato occupato dal terreno dopo lo scavo considerando il coefficiente di rigonfiamento.',
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
question: 'Come si calcola il volume di uno scavo?',
|
|
17
|
+
answer: 'Moltiplica la lunghezza dello scavo per la larghezza e la profondità. Ad esempio, uno scavo di 4 metri per 3 metri e profondo 0,5 metri ha un volume in banco di 6 metri cubi prima del rigonfiamento.',
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
question: 'Perché l\'argilla richiede un intervallo di rigonfiamento più ampio?',
|
|
21
|
+
answer: 'Il comportamento dell\'argilla dipende fortemente dall\'umidità, dalla mineralogia e dalla storia delle tensioni del terreno. Lo strumento applica una forbice più ampia per riflettere questa variabilità.',
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
question: 'Questo calcolatore sostituisce un\'indagine geotecnica?',
|
|
25
|
+
answer: 'No. Il risultato è una stima per la gestione della logistica, dei camion e dei cassoni. Per fondazioni o muri di contenimento occorre una relazione geotecnica professionale.',
|
|
26
|
+
},
|
|
27
|
+
];
|
|
28
|
+
|
|
29
|
+
const howTo = [
|
|
30
|
+
{ name: 'Inserire le dimensioni dello scavo', text: 'Inserisci lunghezza, larghezza e profondità del taglio. Scegli tra unità metriche e imperiali.' },
|
|
31
|
+
{ name: 'Selezionare il tipo di terreno', text: 'Seleziona sabbia, terra vegetale, argilla o ghiaia per applicare il coefficiente di rigonfiamento stimato.' },
|
|
32
|
+
{ name: 'Pianificare il trasporto dei materiali', text: 'Usa il volume in banco per lo scavo e la forbice del volume sciolto per stimare i cassoni e i camion necessari.' },
|
|
33
|
+
];
|
|
34
|
+
|
|
35
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
36
|
+
'@context': 'https://schema.org',
|
|
37
|
+
'@type': 'FAQPage',
|
|
38
|
+
mainEntity: faq.map((item) => ({ '@type': 'Question', name: item.question, acceptedAnswer: { '@type': 'Answer', text: item.answer } })),
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
const howToSchema: WithContext<HowTo> = {
|
|
42
|
+
'@context': 'https://schema.org',
|
|
43
|
+
'@type': 'HowTo',
|
|
44
|
+
name: title,
|
|
45
|
+
description,
|
|
46
|
+
step: howTo.map((step, index) => ({ '@type': 'HowToStep', position: index + 1, name: step.name, text: step.text })),
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
50
|
+
'@context': 'https://schema.org',
|
|
51
|
+
'@type': 'SoftwareApplication',
|
|
52
|
+
name: title,
|
|
53
|
+
description,
|
|
54
|
+
applicationCategory: 'UtilityApplication',
|
|
55
|
+
operatingSystem: 'All',
|
|
56
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
57
|
+
inLanguage: 'it',
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
export const content: ToolLocaleContent<ExcavationCalculatorUI> = {
|
|
61
|
+
slug,
|
|
62
|
+
title,
|
|
63
|
+
description,
|
|
64
|
+
faqTitle: 'Domande Frequenti',
|
|
65
|
+
faq,
|
|
66
|
+
bibliographyTitle: 'Fonti e note tecniche',
|
|
67
|
+
bibliography: excavationVolumeCalculatorBibliography,
|
|
68
|
+
howTo,
|
|
69
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
70
|
+
seo: [
|
|
71
|
+
{ type: 'title', text: 'Due volumi per due esigenze del cantiere', level: 2 },
|
|
72
|
+
{ type: 'paragraph', html: 'Il <strong>volume in banco</strong> rappresenta lo scavo geometrico del terreno non alterato. Il <strong>volume sciolto</strong> rappresenta lo spazio che il terreno estratto occuperà nei cassoni o negli accumuli temporanei. Separare i due valori previene errori nella stima dei trasporti.' },
|
|
73
|
+
{ type: 'title', text: 'Usare l\'intervallo sciolto per la logistica', level: 3 },
|
|
74
|
+
{ type: 'paragraph', html: 'Seleziona il profilo di terreno e confronta i risultati sciolti minimo e massimo con la capienza dei camion e dei container. L\'intervallo evidenzia la naturale incertezza dovuta all\'umidità e alle modalità di scavo.' },
|
|
75
|
+
{ type: 'tip', title: 'Il coefficiente teorico non sostituisce le prove di laboratorio', html: 'Umidità e presenza di falda possono modificare il rigonfiamento reale. Per strutture di fondazione e terre contaminate si richiede un indagine geotecnica.' },
|
|
76
|
+
{ type: 'title', text: 'Verificare i dati prima di ordinare i mezzi', level: 3 },
|
|
77
|
+
{ type: 'paragraph', html: 'In presenza di terreni misti, esegui il calcolo con due profili differenti e organizza la logistica sul valore più cautelativo.' },
|
|
78
|
+
],
|
|
79
|
+
ui: {
|
|
80
|
+
unitSystemLabel: 'Sistema di misura',
|
|
81
|
+
unitMetric: 'Metrico',
|
|
82
|
+
unitImperial: 'Imperiale',
|
|
83
|
+
onboarding: 'Inserisci le dimensioni dello scavo, seleziona il terreno e usa i due volumi per pianificare lo scavo e il trasporto.',
|
|
84
|
+
dimensionLabel: 'Dimensioni dello scavo',
|
|
85
|
+
lengthLabel: 'Lunghezza',
|
|
86
|
+
widthLabel: 'Larghezza',
|
|
87
|
+
depthLabel: 'Profondità',
|
|
88
|
+
soilLabel: 'Profilo del terreno',
|
|
89
|
+
soilSand: 'Sabbia',
|
|
90
|
+
soilTopsoil: 'Terra vegetale',
|
|
91
|
+
soilClay: 'Argilla',
|
|
92
|
+
soilGravel: 'Ghiaia',
|
|
93
|
+
soilSandBand: 'Rigonfiamento 10-15%',
|
|
94
|
+
soilTopsoilBand: 'Rigonfiamento 15-25%',
|
|
95
|
+
soilClayBand: 'Rigonfiamento 25-40%',
|
|
96
|
+
soilGravelBand: 'Rigonfiamento 15-25%',
|
|
97
|
+
bankVolumeLabel: 'Volume in banco',
|
|
98
|
+
bankVolumeHelp: 'Terreno in situ non alterato',
|
|
99
|
+
looseVolumeLabel: 'Volume sciolto',
|
|
100
|
+
looseVolumeHelp: 'Intervallo stimato dopo lo scavo',
|
|
101
|
+
expansionLabel: 'Rigonfiamento applicato',
|
|
102
|
+
expansionHelp: 'Intervallo per il terreno scelto',
|
|
103
|
+
sceneTitle: 'Dallo scavo all\'accumulo',
|
|
104
|
+
sceneBank: 'in banco',
|
|
105
|
+
sceneLoose: 'materiale sciolto',
|
|
106
|
+
sceneGround: 'piano di campagna',
|
|
107
|
+
sceneCut: 'scavo eseguito',
|
|
108
|
+
interpretationTitle: 'Come interpretare i risultati.',
|
|
109
|
+
interpretationText: 'Il primo valore misura la cavità scavata. L\'intervallo stimato indica il volume di terreno sciolto da trasportare.',
|
|
110
|
+
warning: 'Stima indicativa per la logistica. Umidità e metodo di scavo modificano il volume sciolto effettivo. Non sostituisce una relazione geotecnica.',
|
|
111
|
+
unitLengthMetric: 'm',
|
|
112
|
+
unitLengthImperial: 'ft',
|
|
113
|
+
unitVolumeMetric: 'm³',
|
|
114
|
+
unitVolumeImperial: 'ft³',
|
|
115
|
+
soilStatusLow: 'rigonfiamento basso',
|
|
116
|
+
soilStatusMedium: 'rigonfiamento moderato',
|
|
117
|
+
soilStatusHigh: 'rigonfiamento alto',
|
|
118
|
+
soilStatusLabel: 'Fascia di stima',
|
|
119
|
+
},
|
|
120
|
+
};
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { ExcavationCalculatorUI } from '../ui';
|
|
4
|
+
import { excavationVolumeCalculatorBibliography } from '../bibliography';
|
|
5
|
+
|
|
6
|
+
const slug = 'excavation-volume-soil-swell-calculator';
|
|
7
|
+
const title = '掘削土量計算機・土のほぐれ率見積もり';
|
|
8
|
+
const description = '掘削前の地山土量(地山積)を計算し、砂、表土、粘土、砂利のほぐれ率(膨張率)を考慮したほぐれ土量を推定します。';
|
|
9
|
+
|
|
10
|
+
const faq = [
|
|
11
|
+
{
|
|
12
|
+
question: '地山土量(地山積)とほgeneric/ほぐれ土量の違いは何ですか?',
|
|
13
|
+
answer: '地山土量は掘削前の締まった状態の土量です。ほぐれ土量は掘削によって土がほぐれ、空気を含んで体積が増加した後の想定土量です。',
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
question: '掘削土量はどのように計算されますか?',
|
|
17
|
+
answer: '長さ、幅、深さを掛け合わせて計算します。例えば長さ4m、幅3m、深さ0.5mの掘削では、地山土量は6立方メートルになります。',
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
question: 'なぜ粘土はほぐれ率の幅が広いのですか?',
|
|
21
|
+
answer: '粘土は水分量、密度、土質構造によって体積変化が大きく変わるため、計画値として広めの変動幅を設定しています。',
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
question: 'この計算機は地盤調査の代わりになりますか?',
|
|
25
|
+
answer: 'いいえ。搬出ダンプ台数や仮置き場の目安となる計画用計算です。構造物基礎や擁壁、汚染土壌の処理には専門の地盤調査が必要です。',
|
|
26
|
+
},
|
|
27
|
+
];
|
|
28
|
+
|
|
29
|
+
const howTo = [
|
|
30
|
+
{ name: '掘削寸法を入力する', text: '掘削予定の長さ、幅、深さを入力します。必要に応じてメートル法とヤード・ポンド法を切り替えます。' },
|
|
31
|
+
{ name: '土質を選択する', text: '砂、表土、粘土、砂利から対象の土質を選択し、想定されるほぐれ率を適用します。' },
|
|
32
|
+
{ name: '搬出・仮置き計画を立てる', text: '地山土量から穴の容積を、ほgeneric/ほぐれ土量範囲からトラック手配や仮置き面積を検討します。' },
|
|
33
|
+
];
|
|
34
|
+
|
|
35
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
36
|
+
'@context': 'https://schema.org',
|
|
37
|
+
'@type': 'FAQPage',
|
|
38
|
+
mainEntity: faq.map((item) => ({ '@type': 'Question', name: item.question, acceptedAnswer: { '@type': 'Answer', text: item.answer } })),
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
const howToSchema: WithContext<HowTo> = {
|
|
42
|
+
'@context': 'https://schema.org',
|
|
43
|
+
'@type': 'HowTo',
|
|
44
|
+
name: title,
|
|
45
|
+
description,
|
|
46
|
+
step: howTo.map((step, index) => ({ '@type': 'HowToStep', position: index + 1, name: step.name, text: step.text })),
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
50
|
+
'@context': 'https://schema.org',
|
|
51
|
+
'@type': 'SoftwareApplication',
|
|
52
|
+
name: title,
|
|
53
|
+
description,
|
|
54
|
+
applicationCategory: 'UtilityApplication',
|
|
55
|
+
operatingSystem: 'All',
|
|
56
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
57
|
+
inLanguage: 'ja',
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
export const content: ToolLocaleContent<ExcavationCalculatorUI> = {
|
|
61
|
+
slug,
|
|
62
|
+
title,
|
|
63
|
+
description,
|
|
64
|
+
faqTitle: 'よくある質問',
|
|
65
|
+
faq,
|
|
66
|
+
bibliographyTitle: '参考文献と技術ノート',
|
|
67
|
+
bibliography: excavationVolumeCalculatorBibliography,
|
|
68
|
+
howTo,
|
|
69
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
70
|
+
seo: [
|
|
71
|
+
{ type: 'title', text: '現場の2つの疑問に答える2つの土量指標', level: 2 },
|
|
72
|
+
{ type: 'paragraph', html: '<strong>地山土量</strong>は掘削前の原位置における土の体積(縦×横×深さ)です。<strong>ほぐれ土量</strong>は掘削搬出後に発生する土の占有体積です。両者を区別することでダンプ手配やダンプ台数の計算違いを防ぎます。' },
|
|
73
|
+
{ type: 'title', text: '搬出計画におけるほぐれ土量範囲の活用', level: 3 },
|
|
74
|
+
{ type: 'paragraph', html: '土質を選択し、算出されたほぐれ土量の最小値・最大値をダンプカー積載量や仮置きスペースと比較検討してください。' },
|
|
75
|
+
{ type: 'tip', title: '一般的なほ generic 率と土質試験の違い', html: '地下水や粘土の含有量により実際の増加率は変化します。擁壁工事や基礎工事では必ず専門の土質試験結果を使用してください。' },
|
|
76
|
+
{ type: 'title', text: 'ダンプ手配前の安全側評価', level: 3 },
|
|
77
|
+
{ type: 'paragraph', html: '土質判断に迷う場合は、大きめの膨張率を示す条件で試算し、余裕を持った搬出計画を立てることを推奨します。' },
|
|
78
|
+
],
|
|
79
|
+
ui: {
|
|
80
|
+
unitSystemLabel: '単位系',
|
|
81
|
+
unitMetric: 'メートル法',
|
|
82
|
+
unitImperial: 'ヤード・ポンド法',
|
|
83
|
+
onboarding: '掘削寸法を入力し、土質を選択して地山土量とほぐれ土量の両方を算出します。',
|
|
84
|
+
dimensionLabel: '掘削寸法',
|
|
85
|
+
lengthLabel: '長さ',
|
|
86
|
+
widthLabel: '幅',
|
|
87
|
+
depthLabel: '深さ',
|
|
88
|
+
soilLabel: '土質区分',
|
|
89
|
+
soilSand: '砂',
|
|
90
|
+
soilTopsoil: '表土・園芸土',
|
|
91
|
+
soilClay: '粘土・粘性土',
|
|
92
|
+
soilGravel: '砂利・礫',
|
|
93
|
+
soilSandBand: 'ほぐれ率 10〜15%',
|
|
94
|
+
soilTopsoilBand: 'ほぐれ率 15〜25%',
|
|
95
|
+
soilClayBand: 'ほぐれ率 25〜40%',
|
|
96
|
+
soilGravelBand: 'ほぐれ率 15〜25%',
|
|
97
|
+
bankVolumeLabel: '地山土量(地山積)',
|
|
98
|
+
bankVolumeHelp: '掘削前の締まった原位置土量',
|
|
99
|
+
looseVolumeLabel: 'ほぐれ土量(ほぐれ積)',
|
|
100
|
+
looseVolumeHelp: '掘削後の想定体積範囲',
|
|
101
|
+
expansionLabel: '適用ほぐれ率',
|
|
102
|
+
expansionHelp: '選択した土質に基づく体積変化率',
|
|
103
|
+
sceneTitle: '掘削から仮置き・搬出まで',
|
|
104
|
+
sceneBank: '地山状態',
|
|
105
|
+
sceneLoose: 'ほぐれ状態',
|
|
106
|
+
sceneGround: '地表面',
|
|
107
|
+
sceneCut: '掘削断面',
|
|
108
|
+
interpretationTitle: '結果の活用方法',
|
|
109
|
+
interpretationText: '最初の数値は掘削箇所の穴の容積を示します。範囲数値は搬出・仮置きに必要な土の体積を示します。',
|
|
110
|
+
warning: '搬出・仮置き計画用の推定値です。含水量や掘削方法により実際の体積は変化します。地盤調査の代用とはなりません。',
|
|
111
|
+
unitLengthMetric: 'm',
|
|
112
|
+
unitLengthImperial: 'ft',
|
|
113
|
+
unitVolumeMetric: 'm³',
|
|
114
|
+
unitVolumeImperial: 'ft³',
|
|
115
|
+
soilStatusLow: '低いほぐれ率',
|
|
116
|
+
soilStatusMedium: '標準的なほぐれ率',
|
|
117
|
+
soilStatusHigh: '高いほぐれ率',
|
|
118
|
+
soilStatusLabel: '計画基準区分',
|
|
119
|
+
},
|
|
120
|
+
};
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { ExcavationCalculatorUI } from '../ui';
|
|
4
|
+
import { excavationVolumeCalculatorBibliography } from '../bibliography';
|
|
5
|
+
|
|
6
|
+
const slug = 'excavation-volume-soil-swell-calculator';
|
|
7
|
+
const title = '굴착 토량 계산기 및 흙의 팽창률(느슨함) 추정';
|
|
8
|
+
const description = '굴착 전 원땅 상태의 토량(다짐 토량)을 계산하고 모래, 표토, 점토, 자갈의 팽창률을 반영한 느슨한 상태의 토량을 추정합니다.';
|
|
9
|
+
|
|
10
|
+
const faq = [
|
|
11
|
+
{
|
|
12
|
+
question: '원땅 토량(다짐 토량)과 느슨한 토량의 차이는 무엇인가요?',
|
|
13
|
+
answer: '원땅 토량은 굴착 전 자연 상태의 땅 용적입니다. 느슨한 토량은 흙을 파낸 후 입자 사이에 공극이 생겨 부피가 늘어난 상태의 용적입니다.',
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
question: '굴착 토량은 어떻게 계산하나요?',
|
|
17
|
+
answer: '굴착 가로, 세로, 깊이를 곱하여 계산합니다. 예를 들어 가로 4m, 세로 3m, 깊이 0.5m 굴착 시 원땅 토량은 6세제곱미터가 됩니다.',
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
question: '점토는 왜 팽창률 범위를 넓게 설정하나요?',
|
|
21
|
+
answer: '점토는 함수율, 밀도, 응력 이력에 따라 부피 변화 폭이 크기 때문에 계획 시 넓은 예측 범위를 적용합니다.',
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
question: '이 계산기로 지반조사를 대체할 수 있나요?',
|
|
25
|
+
answer: '아닙니다. 본 계산기는 토사 운반 및 사토장 계획용 참고 수치입니다. 구조물 기초나 흙막이 공사 시에는 정식 지반조사를 수행해야 합니다.',
|
|
26
|
+
},
|
|
27
|
+
];
|
|
28
|
+
|
|
29
|
+
const howTo = [
|
|
30
|
+
{ name: '굴착 규격 입력', text: '굴착할 가로, 세로, 깊이를 입력합니다. 필요 시 미터법과 야드-파운드법을 전환합니다.' },
|
|
31
|
+
{ name: '토질 유형 선택', text: '모래, 표토, 점토, 자갈 중 해당 토질을 선택하여 팽창률 범위를 적용합니다.' },
|
|
32
|
+
{ name: '토사 운반 계획 수립', text: '원땅 토량으로 굴착 양을 확인하고 느슨한 토량 범위로 덤프트럭 및 적재 공간을 계획합니다.' },
|
|
33
|
+
];
|
|
34
|
+
|
|
35
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
36
|
+
'@context': 'https://schema.org',
|
|
37
|
+
'@type': 'FAQPage',
|
|
38
|
+
mainEntity: faq.map((item) => ({ '@type': 'Question', name: item.question, acceptedAnswer: { '@type': 'Answer', text: item.answer } })),
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
const howToSchema: WithContext<HowTo> = {
|
|
42
|
+
'@context': 'https://schema.org',
|
|
43
|
+
'@type': 'HowTo',
|
|
44
|
+
name: title,
|
|
45
|
+
description,
|
|
46
|
+
step: howTo.map((step, index) => ({ '@type': 'HowToStep', position: index + 1, name: step.name, text: step.text })),
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
50
|
+
'@context': 'https://schema.org',
|
|
51
|
+
'@type': 'SoftwareApplication',
|
|
52
|
+
name: title,
|
|
53
|
+
description,
|
|
54
|
+
applicationCategory: 'UtilityApplication',
|
|
55
|
+
operatingSystem: 'All',
|
|
56
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
57
|
+
inLanguage: 'ko',
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
export const content: ToolLocaleContent<ExcavationCalculatorUI> = {
|
|
61
|
+
slug,
|
|
62
|
+
title,
|
|
63
|
+
description,
|
|
64
|
+
faqTitle: '자주 묻는 질문',
|
|
65
|
+
faq,
|
|
66
|
+
bibliographyTitle: '출처 및 기술 노트',
|
|
67
|
+
bibliography: excavationVolumeCalculatorBibliography,
|
|
68
|
+
howTo,
|
|
69
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
70
|
+
seo: [
|
|
71
|
+
{ type: 'title', text: '현장 용도에 맞는 두 가지 토량 지표', level: 2 },
|
|
72
|
+
{ type: 'paragraph', html: '<strong>원땅 토량</strong>은 굴착 구덩이 자체의 기하학적 부피(가로×세로×깊이)입니다. <strong>느슨한 토량</strong>은 파낸 흙이 적재장이나 운반 차량에서 차지하는 부피입니다.' },
|
|
73
|
+
{ type: 'title', text: '운반 및 사토 계획 시 느슨한 토량 활용', level: 3 },
|
|
74
|
+
{ type: 'paragraph', html: '토질을 선택하고 느슨한 토량의 최소·최대 범위를 덤프트럭 용량 및 임시 적재 공간과 비교하여 계획을 수립하세요.' },
|
|
75
|
+
{ type: 'tip', title: '토사 팽창률은 지반조사 시험을 대신할 수 없습니다', html: '지하수위나 점토 함량에 따라 실제 부피 증가율이 달라질 수 있습니다. 옹벽 및 기초 공사에는 지반조사 보고서가 필요합니다.' },
|
|
76
|
+
{ type: 'title', text: '장비 투입 전 유동적 수치 확인', level: 3 },
|
|
77
|
+
{ type: 'paragraph', html: '토질이 불확실한 경우 두 가지 유사 토질로 시험 계산하여 보수적인 수치로 운반 차량을 준비하는 것이 안전합니다.' },
|
|
78
|
+
],
|
|
79
|
+
ui: {
|
|
80
|
+
unitSystemLabel: '단위계',
|
|
81
|
+
unitMetric: '미터법',
|
|
82
|
+
unitImperial: '야드-파운드법',
|
|
83
|
+
onboarding: '굴착 규격을 입력하고 토질을 선택하여 원땅 토량과 느슨한 토량을 계산하세요.',
|
|
84
|
+
dimensionLabel: '굴착 규격',
|
|
85
|
+
lengthLabel: '가로 (길이)',
|
|
86
|
+
widthLabel: '세로 (너비)',
|
|
87
|
+
depthLabel: '깊이',
|
|
88
|
+
soilLabel: '토질 유형',
|
|
89
|
+
soilSand: '모래',
|
|
90
|
+
soilTopsoil: '표토',
|
|
91
|
+
soilClay: '점토',
|
|
92
|
+
soilGravel: '자갈',
|
|
93
|
+
soilSandBand: '팽창률 10 ~ 15%',
|
|
94
|
+
soilTopsoilBand: '팽창률 15 ~ 25%',
|
|
95
|
+
soilClayBand: '팽창률 25 ~ 40%',
|
|
96
|
+
soilGravelBand: '팽창률 15 ~ 25%',
|
|
97
|
+
bankVolumeLabel: '원땅 토량 (다짐 상태)',
|
|
98
|
+
bankVolumeHelp: '굴착 전 자연 상태의 땅 부피',
|
|
99
|
+
looseVolumeLabel: '느슨한 토량 (파낸 상태)',
|
|
100
|
+
looseVolumeHelp: '굴착 후 예상되는 부피 범위',
|
|
101
|
+
expansionLabel: '적용된 흙 팽창률',
|
|
102
|
+
expansionHelp: '선택한 토질의 부피 증가 범위',
|
|
103
|
+
sceneTitle: '굴착에서 임시 적재까지',
|
|
104
|
+
sceneBank: '원땅 상태',
|
|
105
|
+
sceneLoose: '느슨한 상태',
|
|
106
|
+
sceneGround: '지표면',
|
|
107
|
+
sceneCut: '굴착 구덩이',
|
|
108
|
+
interpretationTitle: '결과 활용 방법',
|
|
109
|
+
interpretationText: '첫 번째 수치는 굴착할 구덩이 용적이며, 범위 수치는 파낸 흙을 운반·적재할 때 필요한 부피입니다.',
|
|
110
|
+
warning: '토사 운반 계획용 추정치입니다. 습도 및 굴착 방식에 따라 실제 부피가 달라질 수 있습니다. 정식 지반조사를 대체하지 않습니다.',
|
|
111
|
+
unitLengthMetric: 'm',
|
|
112
|
+
unitLengthImperial: 'ft',
|
|
113
|
+
unitVolumeMetric: 'm³',
|
|
114
|
+
unitVolumeImperial: 'ft³',
|
|
115
|
+
soilStatusLow: '낮은 팽창률',
|
|
116
|
+
soilStatusMedium: '보통 팽창률',
|
|
117
|
+
soilStatusHigh: '높은 팽창률',
|
|
118
|
+
soilStatusLabel: '계획 적용 범위',
|
|
119
|
+
},
|
|
120
|
+
};
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { ExcavationCalculatorUI } from '../ui';
|
|
4
|
+
import { excavationVolumeCalculatorBibliography } from '../bibliography';
|
|
5
|
+
|
|
6
|
+
const slug = 'ontgravingsvolume-gronduitzetting-rekenmachine';
|
|
7
|
+
const title = 'Ontgravingsvolume Rekenmachine en Gronduitzetting Schatting';
|
|
8
|
+
const description = 'Bereken het vast volume van een ontgraving en schat het losse volume na het graven met een marge voor zand, tuingrond, klei en grind.';
|
|
9
|
+
|
|
10
|
+
const faq = [
|
|
11
|
+
{
|
|
12
|
+
question: 'Wat is het verschil tussen vast volume (vaste kubieke meters) en los volume?',
|
|
13
|
+
answer: 'Het vaste volume is de inhoud van de grond in ongestoorde staat voor het graven. Het losse volume is de geschatte ruimte die de afgegraven grond inneemt inclusief de uitzettingsfactor.',
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
question: 'Hoe wordt het volume van een ontgraving berekend?',
|
|
17
|
+
answer: 'Vermenigvuldig lengte, breedte en diepte. Een ontgraving van 4 meter bij 3 meter en 0,5 meter diep heeft bijvoorbeeld een vast volume van 6 kubieke meter.',
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
question: 'Waarom heeft klei een bredere uitzettingsmarge?',
|
|
21
|
+
answer: 'Het gedrag van klei is afhankelijk van vochtgehalte en dichtheid. Deze rekenmachine gebruikt een bredere marge omdat het volume na ontgraven sterker varieert.',
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
question: 'Vervangt deze rekenmachine een milieukundig of geotechnisch onderzoek?',
|
|
25
|
+
answer: 'Nee. Het resultaat is een schatting voor transport en containerplanning. Raadpleeg een deskundige bij funderingen, grondwater of vervuilde grond.',
|
|
26
|
+
},
|
|
27
|
+
];
|
|
28
|
+
|
|
29
|
+
const howTo = [
|
|
30
|
+
{ name: 'Vul de afmetingen in', text: 'Voer de lengte, breedte en diepte van de graafwerkzaamheden in.' },
|
|
31
|
+
{ name: 'Kies het grondtype', text: 'Selecteer zand, tuingrond, klei of grind om de bijbehorende uitzettingsfactor toe te passen.' },
|
|
32
|
+
{ name: 'Plan de afvoer en opslag', text: 'Gebruik het vaste volume voor de ontgraving en de losse volumemarge voor het bestellen van afvalcontainers of vrachtwagens.' },
|
|
33
|
+
];
|
|
34
|
+
|
|
35
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
36
|
+
'@context': 'https://schema.org',
|
|
37
|
+
'@type': 'FAQPage',
|
|
38
|
+
mainEntity: faq.map((item) => ({ '@type': 'Question', name: item.question, acceptedAnswer: { '@type': 'Answer', text: item.answer } })),
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
const howToSchema: WithContext<HowTo> = {
|
|
42
|
+
'@context': 'https://schema.org',
|
|
43
|
+
'@type': 'HowTo',
|
|
44
|
+
name: title,
|
|
45
|
+
description,
|
|
46
|
+
step: howTo.map((step, index) => ({ '@type': 'HowToStep', position: index + 1, name: step.name, text: step.text })),
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
50
|
+
'@context': 'https://schema.org',
|
|
51
|
+
'@type': 'SoftwareApplication',
|
|
52
|
+
name: title,
|
|
53
|
+
description,
|
|
54
|
+
applicationCategory: 'UtilityApplication',
|
|
55
|
+
operatingSystem: 'All',
|
|
56
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
57
|
+
inLanguage: 'nl',
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
export const content: ToolLocaleContent<ExcavationCalculatorUI> = {
|
|
61
|
+
slug,
|
|
62
|
+
title,
|
|
63
|
+
description,
|
|
64
|
+
faqTitle: 'Veelgestelde Vragen',
|
|
65
|
+
faq,
|
|
66
|
+
bibliographyTitle: 'Bronvermelding en technische nota\'s',
|
|
67
|
+
bibliography: excavationVolumeCalculatorBibliography,
|
|
68
|
+
howTo,
|
|
69
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
70
|
+
seo: [
|
|
71
|
+
{ type: 'title', text: 'Twee volumematen voor uw bouw- of tuinproject', level: 2 },
|
|
72
|
+
{ type: 'paragraph', html: 'Het <strong>vaste volume</strong> (ook wel bank volume genoemd) is de exacte inhoud van de uitgraving in vaste, ongestoorde staat: lengte vermenigvuldigd met breedte en diepte. Het <strong>losse volume</strong> geeft aan hoeveel ruimte de losgegraven grond inneemt op de vrachtwagen, in de afvalcontainer of op de tijdelijke opslagbult. Door deze twee volumematen strikt gescheiden te houden, voorkomt u dat de logistieke planning en transportberekeningen op een verkeerde grondtoestand worden gebaseerd.' },
|
|
73
|
+
{ type: 'title', text: 'Gebruik de losse volumemarge voor containerplanning', level: 3 },
|
|
74
|
+
{ type: 'paragraph', html: 'Selecteer de meest passende grondsoort in de rekenmachine en vergelijk de minimale en maximale waarden van het losse volume met de beschikbare capaciteit van uw afvoercontainers, vrachtwagens of aanhangers. De marge wordt bewust visueel weergegeven omdat de graafmethode, het vochtgehalte en de compactheid van de bodem het uiteindelijke resultaat aanzienlijk beïnvloeden.' },
|
|
75
|
+
{ type: 'tip', title: 'Uitzettingsfactoren zijn richtwaarden', html: 'Het vochtgehalte, grondwaterstanden en de mate van natuurlijke verdichting bepalen het uiteindelijke volume van de losse grond. Bij grote funderingswerken, keermuren of verontreinigde grond is een geotechnisch rapport altijd noodzakelijk.' },
|
|
76
|
+
{ type: 'title', text: 'Controleer aannames vooraf', level: 3 },
|
|
77
|
+
{ type: 'paragraph', html: 'Bij twijfel over de exacte grondsoort op de bouwlocatie kunt u het beste een proefberekening maken met twee aannemelijke profielen en uitgaan van de hoogste transportbehoefte totdat de exacte bodemgesteldheid bekend is.' },
|
|
78
|
+
],
|
|
79
|
+
ui: {
|
|
80
|
+
unitSystemLabel: 'Maatsysteem',
|
|
81
|
+
unitMetric: 'Metrisch',
|
|
82
|
+
unitImperial: 'Imperiaal',
|
|
83
|
+
onboarding: 'Voer de afmetingen in van de ontgraving, kies de grondsoort en gebruik beide uitkomsten voor uw plannen.',
|
|
84
|
+
dimensionLabel: 'Afmetingen ontgraving',
|
|
85
|
+
lengthLabel: 'Lengte',
|
|
86
|
+
widthLabel: 'Breedte',
|
|
87
|
+
depthLabel: 'Diepte',
|
|
88
|
+
soilLabel: 'Grondsoort',
|
|
89
|
+
soilSand: 'Zand',
|
|
90
|
+
soilTopsoil: 'Tuingrond / Zwarte grond',
|
|
91
|
+
soilClay: 'Klei',
|
|
92
|
+
soilGravel: 'Grind',
|
|
93
|
+
soilSandBand: '10 tot 15% uitzetting',
|
|
94
|
+
soilTopsoilBand: '15 tot 25% uitzetting',
|
|
95
|
+
soilClayBand: '25 tot 40% uitzetting',
|
|
96
|
+
soilGravelBand: '15 tot 25% uitzetting',
|
|
97
|
+
bankVolumeLabel: 'Vast volume',
|
|
98
|
+
bankVolumeHelp: 'Grond in ongestoorde staat',
|
|
99
|
+
looseVolumeLabel: 'Los volume',
|
|
100
|
+
looseVolumeHelp: 'Geschat volume na ontgraving',
|
|
101
|
+
expansionLabel: 'Toegepaste gronduitzetting',
|
|
102
|
+
expansionHelp: 'Marge voor de gekozen grondsoort',
|
|
103
|
+
sceneTitle: 'Van uitgraving tot opslagbult',
|
|
104
|
+
sceneBank: 'in de grond',
|
|
105
|
+
sceneLoose: 'los materiaal',
|
|
106
|
+
sceneGround: 'maaiveld',
|
|
107
|
+
sceneCut: 'gegraven put',
|
|
108
|
+
interpretationTitle: 'Hoe de cijfers te gebruiken.',
|
|
109
|
+
interpretationText: 'Het eerste getal is de inhoud van het gat. De marge geeft aan hoeveel ruimte de losse grond inneemt.',
|
|
110
|
+
warning: 'Alleen ter indicatie voor afvoer en opslag. Vocht en graafmethode beïnvloeden het werkelijke losse volume.',
|
|
111
|
+
unitLengthMetric: 'm',
|
|
112
|
+
unitLengthImperial: 'ft',
|
|
113
|
+
unitVolumeMetric: 'm³',
|
|
114
|
+
unitVolumeImperial: 'ft³',
|
|
115
|
+
soilStatusLow: 'lange uitzetting',
|
|
116
|
+
soilStatusMedium: 'gemiddelde uitzetting',
|
|
117
|
+
soilStatusHigh: 'hoge uitzetting',
|
|
118
|
+
soilStatusLabel: 'Planningsmarge',
|
|
119
|
+
},
|
|
120
|
+
};
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
import type { WithContext, FAQPage, HowTo, SoftwareApplication } from 'schema-dts';
|
|
2
|
+
import type { ToolLocaleContent } from '../../../types';
|
|
3
|
+
import type { ExcavationCalculatorUI } from '../ui';
|
|
4
|
+
import { excavationVolumeCalculatorBibliography } from '../bibliography';
|
|
5
|
+
|
|
6
|
+
const slug = 'kalkulator-objetosci-wykopu-specznienia-gruntu';
|
|
7
|
+
const title = 'Kalkulator Objętości Wykopu i Spęcznienia Gruntu';
|
|
8
|
+
const description = 'Oblicz objętość wykopu w stanie rodzimym (w gruncie) i oszacuj objętość gruntu spęczniałego po wykopaniu z przedziałem dla piasku, humusu, gliny i żwiru.';
|
|
9
|
+
|
|
10
|
+
const faq = [
|
|
11
|
+
{
|
|
12
|
+
question: 'Jaka jest różnica między objętością w gruncie a objętošću w stanie luźnym?',
|
|
13
|
+
answer: 'Objętość w gruncie (w rodzimym złożu) to geometryczna objętość wykopu przed naruszeniem. Objętość w stanie luźnym to przestrzeń, jaką wydobyty grunt zajmie po spęcznieniu.',
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
question: 'Jak obliczyć objętość wykopu?',
|
|
17
|
+
answer: 'Pomnóż długość wykopu przez szerokość i głębokość. Na przykład wykop o długości 4 m, szerokości 3 m i głębokości 0,5 m ma objętość w gruncie równą 6 m³.',
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
question: 'Dlaczego glina wymaga szerszego przedziału spęcznienia?',
|
|
21
|
+
answer: 'Zachowanie gliny zależy od jej wilgotności, gęstości i składu mineralnego. Kalkulator przyjmuje szerszy przedział spęcznienia ze względu na większą zmienność objętości.',
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
question: 'Czy ten kalkulator zastępuje badanie geotechniczne?',
|
|
25
|
+
answer: 'Nie. Wynik jest szacunkiem planistycznym do wywozu ziemi i wyboru kontenerów. W przypadku fundamentów lub ścian oporowych wymagana jest opinia geotechniczna.',
|
|
26
|
+
},
|
|
27
|
+
];
|
|
28
|
+
|
|
29
|
+
const howTo = [
|
|
30
|
+
{ name: 'Wprowadź wymiary wykopu', text: 'Podaj długość, szerokość i głębokość planowanego wykopu.' },
|
|
31
|
+
{ name: 'Wybierz rodzaj gruntu', text: 'Zaznacz piasek, humus, glinę lub żwir, aby zastosować współczynnik spęcznienia.' },
|
|
32
|
+
{ name: 'Zaplanuj transport i wywóz', text: 'Użyj objętości w gruncie do wykopu, a objętości luźnej do zamówienia kontenerów lub ciężarówek.' },
|
|
33
|
+
];
|
|
34
|
+
|
|
35
|
+
const faqSchema: WithContext<FAQPage> = {
|
|
36
|
+
'@context': 'https://schema.org',
|
|
37
|
+
'@type': 'FAQPage',
|
|
38
|
+
mainEntity: faq.map((item) => ({ '@type': 'Question', name: item.question, acceptedAnswer: { '@type': 'Answer', text: item.answer } })),
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
const howToSchema: WithContext<HowTo> = {
|
|
42
|
+
'@context': 'https://schema.org',
|
|
43
|
+
'@type': 'HowTo',
|
|
44
|
+
name: title,
|
|
45
|
+
description,
|
|
46
|
+
step: howTo.map((step, index) => ({ '@type': 'HowToStep', position: index + 1, name: step.name, text: step.text })),
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
const appSchema: WithContext<SoftwareApplication> = {
|
|
50
|
+
'@context': 'https://schema.org',
|
|
51
|
+
'@type': 'SoftwareApplication',
|
|
52
|
+
name: title,
|
|
53
|
+
description,
|
|
54
|
+
applicationCategory: 'UtilityApplication',
|
|
55
|
+
operatingSystem: 'All',
|
|
56
|
+
offers: { '@type': 'Offer', price: '0', priceCurrency: 'EUR' },
|
|
57
|
+
inLanguage: 'pl',
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
export const content: ToolLocaleContent<ExcavationCalculatorUI> = {
|
|
61
|
+
slug,
|
|
62
|
+
title,
|
|
63
|
+
description,
|
|
64
|
+
faqTitle: 'Często Zadawane Pytania',
|
|
65
|
+
faq,
|
|
66
|
+
bibliographyTitle: 'Źródła i uwagi techniczne',
|
|
67
|
+
bibliography: excavationVolumeCalculatorBibliography,
|
|
68
|
+
howTo,
|
|
69
|
+
schemas: [faqSchema, howToSchema, appSchema],
|
|
70
|
+
seo: [
|
|
71
|
+
{ type: 'title', text: 'Dwie objętości odpowiadające na dwa pytania na budowie', level: 2 },
|
|
72
|
+
{ type: 'paragraph', html: '<strong>Objętość w gruncie</strong> (tzw. stan rodzimy) to czysta geometria nienaruszonego terenu: długość razy szerokość razy głębokość wykopu. <strong>Objętość luźna</strong> wskazuje, ile realnej przestrzeni zajmie wykopana ziemia po spęcznieniu na ciężarówce, w kontenerze na odpady lub na tymczasowej pryzmie. Rozdzielenie tych dwóch wartości zapobiega błędnemu szacowaniu zapotrzebowania na wywóz.' },
|
|
73
|
+
{ type: 'title', text: 'Wykorzystaj przedział luźny do organizacji transportu', level: 3 },
|
|
74
|
+
{ type: 'paragraph', html: 'Wybierz najbardziej odpowiadający profil gruntu w kalkulatorze i porównaj dolną oraz górną granicę spęcznienia z ładownością ciężarówek, rozmiarem kontenerów wywozowych oraz dostępną powierzchnią placu składowego. Przedział pokazany jest celowo, gdyż metoda wykopu i wilgotność ziemi znacząco wpływają na wynik.' },
|
|
75
|
+
{ type: 'tip', title: 'Szacunek spęcznienia nie zastępuje badań laboratoryjnych', html: 'Wilgotność, poziom wód gruntowych i stopień zagęszczenia wpływają na rzeczywisty przyrost objętości. Do projektowania fundamentów, ścian oporowych czy wywozu gruntów skażonych konieczne są badania geotechniczne.' },
|
|
76
|
+
{ type: 'title', text: 'Sprawdź założenia przed zamówieniem transportu', level: 3 },
|
|
77
|
+
{ type: 'paragraph', html: 'W przypadku niepewności co do dokładnego rodzaju gruntu warto wykonać symulację dla dwóch prawdopodobnych profili i założyć wyższe zapotrzebowanie transportowe do czasu przeprowadzenia pomiarów w terenie.' },
|
|
78
|
+
],
|
|
79
|
+
ui: {
|
|
80
|
+
unitSystemLabel: 'System miar',
|
|
81
|
+
unitMetric: 'Metryczny',
|
|
82
|
+
unitImperial: 'Imperialny',
|
|
83
|
+
onboarding: 'Wprowadź wymiary wykopu, wybierz rodzaj gruntu i wykorzystaj wyniki do planowania prac i wywozu.',
|
|
84
|
+
dimensionLabel: 'Wymiary wykopu',
|
|
85
|
+
lengthLabel: 'Długość',
|
|
86
|
+
widthLabel: 'Szerokość',
|
|
87
|
+
depthLabel: 'Głębokość',
|
|
88
|
+
soilLabel: 'Rodzaj gruntu',
|
|
89
|
+
soilSand: 'Piasek',
|
|
90
|
+
soilTopsoil: 'Humus / Ziemia roślinna',
|
|
91
|
+
soilClay: 'Glina',
|
|
92
|
+
soilGravel: 'Żwir',
|
|
93
|
+
soilSandBand: 'Spęcznienie 10 do 15%',
|
|
94
|
+
soilTopsoilBand: 'Spęcznienie 15 do 25%',
|
|
95
|
+
soilClayBand: 'Spęcznienie 25 do 40%',
|
|
96
|
+
soilGravelBand: 'Spęcznienie 15 do 25%',
|
|
97
|
+
bankVolumeLabel: 'Objętość w gruncie',
|
|
98
|
+
bankVolumeHelp: 'Grunt w stanie rodzimym',
|
|
99
|
+
looseVolumeLabel: 'Objętość w stanie luźnym',
|
|
100
|
+
looseVolumeHelp: 'Szacowany przedział po wykopaniu',
|
|
101
|
+
expansionLabel: 'Zastosowane spęcznienie',
|
|
102
|
+
expansionHelp: 'Przedział dla wybranego gruntu',
|
|
103
|
+
sceneTitle: 'Od wykopu do pryzmy',
|
|
104
|
+
sceneBank: 'w gruncie',
|
|
105
|
+
sceneLoose: 'materiały luźne',
|
|
106
|
+
sceneGround: 'poziom terenu',
|
|
107
|
+
sceneCut: 'wykonany wykop',
|
|
108
|
+
interpretationTitle: 'Jak interpretować wyniki.',
|
|
109
|
+
interpretationText: 'Pierwsza liczba wskazuje objętość dółu. Przedział wskazuje przestrzeń potrzebną na wykopaną ziemię.',
|
|
110
|
+
warning: 'Wartości orientacyjne do celów logistycznych. Wilgotność i metoda wykopu zmieniają rzeczywistą objętość luźną.',
|
|
111
|
+
unitLengthMetric: 'm',
|
|
112
|
+
unitLengthImperial: 'ft',
|
|
113
|
+
unitVolumeMetric: 'm³',
|
|
114
|
+
unitVolumeImperial: 'ft³',
|
|
115
|
+
soilStatusLow: 'niskie spęcznienie',
|
|
116
|
+
soilStatusMedium: 'umiarkowane spęcznienie',
|
|
117
|
+
soilStatusHigh: 'wysokie spęcznienie',
|
|
118
|
+
soilStatusLabel: 'Pasmo planowania',
|
|
119
|
+
},
|
|
120
|
+
};
|