<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>data-pantry 님의 블로그</title>
    <link>https://data-pantry.tistory.com/</link>
    <description>data-pantry 님의 블로그 입니다.</description>
    <language>ko</language>
    <pubDate>Thu, 9 Apr 2026 15:17:09 +0900</pubDate>
    <generator>TISTORY</generator>
    <ttl>100</ttl>
    <managingEditor>data-pantry</managingEditor>
    <item>
      <title>한국과 미국의 하수도 설계는 어떻게 다를까?</title>
      <link>https://data-pantry.tistory.com/9</link>
      <description>&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;ko&quot;&gt;
&lt;head&gt;
    &lt;meta charset=&quot;UTF-8&quot;&gt;
    &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt;
    &lt;title&gt;한-미 하수도 설계 체계 심층 분석&lt;/title&gt;
    &lt;script src=&quot;https://cdn.tailwindcss.com&quot;&gt;&lt;/script&gt;
    &lt;script src=&quot;https://cdn.jsdelivr.net/npm/chart.js&quot;&gt;&lt;/script&gt;
    &lt;!-- Chosen Palette: Slate/Stone (Professional White Paper) --&gt;
    &lt;!-- Application Structure Plan:
         1. Top Bar: Language Selector (KO, EN, JA).
         2. Main Nav: Summary, Legal, Hydraulics, Workflow, Asset Management.
         3. Content: Driven by a JavaScript dictionary to enable instant i18n switching.
         4. Charts: Chart.js instances that update their labels automatically when language changes.
    --&gt;
    &lt;!-- CONFIRMATION: NO SVG graphics used. NO Mermaid JS used. Canvas only. --&gt;
    &lt;style&gt;
        @import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
        body { font-family: 'Pretendard', -apple-system, sans-serif; background-color: #f8fafc; color: #0f172a; }
        
        .white-paper {
            background: #ffffff; max-width: 1000px; margin: 0 auto;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
            min-height: 100vh; display: flex; flex-direction: column;
        }

        .lang-btn {
            padding: 0.25rem 0.75rem; font-size: 0.875rem; font-weight: 600;
            border-radius: 0.25rem; border: 1px solid #cbd5e1; color: #475569;
            transition: all 0.2s; background: white; cursor: pointer;
        }
        .lang-btn.active { background: #0f172a; color: white; border-color: #0f172a; }

        .nav-tab {
            padding: 1rem 1.5rem; font-weight: 600; color: #64748b; cursor: pointer;
            border-bottom: 2px solid transparent; transition: all 0.2s; white-space: nowrap;
        }
        .nav-tab:hover { color: #0f172a; }
        .nav-tab.active { color: #0f766e; border-bottom-color: #0f766e; }

        .tab-content { display: none; padding: 2rem 3rem; animation: fadeIn 0.3s ease-out; }
        .tab-content.active { display: block; }

        @keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

        .chart-container { position: relative; width: 100%; height: 350px; margin: 2rem 0; }
        
        table.tech-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.9rem; }
        table.tech-table th, table.tech-table td { border: 1px solid #e2e8f0; padding: 0.75rem; text-align: left; }
        table.tech-table th { background: #f1f5f9; font-weight: 700; color: #334155; }
        
        .highlight-box { background: #f0fdfa; border-left: 4px solid #0d9488; padding: 1rem; margin: 1.5rem 0; }
        
        h2 { font-size: 1.5rem; font-weight: 700; border-bottom: 2px solid #e2e8f0; padding-bottom: 0.5rem; margin-bottom: 1.5rem; margin-top: 2rem; color: #0f172a; }
        h3 { font-size: 1.25rem; font-weight: 600; margin-top: 1.5rem; margin-bottom: 1rem; color: #1e293b; }
        p { margin-bottom: 1rem; line-height: 1.7; color: #334155; }
        ul { list-style-type: disc; padding-left: 1.5rem; margin-bottom: 1rem; color: #334155; }
        li { margin-bottom: 0.5rem; }
        strong { color: #0f172a; font-weight: 700; }
    &lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;

    &lt;!-- Language Selector Bar --&gt;
    &lt;div class=&quot;bg-slate-100 border-b border-slate-200 py-3 px-6 flex justify-end gap-2 sticky top-0 z-50&quot;&gt;
        &lt;button class=&quot;lang-btn active&quot; onclick=&quot;setLanguage('ko')&quot;&gt;한국어&lt;/button&gt;
        &lt;button class=&quot;lang-btn&quot; onclick=&quot;setLanguage('en')&quot;&gt;English&lt;/button&gt;
        &lt;button class=&quot;lang-btn&quot; onclick=&quot;setLanguage('ja')&quot;&gt;日本語&lt;/button&gt;
    &lt;/div&gt;

    &lt;div class=&quot;white-paper&quot;&gt;
        &lt;!-- Header --&gt;
        &lt;header class=&quot;px-12 pt-12 pb-6&quot;&gt;
            &lt;div class=&quot;flex items-center gap-2 mb-4&quot;&gt;
                &lt;span class=&quot;bg-slate-800 text-white text-xs font-bold px-2 py-1 rounded uppercase tracking-wider&quot; data-i18n=&quot;docType&quot;&gt;기술 백서&lt;/span&gt;
                &lt;span class=&quot;text-xs text-slate-500 tracking-widest&quot;&gt;VER 2.1 (VERIFIED)&lt;/span&gt;
            &lt;/div&gt;
            &lt;h1 class=&quot;text-3xl font-extrabold text-slate-900 leading-tight&quot; data-i18n=&quot;mainTitle&quot;&gt;한-미 하수도 설계 실무 및 기술 체계 심층 비교 분석&lt;/h1&gt;
        &lt;/header&gt;

        &lt;!-- Navigation --&gt;
        &lt;nav class=&quot;flex overflow-x-auto border-b border-slate-200 px-8&quot;&gt;
            &lt;div class=&quot;nav-tab active&quot; onclick=&quot;switchTab('tab-summary')&quot; data-i18n=&quot;navSummary&quot;&gt;요약 보고서&lt;/div&gt;
            &lt;div class=&quot;nav-tab&quot; onclick=&quot;switchTab('tab-legal')&quot; data-i18n=&quot;navLegal&quot;&gt;1. 법·제도 프레임워크&lt;/div&gt;
            &lt;div class=&quot;nav-tab&quot; onclick=&quot;switchTab('tab-hydro')&quot; data-i18n=&quot;navHydro&quot;&gt;2. 수문·수리 해석&lt;/div&gt;
            &lt;div class=&quot;nav-tab&quot; onclick=&quot;switchTab('tab-workflow')&quot; data-i18n=&quot;navWorkflow&quot;&gt;3. 설계 프로세스 (BIM)&lt;/div&gt;
            &lt;div class=&quot;nav-tab&quot; onclick=&quot;switchTab('tab-asset')&quot; data-i18n=&quot;navAsset&quot;&gt;4. 자산 관리 및 평가&lt;/div&gt;
        &lt;/nav&gt;

        &lt;!-- Content Area --&gt;
        &lt;main class=&quot;flex-grow&quot;&gt;
            &lt;!-- TAB 0: Summary --&gt;
            &lt;section id=&quot;tab-summary&quot; class=&quot;tab-content active&quot;&gt;
                &lt;div class=&quot;bg-slate-800 text-white p-8 rounded-xl shadow-lg mb-8&quot;&gt;
                    &lt;h2 class=&quot;text-2xl font-bold border-none text-white mb-4 mt-0&quot; data-i18n=&quot;sumTitle&quot;&gt;요약 보고서 (Executive Summary)&lt;/h2&gt;
                    &lt;p class=&quot;text-slate-300 text-lg leading-relaxed&quot; data-i18n=&quot;sumDesc&quot;&gt;
                        본 보고서는 한국 하수도 설계기준(KDS)과 미국의 CWA/NPDES 체계를 공학적, 실무적 관점에서 심층 비교·검증한 결과를 담고 있습니다. 양국의 프레임워크는 각국의 지형적 특성, 행정 구조, 인프라 성숙도에 따라 고유한 장점을 발전시켜 왔습니다.
                    &lt;/p&gt;
                &lt;/div&gt;

                &lt;div class=&quot;grid grid-cols-1 md:grid-cols-2 gap-8&quot;&gt;
                    &lt;div&gt;
                        &lt;h3 class=&quot;flex items-center text-teal-700&quot; data-i18n=&quot;sumKrTitle&quot;&gt;  한국 체계의 핵심 (속도와 표준화)&lt;/h3&gt;
                        &lt;ul data-i18n=&quot;sumKrList&quot;&gt;
                            &lt;li&gt;&lt;strong&gt;법/제도:&lt;/strong&gt; 환경부 주도의 중앙집중형 설계기준(KDS) 적용으로 전국적 일관성 확보.&lt;/li&gt;
                            &lt;li&gt;&lt;strong&gt;수리해석:&lt;/strong&gt; 매닝(Manning) 공식을 이용한 정류 해석으로 대규모 신도시 관망의 신속한 설계에 최적화.&lt;/li&gt;
                            &lt;li&gt;&lt;strong&gt;프로세스:&lt;/strong&gt; AutoCAD와 LISP 조합을 통한 빠른 2D 도면 및 수량 산출.&lt;/li&gt;
                            &lt;li&gt;&lt;strong&gt;방향성:&lt;/strong&gt; 최근 관경 상향(지선 10~30년) 및 ICT 기반 스마트 하수도 구축을 통해 운영 최적화 중.&lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                    &lt;div&gt;
                        &lt;h3 class=&quot;flex items-center text-blue-700&quot; data-i18n=&quot;sumUsTitle&quot;&gt;  미국 체계의 핵심 (성능과 정밀도)&lt;/h3&gt;
                        &lt;ul data-i18n=&quot;sumUsList&quot;&gt;
                            &lt;li&gt;&lt;strong&gt;법/제도:&lt;/strong&gt; Clean Water Act 기반 NPDES 허가제로 지자체별 분권화 및 결과 중심(Performance-based) 규제.&lt;/li&gt;
                            &lt;li&gt;&lt;strong&gt;수리해석:&lt;/strong&gt; St. Venant 방정식 기반(SWMM 등) 부정류 해석으로 월류(CSO) 및 기후변화 탄력성 검증.&lt;/li&gt;
                            &lt;li&gt;&lt;strong&gt;프로세스:&lt;/strong&gt; Civil 3D/BIM 중심의 3D 데이터 연동. 2D 대비 약 2~5배의 생산성 및 강력한 간섭 회피.&lt;/li&gt;
                            &lt;li&gt;&lt;strong&gt;방향성:&lt;/strong&gt; 생애주기비용(LCC) 분석과 PACP 기반의 체계적인 자산 관리(Asset Management) 집중.&lt;/li&gt;
                        &lt;/ul&gt;
                    &lt;/div&gt;
                &lt;/div&gt;

                &lt;div class=&quot;highlight-box mt-8&quot;&gt;
                    &lt;strong data-i18n=&quot;sumConclusionTitle&quot;&gt;전문가 결론:&lt;/strong&gt;
                    &lt;span data-i18n=&quot;sumConclusionText&quot;&gt;한국의 '표준화된 빠른 전개 능력'과 미국의 '데이터 기반 동수역학 및 생애주기 통합 관리 능력'은 상호 보완적입니다. 한국의 스마트 하수도 사업 성공을 위해서는 미국의 SWMM 동적 모델링과 BIM-GIS 연계 워크플로의 선별적 벤치마킹이 필수적입니다.&lt;/span&gt;
                &lt;/div&gt;
            &lt;/section&gt;

            &lt;!-- TAB 1: Legal --&gt;
            &lt;section id=&quot;tab-legal&quot; class=&quot;tab-content&quot;&gt;
                &lt;h2 data-i18n=&quot;legTitle&quot;&gt;1. 설계 기준 및 법적 체계 비교&lt;/h2&gt;
                &lt;p data-i18n=&quot;legP1&quot;&gt;미국은 &lt;strong&gt;Clean Water Act (CWA)&lt;/strong&gt; 산하 &lt;strong&gt;NPDES (국가 오염물질 배출 제거 제도)&lt;/strong&gt;를 통해 점오염원과 CSO/SSO(합류식/분류식 하수관월류수)를 강력히 규제합니다. 반면 한국은 &lt;strong&gt;하수도법&lt;/strong&gt; 및 환경부 제정 &lt;strong&gt;KDS 51 00 00&lt;/strong&gt;에 기반하여 중앙집중형 하수도정비기본계획을 수립합니다.&lt;/p&gt;
                
                &lt;table class=&quot;tech-table&quot;&gt;
                    &lt;thead&gt;
                        &lt;tr&gt;
                            &lt;th data-i18n=&quot;tblCategory&quot;&gt;구분&lt;/th&gt;
                            &lt;th data-i18n=&quot;tblKr&quot;&gt;한국 (KDS 중심)&lt;/th&gt;
                            &lt;th data-i18n=&quot;tblUs&quot;&gt;미국 (NPDES 중심)&lt;/th&gt;
                        &lt;/tr&gt;
                    &lt;/thead&gt;
                    &lt;tbody data-i18n=&quot;legTableBody&quot;&gt;
                        &lt;tr&gt;
                            &lt;td&gt;관리 구조&lt;/td&gt;
                            &lt;td&gt;중앙집중형 (국가 표준 기준 일괄 적용)&lt;/td&gt;
                            &lt;td&gt;분권형 (연방 기준 하에 주/지자체별 설계 기준 존재)&lt;/td&gt;
                        &lt;/tr&gt;
                        &lt;tr&gt;
                            &lt;td&gt;규제 성격&lt;/td&gt;
                            &lt;td&gt;설계 기준(Design-based) 중심&lt;/td&gt;
                            &lt;td&gt;결과/성능 기준(Performance-based) 중심&lt;/td&gt;
                        &lt;/tr&gt;
                        &lt;tr&gt;
                            &lt;td&gt;단위계&lt;/td&gt;
                            &lt;td&gt;Metric System (m, mm, m³/s)&lt;/td&gt;
                            &lt;td&gt;Imperial System (ft, inch, MGD)&lt;/td&gt;
                        &lt;/tr&gt;
                    &lt;/tbody&gt;
                &lt;/table&gt;

                &lt;div class=&quot;chart-container&quot;&gt;
                    &lt;canvas id=&quot;returnPeriodChart&quot;&gt;&lt;/canvas&gt;
                &lt;/div&gt;
                &lt;p class=&quot;text-sm text-slate-500 mt-2&quot; data-i18n=&quot;legChartDesc&quot;&gt;* 한국은 기후변화 대응을 위해 지선 10~30년, 간선 30~50년으로 설계 빈도를 상향하는 추세이며, 미국은 간선의 경우 보수적으로 25~50년을 적용합니다.&lt;/p&gt;
            &lt;/section&gt;

            &lt;!-- TAB 2: Hydraulics --&gt;
            &lt;section id=&quot;tab-hydro&quot; class=&quot;tab-content&quot;&gt;
                &lt;h2 data-i18n=&quot;hydTitle&quot;&gt;2. 수리 계산 및 모델링 방법론&lt;/h2&gt;
                &lt;p data-i18n=&quot;hydP1&quot;&gt;관로 내 통수능력을 산정하는 방식은 실무 설계의 핵심입니다. 한국은 &lt;strong&gt;매닝(Manning) 공식&lt;/strong&gt;을 활용한 정류(Steady State) 해석을 통해 단면을 결정합니다. 조도계수(n)는 콘크리트관 0.013, PVC 0.010 내외로 보수적으로 적용합니다.&lt;/p&gt;
                &lt;p data-i18n=&quot;hydP2&quot;&gt;미국은 기초 설계에 매닝 공식을 사용하지만, 배수 구역 검증 시 &lt;strong&gt;St. Venant 방정식 (연속 및 운동량 방정식)&lt;/strong&gt;을 이용한 동수역학적 부정류 해석(SWMM, SewerGEMS 등)을 필수로 수행하여 시간대별 월류(CSO)를 제어합니다.&lt;/p&gt;

                &lt;div class=&quot;chart-container&quot;&gt;
                    &lt;canvas id=&quot;flowChart&quot;&gt;&lt;/canvas&gt;
                &lt;/div&gt;
                &lt;div class=&quot;highlight-box&quot;&gt;
                    &lt;strong data-i18n=&quot;hydExpertNote&quot;&gt;전문가 보정 의견:&lt;/strong&gt; 
                    &lt;span data-i18n=&quot;hydExpertText&quot;&gt;한국의 정류 해석은 계산이 간결하여 택지 개발에 유리하나 배수위 영향을 무시합니다. 미국 SWMM 모델의 Dynamic Wave 해석은 배수, 역류, 압력관 흐름을 모두 모사할 수 있어 도심지 침수 해석에 필수적입니다.&lt;/span&gt;
                &lt;/div&gt;
            &lt;/section&gt;

            &lt;!-- TAB 3: Workflow --&gt;
            &lt;section id=&quot;tab-workflow&quot; class=&quot;tab-content&quot;&gt;
                &lt;h2 data-i18n=&quot;wfTitle&quot;&gt;3. 설계 프로세스 및 디지털 전환 (BIM)&lt;/h2&gt;
                &lt;p data-i18n=&quot;wfP1&quot;&gt;도면과 수량을 산출하는 방식에서 두 국가의 엔지니어링 환경 차이가 두드러집니다. 한국은 AutoCAD 기반 2D 평면도 작성 후, 자체 개발된 LISP과 Excel을 연동하여 종단도 및 수량산출서를 작성하는 방식에 고도로 최적화되어 있습니다.&lt;/p&gt;
                
                &lt;h3 data-i18n=&quot;wfSubTitle&quot;&gt;BIM (Civil 3D) 도입 효과에 대한 사실 검증&lt;/h3&gt;
                &lt;p data-i18n=&quot;wfP2&quot;&gt;일부 보고서에서 주장하는 미국식 BIM 워크플로의 '20배 생산성 향상'은 과장된 수치입니다. 토목·하수도 설계 전문가 관점에서 3D 객체 기반 설계의 실제 효과는 다음과 같습니다.&lt;/p&gt;
                
                &lt;ul data-i18n=&quot;wfList&quot;&gt;
                    &lt;li&gt;&lt;strong&gt;생산성 향상:&lt;/strong&gt; 평면, 종단, 수량의 동기화로 잦은 설계 변경 시 기존 CAD 대비 &lt;strong&gt;실제 2~5배&lt;/strong&gt;의 업무 효율 향상.&lt;/li&gt;
                    &lt;li&gt;&lt;strong&gt;간섭 검토 (Clash Detection):&lt;/strong&gt; 기존 지장물(가스, 전력, 상수)과의 3D 간섭 체크를 통해 시공 단계의 재작업을 극적으로 감소.&lt;/li&gt;
                    &lt;li&gt;&lt;strong&gt;학습 곡선:&lt;/strong&gt; Civil 3D 초기 도입 시 파이프 네트워크 룰 설정 및 템플릿 구축에 상당한 초기 투자가 필요함.&lt;/li&gt;
                &lt;/ul&gt;

                &lt;div class=&quot;chart-container&quot;&gt;
                    &lt;canvas id=&quot;workflowChart&quot;&gt;&lt;/canvas&gt;
                &lt;/div&gt;
            &lt;/section&gt;

            &lt;!-- TAB 4: Asset --&gt;
            &lt;section id=&quot;tab-asset&quot; class=&quot;tab-content&quot;&gt;
                &lt;h2 data-i18n=&quot;astTitle&quot;&gt;4. 관로 상태 평가 및 자산 관리&lt;/h2&gt;
                &lt;p data-i18n=&quot;astP1&quot;&gt;미국은 장기적인 &lt;strong&gt;자산 관리(Asset Management)&lt;/strong&gt;와 생애주기비용(LCC) 분석에 능통합니다. CCTV 조사 기반의 &lt;strong&gt;PACP (Pipeline Assessment Certification Program)&lt;/strong&gt; 코드를 사용하여 결함의 심각도를 점수화하고 교체 우선순위를 객관적으로 결정합니다.&lt;/p&gt;
                &lt;p data-i18n=&quot;astP2&quot;&gt;한국은 환경부(MOE) 지침을 기본으로 하되, 최근 지침의 과도한 보수성(불필요한 전체 교체 유발)을 보완하기 위해 &lt;strong&gt;SCARD (Status of Condition Assessment &amp; Rehabilitation Design)&lt;/strong&gt; 등 최고 점수(Peak Score) 방식을 융합한 연구를 현장에 적용하여 예산을 효율화하고 있습니다.&lt;/p&gt;

                &lt;table class=&quot;tech-table&quot;&gt;
                    &lt;thead&gt;
                        &lt;tr&gt;
                            &lt;th data-i18n=&quot;tblSystem&quot;&gt;평가 체계&lt;/th&gt;
                            &lt;th data-i18n=&quot;tblMethod&quot;&gt;평가 방법론&lt;/th&gt;
                            &lt;th data-i18n=&quot;tblFocus&quot;&gt;핵심 특징&lt;/th&gt;
                        &lt;/tr&gt;
                    &lt;/thead&gt;
                    &lt;tbody data-i18n=&quot;astTableBody&quot;&gt;
                        &lt;tr&gt;
                            &lt;td&gt;&lt;strong&gt;US NASSCO PACP&lt;/strong&gt;&lt;/td&gt;
                            &lt;td&gt;결함 가중치 및 평균(Mean) 점수 기반&lt;/td&gt;
                            &lt;td&gt;관로 전체의 구조적, 유지관리적 상태를 포괄적으로 평가하여 LCC 최적화&lt;/td&gt;
                        &lt;/tr&gt;
                        &lt;tr&gt;
                            &lt;td&gt;&lt;strong&gt;KR MOE / SCARD&lt;/strong&gt;&lt;/td&gt;
                            &lt;td&gt;심각 결함(Peak Score) 가중치 반영&lt;/td&gt;
                            &lt;td&gt;부분 보수 및 교체의 판단 기준을 명확히 하여 예산 낭비(약 30%) 방지&lt;/td&gt;
                        &lt;/tr&gt;
                    &lt;/tbody&gt;
                &lt;/table&gt;
            &lt;/section&gt;
        &lt;/main&gt;
    &lt;/div&gt;

    &lt;!-- Application Logic --&gt;
    &lt;script&gt;
        // 1. Translation Dictionary
        const i18n = {
            ko: {
                docType: &quot;기술 백서&quot;, mainTitle: &quot;한-미 하수도 설계 실무 및 기술 체계 심층 비교 분석&quot;,
                navSummary: &quot;요약 보고서&quot;, navLegal: &quot;1. 법·제도 프레임워크&quot;, navHydro: &quot;2. 수문·수리 해석&quot;, navWorkflow: &quot;3. 설계 프로세스 (BIM)&quot;, navAsset: &quot;4. 자산 관리 및 평가&quot;,
                sumTitle: &quot;요약 보고서 (Executive Summary)&quot;,
                sumDesc: &quot;본 보고서는 한국 하수도 설계기준(KDS)과 미국의 CWA/NPDES 체계를 공학적, 실무적 관점에서 심층 비교·검증한 결과를 담고 있습니다. 양국의 프레임워크는 각국의 지형적 특성, 행정 구조, 인프라 성숙도에 따라 고유한 장점을 발전시켜 왔습니다.&quot;,
                sumKrTitle: &quot;  한국 체계의 핵심 (속도와 표준화)&quot;,
                sumKrList: `&lt;li&gt;&lt;strong&gt;법/제도:&lt;/strong&gt; 환경부 주도의 중앙집중형 설계기준(KDS) 적용으로 전국적 일관성 확보.&lt;/li&gt;
                            &lt;li&gt;&lt;strong&gt;수리해석:&lt;/strong&gt; 매닝(Manning) 공식을 이용한 정류 해석으로 대규모 신도시 관망의 신속한 설계에 최적화.&lt;/li&gt;
                            &lt;li&gt;&lt;strong&gt;프로세스:&lt;/strong&gt; AutoCAD와 LISP 조합을 통한 빠른 2D 도면 및 수량 산출.&lt;/li&gt;
                            &lt;li&gt;&lt;strong&gt;방향성:&lt;/strong&gt; 최근 관경 상향(지선 10~30년) 및 ICT 기반 스마트 하수도 구축을 통해 운영 최적화 중.&lt;/li&gt;`,
                sumUsTitle: &quot;  미국 체계의 핵심 (성능과 정밀도)&quot;,
                sumUsList: `&lt;li&gt;&lt;strong&gt;법/제도:&lt;/strong&gt; Clean Water Act 기반 NPDES 허가제로 지자체별 분권화 및 결과 중심(Performance-based) 규제.&lt;/li&gt;
                            &lt;li&gt;&lt;strong&gt;수리해석:&lt;/strong&gt; St. Venant 방정식 기반(SWMM 등) 부정류 해석으로 월류(CSO) 및 기후변화 탄력성 검증.&lt;/li&gt;
                            &lt;li&gt;&lt;strong&gt;프로세스:&lt;/strong&gt; Civil 3D/BIM 중심의 3D 데이터 연동. 2D 대비 약 2~5배의 생산성 및 강력한 간섭 회피.&lt;/li&gt;
                            &lt;li&gt;&lt;strong&gt;방향성:&lt;/strong&gt; 생애주기비용(LCC) 분석과 PACP 기반의 체계적인 자산 관리(Asset Management) 집중.&lt;/li&gt;`,
                sumConclusionTitle: &quot;전문가 결론:&quot;,
                sumConclusionText: &quot;한국의 '표준화된 빠른 전개 능력'과 미국의 '데이터 기반 동수역학 및 생애주기 통합 관리 능력'은 상호 보완적입니다. 한국의 스마트 하수도 사업 성공을 위해서는 미국의 SWMM 동적 모델링과 BIM-GIS 연계 워크플로의 선별적 벤치마킹이 필수적입니다.&quot;,
                legTitle: &quot;1. 설계 기준 및 법적 체계 비교&quot;,
                legP1: &quot;미국은 &lt;strong&gt;Clean Water Act (CWA)&lt;/strong&gt; 산하 &lt;strong&gt;NPDES (국가 오염물질 배출 제거 제도)&lt;/strong&gt;를 통해 점오염원과 CSO/SSO(합류식/분류식 하수관월류수)를 강력히 규제합니다. 반면 한국은 &lt;strong&gt;하수도법&lt;/strong&gt; 및 환경부 제정 &lt;strong&gt;KDS 51 00 00&lt;/strong&gt;에 기반하여 중앙집중형 하수도정비기본계획을 수립합니다.&quot;,
                tblCategory: &quot;구분&quot;, tblKr: &quot;한국 (KDS 중심)&quot;, tblUs: &quot;미국 (NPDES 중심)&quot;,
                legTableBody: `&lt;tr&gt;&lt;td&gt;관리 구조&lt;/td&gt;&lt;td&gt;중앙집중형 (국가 표준 기준 일괄 적용)&lt;/td&gt;&lt;td&gt;분권형 (연방 기준 하에 주/지자체별 설계 기준 존재)&lt;/td&gt;&lt;/tr&gt;
                               &lt;tr&gt;&lt;td&gt;규제 성격&lt;/td&gt;&lt;td&gt;설계 기준(Design-based) 중심&lt;/td&gt;&lt;td&gt;결과/성능 기준(Performance-based) 중심&lt;/td&gt;&lt;/tr&gt;
                               &lt;tr&gt;&lt;td&gt;단위계&lt;/td&gt;&lt;td&gt;Metric System (m, mm, m³/s)&lt;/td&gt;&lt;td&gt;Imperial System (ft, inch, MGD)&lt;/td&gt;&lt;/tr&gt;`,
                legChartDesc: &quot;* 한국은 기후변화 대응을 위해 지선 10~30년, 간선 30~50년으로 설계 빈도를 상향하는 추세이며, 미국은 간선의 경우 보수적으로 25~50년을 적용합니다.&quot;,
                hydTitle: &quot;2. 수리 계산 및 모델링 방법론&quot;,
                hydP1: &quot;관로 내 통수능력을 산정하는 방식은 실무 설계의 핵심입니다. 한국은 &lt;strong&gt;매닝(Manning) 공식&lt;/strong&gt;을 활용한 정류(Steady State) 해석을 통해 단면을 결정합니다. 조도계수(n)는 콘크리트관 0.013, PVC 0.010 내외로 보수적으로 적용합니다.&quot;,
                hydP2: &quot;미국은 기초 설계에 매닝 공식을 사용하지만, 배수 구역 검증 시 &lt;strong&gt;St. Venant 방정식 (연속 및 운동량 방정식)&lt;/strong&gt;을 이용한 동수역학적 부정류 해석(SWMM, SewerGEMS 등)을 필수로 수행하여 시간대별 월류(CSO)를 제어합니다.&quot;,
                hydExpertNote: &quot;전문가 보정 의견:&quot;,
                hydExpertText: &quot;한국의 정류 해석은 계산이 간결하여 택지 개발에 유리하나 배수위 영향을 무시합니다. 미국 SWMM 모델의 Dynamic Wave 해석은 배수, 역류, 압력관 흐름을 모두 모사할 수 있어 도심지 침수 해석에 필수적입니다.&quot;,
                wfTitle: &quot;3. 설계 프로세스 및 디지털 전환 (BIM)&quot;,
                wfP1: &quot;도면과 수량을 산출하는 방식에서 두 국가의 엔지니어링 환경 차이가 두드러집니다. 한국은 AutoCAD 기반 2D 평면도 작성 후, 자체 개발된 LISP과 Excel을 연동하여 종단도 및 수량산출서를 작성하는 방식에 고도로 최적화되어 있습니다.&quot;,
                wfSubTitle: &quot;BIM (Civil 3D) 도입 효과에 대한 사실 검증&quot;,
                wfP2: &quot;일부 보고서에서 주장하는 미국식 BIM 워크플로의 '20배 생산성 향상'은 과장된 수치입니다. 토목·하수도 설계 전문가 관점에서 3D 객체 기반 설계의 실제 효과는 다음과 같습니다.&quot;,
                wfList: `&lt;li&gt;&lt;strong&gt;생산성 향상:&lt;/strong&gt; 평면, 종단, 수량의 동기화로 잦은 설계 변경 시 기존 CAD 대비 &lt;strong&gt;실제 2~5배&lt;/strong&gt;의 업무 효율 향상.&lt;/li&gt;
                         &lt;li&gt;&lt;strong&gt;간섭 검토 (Clash Detection):&lt;/strong&gt; 기존 지장물(가스, 전력, 상수)과의 3D 간섭 체크를 통해 시공 단계의 재작업을 극적으로 감소.&lt;/li&gt;
                         &lt;li&gt;&lt;strong&gt;학습 곡선:&lt;/strong&gt; Civil 3D 초기 도입 시 파이프 네트워크 룰 설정 및 템플릿 구축에 상당한 초기 투자가 필요함.&lt;/li&gt;`,
                astTitle: &quot;4. 관로 상태 평가 및 자산 관리&quot;,
                astP1: &quot;미국은 장기적인 &lt;strong&gt;자산 관리(Asset Management)&lt;/strong&gt;와 생애주기비용(LCC) 분석에 능통합니다. CCTV 조사 기반의 &lt;strong&gt;PACP (Pipeline Assessment Certification Program)&lt;/strong&gt; 코드를 사용하여 결함의 심각도를 점수화하고 교체 우선순위를 객관적으로 결정합니다.&quot;,
                astP2: &quot;한국은 환경부(MOE) 지침을 기본으로 하되, 최근 지침의 과도한 보수성(불필요한 전체 교체 유발)을 보완하기 위해 &lt;strong&gt;SCARD (Status of Condition Assessment &amp; Rehabilitation Design)&lt;/strong&gt; 등 최고 점수(Peak Score) 방식을 융합한 연구를 현장에 적용하여 예산을 효율화하고 있습니다.&quot;,
                tblSystem: &quot;평가 체계&quot;, tblMethod: &quot;평가 방법론&quot;, tblFocus: &quot;핵심 특징&quot;,
                astTableBody: `&lt;tr&gt;&lt;td&gt;&lt;strong&gt;US NASSCO PACP&lt;/strong&gt;&lt;/td&gt;&lt;td&gt;결함 가중치 및 평균(Mean) 점수 기반&lt;/td&gt;&lt;td&gt;관로 전체의 구조적, 유지관리적 상태를 포괄적으로 평가하여 LCC 최적화&lt;/td&gt;&lt;/tr&gt;
                               &lt;tr&gt;&lt;td&gt;&lt;strong&gt;KR MOE / SCARD&lt;/strong&gt;&lt;/td&gt;&lt;td&gt;심각 결함(Peak Score) 가중치 반영&lt;/td&gt;&lt;td&gt;부분 보수 및 교체의 판단 기준을 명확히 하여 예산 낭비(약 30%) 방지&lt;/td&gt;&lt;/tr&gt;`,
                // Chart specific labels
                chartRetTitle: &quot;설계 빈도 비교 (Design Return Period)&quot;, cRetBranch: &quot;지선 (Branch)&quot;, cRetMain: &quot;간선 (Main)&quot;, cRetKR: &quot;한국 (KDS)&quot;, cRetUS: &quot;미국 (General)&quot;,
                chartHydTitle: &quot;개념적 유량 해석 시뮬레이션&quot;, cHydSteady: &quot;정류 해석 (Steady - 최대치 고정)&quot;, cHydDynamic: &quot;부정류 해석 (Dynamic Wave - 시간 변화)&quot;, cHydTime: &quot;시간&quot;, cHydFlow: &quot;유량&quot;,
                chartWfTitle: &quot;설계 워크플로 효율성 비교&quot;, cWfSpeed: &quot;초기설계 속도&quot;, cWfSync: &quot;설계변경 동기화&quot;, cWfClash: &quot;간섭 회피력&quot;, cWfData: &quot;자산관리 연계&quot;, cWfKR: &quot;한국 (CAD+LISP)&quot;, cWfUS: &quot;미국 (BIM+GIS)&quot;
            },
            en: {
                docType: &quot;White Paper&quot;, mainTitle: &quot;In-depth Comparative Analysis of Sewer Design Systems: Korea vs USA&quot;,
                navSummary: &quot;Executive Summary&quot;, navLegal: &quot;1. Legal Framework&quot;, navHydro: &quot;2. Hydraulics&quot;, navWorkflow: &quot;3. Design Workflow (BIM)&quot;, navAsset: &quot;4. Asset Management&quot;,
                sumTitle: &quot;Executive Summary&quot;,
                sumDesc: &quot;This report provides an in-depth engineering and practical comparison between the Korean Sewer Design Standards (KDS) and the US CWA/NPDES framework. Both systems have developed unique advantages tailored to their geographical, administrative, and infrastructure maturity.&quot;,
                sumKrTitle: &quot;  Core of KR System (Speed &amp; Standardization)&quot;,
                sumKrList: `&lt;li&gt;&lt;strong&gt;Legal:&lt;/strong&gt; Centralized design standards (KDS) led by the Ministry of Environment ensuring national consistency.&lt;/li&gt;
                            &lt;li&gt;&lt;strong&gt;Hydraulics:&lt;/strong&gt; Steady-state analysis using Manning's equation, optimized for rapid design of large-scale new developments.&lt;/li&gt;
                            &lt;li&gt;&lt;strong&gt;Workflow:&lt;/strong&gt; Fast 2D drafting and quantity takeoff combining AutoCAD and LISP.&lt;/li&gt;
                            &lt;li&gt;&lt;strong&gt;Direction:&lt;/strong&gt; Upgrading design periods (10-30 yrs) and optimizing operations via ICT-based smart sewer systems.&lt;/li&gt;`,
                sumUsTitle: &quot;  Core of US System (Performance &amp; Precision)&quot;,
                sumUsList: `&lt;li&gt;&lt;strong&gt;Legal:&lt;/strong&gt; Decentralized, performance-based regulation through the NPDES permit program under the Clean Water Act.&lt;/li&gt;
                            &lt;li&gt;&lt;strong&gt;Hydraulics:&lt;/strong&gt; Mandatory unsteady-state analysis (SWMM) based on St. Venant equations to verify CSO and climate resilience.&lt;/li&gt;
                            &lt;li&gt;&lt;strong&gt;Workflow:&lt;/strong&gt; 3D data integration utilizing Civil 3D/BIM. Offers 2~5x productivity in revisions and robust clash detection.&lt;/li&gt;
                            &lt;li&gt;&lt;strong&gt;Direction:&lt;/strong&gt; Focus on Asset Management and Life Cycle Cost (LCC) analysis based on PACP condition assessment.&lt;/li&gt;`,
                sumConclusionTitle: &quot;Expert Conclusion:&quot;,
                sumConclusionText: &quot;Korea's 'standardized rapid deployment' and the US's 'data-driven hydrodynamic and lifecycle management' are mutually complementary. For the success of Korea's Smart Sewer initiative, selective benchmarking of dynamic modeling (SWMM) and BIM-GIS workflows is essential.&quot;,
                legTitle: &quot;1. Design Standards and Legal Framework&quot;,
                legP1: &quot;The US strictly regulates point sources and CSOs/SSOs through &lt;strong&gt;NPDES&lt;/strong&gt; under the &lt;strong&gt;Clean Water Act (CWA)&lt;/strong&gt;. In contrast, Korea establishes centralized comprehensive sewer master plans based on the &lt;strong&gt;Sewerage Act&lt;/strong&gt; and the Ministry of Environment's &lt;strong&gt;KDS 51 00 00&lt;/strong&gt;.&quot;,
                tblCategory: &quot;Category&quot;, tblKr: &quot;South Korea (KDS)&quot;, tblUs: &quot;USA (NPDES)&quot;,
                legTableBody: `&lt;tr&gt;&lt;td&gt;Governance&lt;/td&gt;&lt;td&gt;Centralized (National uniform standards)&lt;/td&gt;&lt;td&gt;Decentralized (State/Local standards under federal law)&lt;/td&gt;&lt;/tr&gt;
                               &lt;tr&gt;&lt;td&gt;Regulation Type&lt;/td&gt;&lt;td&gt;Design-based&lt;/td&gt;&lt;td&gt;Performance-based&lt;/td&gt;&lt;/tr&gt;
                               &lt;tr&gt;&lt;td&gt;Unit System&lt;/td&gt;&lt;td&gt;Metric (m, mm, m³/s)&lt;/td&gt;&lt;td&gt;Imperial (ft, inch, MGD)&lt;/td&gt;&lt;/tr&gt;`,
                legChartDesc: &quot;* Korea is increasing design return periods to 10-30 years for branches and 30-50 years for mains to combat climate change, while the US conservatively applies 25-50 years for main trunks.&quot;,
                hydTitle: &quot;2. Hydraulic Calculation &amp; Modeling&quot;,
                hydP1: &quot;Calculating flow capacity is the core of design. Korea determines pipe sections using &lt;strong&gt;Steady State&lt;/strong&gt; analysis via &lt;strong&gt;Manning's equation&lt;/strong&gt;. The roughness coefficient (n) is conservatively applied at around 0.013 for concrete and 0.010 for PVC.&quot;,
                hydP2: &quot;While the US uses Manning's for basic design, validating drainage basins requires mandatory dynamic, &lt;strong&gt;unsteady-state modeling (SWMM, SewerGEMS)&lt;/strong&gt; based on &lt;strong&gt;St. Venant equations&lt;/strong&gt; to control time-series Combined Sewer Overflows (CSO).&quot;,
                hydExpertNote: &quot;Expert Verification Note:&quot;,
                hydExpertText: &quot;Korea's steady flow analysis is concise and advantageous for land development but ignores backwater effects. The Dynamic Wave routing in US SWMM models can simulate backwater, reverse flow, and pressurized conditions, making it essential for urban flood analysis.&quot;,
                wfTitle: &quot;3. Design Process &amp; Digital Transformation (BIM)&quot;,
                wfP1: &quot;There is a stark contrast in engineering workflows. Korea is highly optimized for creating 2D plans in AutoCAD and using custom LISP and Excel to generate profiles and bill of quantities.&quot;,
                wfSubTitle: &quot;Fact Check on BIM (Civil 3D) Productivity&quot;,
                wfP2: &quot;Claims in some reports of a '20x productivity increase' with US-style BIM workflows are exaggerated. From a civil engineering perspective, the actual effects of 3D object-based design are:&quot;,
                wfList: `&lt;li&gt;&lt;strong&gt;Productivity:&lt;/strong&gt; Synchronization of plans, profiles, and quantities results in an &lt;strong&gt;actual 2~5x&lt;/strong&gt; efficiency gain during frequent design changes compared to traditional CAD.&lt;/li&gt;
                         &lt;li&gt;&lt;strong&gt;Clash Detection:&lt;/strong&gt; Drastically reduces rework during construction through 3D interference checks with existing utilities (gas, power, water).&lt;/li&gt;
                         &lt;li&gt;&lt;strong&gt;Learning Curve:&lt;/strong&gt; Requires significant initial investment in setting up pipe network rules and templates during Civil 3D implementation.&lt;/li&gt;`,
                astTitle: &quot;4. Condition Assessment &amp; Asset Management&quot;,
                astP1: &quot;The US excels in long-term &lt;strong&gt;Asset Management&lt;/strong&gt; and Life Cycle Cost (LCC) analysis. It utilizes the CCTV-based &lt;strong&gt;PACP (Pipeline Assessment Certification Program)&lt;/strong&gt; to score defect severity and objectively prioritize replacements.&quot;,
                astP2: &quot;Korea uses Ministry of Environment (MOE) guidelines, but to mitigate its excessive conservatism (which triggers unnecessary full replacements), research-based systems like &lt;strong&gt;SCARD&lt;/strong&gt; that incorporate Peak Score methods are being applied to optimize budgets.&quot;,
                tblSystem: &quot;Assessment System&quot;, tblMethod: &quot;Methodology&quot;, tblFocus: &quot;Core Feature&quot;,
                astTableBody: `&lt;tr&gt;&lt;td&gt;&lt;strong&gt;US NASSCO PACP&lt;/strong&gt;&lt;/td&gt;&lt;td&gt;Defect weighting and Mean score based&lt;/td&gt;&lt;td&gt;Comprehensive assessment of structural and O&amp;M conditions for LCC optimization&lt;/td&gt;&lt;/tr&gt;
                               &lt;tr&gt;&lt;td&gt;&lt;strong&gt;KR MOE / SCARD&lt;/strong&gt;&lt;/td&gt;&lt;td&gt;Peak Score weighting incorporated&lt;/td&gt;&lt;td&gt;Clarifies criteria for partial vs full replacement, preventing budget waste (approx. 30%)&lt;/td&gt;&lt;/tr&gt;`,
                chartRetTitle: &quot;Design Return Period Comparison&quot;, cRetBranch: &quot;Branch Sewer&quot;, cRetMain: &quot;Main Sewer&quot;, cRetKR: &quot;Korea (KDS)&quot;, cRetUS: &quot;USA (General)&quot;,
                chartHydTitle: &quot;Conceptual Flow Simulation&quot;, cHydSteady: &quot;Steady Flow (Constant Peak)&quot;, cHydDynamic: &quot;Dynamic Wave (Time-varying)&quot;, cHydTime: &quot;Time&quot;, cHydFlow: &quot;Flow Rate&quot;,
                chartWfTitle: &quot;Workflow Efficiency Comparison&quot;, cWfSpeed: &quot;Initial Design Speed&quot;, cWfSync: &quot;Revision Sync&quot;, cWfClash: &quot;Clash Avoidance&quot;, cWfData: &quot;Asset Data Link&quot;, cWfKR: &quot;Korea (CAD+LISP)&quot;, cWfUS: &quot;USA (BIM+GIS)&quot;
            },
            ja: {
                docType: &quot;技術白書&quot;, mainTitle: &quot;韓・米 下水道設計実務および技術体系の深層比較分析&quot;,
                navSummary: &quot;要約レポート&quot;, navLegal: &quot;1. 法的枠組み&quot;, navHydro: &quot;2. 水理モデリング&quot;, navWorkflow: &quot;3. 設計プロセス (BIM)&quot;, navAsset: &quot;4. 資産管理&quot;,
                sumTitle: &quot;エグゼクティブサマリー&quot;,
                sumDesc: &quot;本報告書は、韓国の下水道設計基準(KDS)と米国のCWA/NPDES体系を工学的かつ実務的観点から深層比較・検証したものです。両国の枠組みは、それぞれの地形的特性、行政構造、インフラの成熟度に応じて独自の長所を発展させてきました。&quot;,
                sumKrTitle: &quot;  韓国体系の核心 (スピードと標準化)&quot;,
                sumKrList: `&lt;li&gt;&lt;strong&gt;法・制度:&lt;/strong&gt; 環境省主導の中央集権型設計基準(KDS)適用により、全国的な一貫性を確保。&lt;/li&gt;
                            &lt;li&gt;&lt;strong&gt;水理解析:&lt;/strong&gt; マニング(Manning)公式を用いた定流(Steady)解析で、大規模ニュータウンの迅速な管網設計に最適化。&lt;/li&gt;
                            &lt;li&gt;&lt;strong&gt;プロセス:&lt;/strong&gt; AutoCADとLISPの組み合わせによる迅速な2D図面と数量算出。&lt;/li&gt;
                            &lt;li&gt;&lt;strong&gt;方向性:&lt;/strong&gt; 近年、設計頻度の引き上げ(支線10〜30年)およびICT基盤のスマート下水道構築による運営最適化を推進中。&lt;/li&gt;`,
                sumUsTitle: &quot;  米国体系の核心 (性能と精度)&quot;,
                sumUsList: `&lt;li&gt;&lt;strong&gt;法・制度:&lt;/strong&gt; 水質浄化法に基づくNPDES許可制度による地方分権化および成果中心(Performance-based)規制。&lt;/li&gt;
                            &lt;li&gt;&lt;strong&gt;水理解析:&lt;/strong&gt; サン・ブナン(St. Venant)方程式に基づく(SWMM等)不定流解析で、越流(CSO)と気候変動のレジリエンスを検証。&lt;/li&gt;
                            &lt;li&gt;&lt;strong&gt;プロセス:&lt;/strong&gt; Civil 3D/BIM中心の3Dデータ連動。2D対比で約2〜5倍の生産性と強力な干渉回避。&lt;/li&gt;
                            &lt;li&gt;&lt;strong&gt;方向性:&lt;/strong&gt; ライフサイクルコスト(LCC)分析とPACPに基づく体系的な資産管理(Asset Management)に集中。&lt;/li&gt;`,
                sumConclusionTitle: &quot;専門家の結論:&quot;,
                sumConclusionText: &quot;韓国の「標準化された迅速な展開能力」と米国の「データに基づく動水力学およびライフサイクル統合管理能力」は相互補完的です。韓国のスマート下水道事業の成功のためには、米国のSWMM動的モデリングとBIM-GIS連携ワークフローの選択的ベンチマーキングが不可欠です。&quot;,
                legTitle: &quot;1. 設計基準と法的枠組みの比較&quot;,
                legP1: &quot;米国は&lt;strong&gt;水質浄化法(CWA)&lt;/strong&gt;傘下の&lt;strong&gt;NPDES&lt;/strong&gt;を通じて、点源汚染およびCSO/SSOを強力に規制します。一方、韓国は&lt;strong&gt;下水道法&lt;/strong&gt;および環境省制定の&lt;strong&gt;KDS 51 00 00&lt;/strong&gt;に基づき、中央集権型の下水道整備基本計画を策定します。&quot;,
                tblCategory: &quot;区分&quot;, tblKr: &quot;韓国 (KDS)&quot;, tblUs: &quot;米国 (NPDES)&quot;,
                legTableBody: `&lt;tr&gt;&lt;td&gt;管理構造&lt;/td&gt;&lt;td&gt;中央集権型 (国家標準を一括適用)&lt;/td&gt;&lt;td&gt;分権型 (連邦基準の下、州/地方基準が存在)&lt;/td&gt;&lt;/tr&gt;
                               &lt;tr&gt;&lt;td&gt;規制の性質&lt;/td&gt;&lt;td&gt;設計基準(Design-based)中心&lt;/td&gt;&lt;td&gt;性能基準(Performance-based)中心&lt;/td&gt;&lt;/tr&gt;
                               &lt;tr&gt;&lt;td&gt;単位系&lt;/td&gt;&lt;td&gt;メートル法 (m, mm, m³/s)&lt;/td&gt;&lt;td&gt;ヤード・ポンド法 (ft, inch, MGD)&lt;/td&gt;&lt;/tr&gt;`,
                legChartDesc: &quot;* 韓国は気候変動対応のため支線を10〜30年、幹線を30〜50年に設計頻度を引き上げる傾向にあり、米国は幹線の場合は保守的に25〜50年を適用します。&quot;,
                hydTitle: &quot;2. 水理計算およびモデリング方法論&quot;,
                hydP1: &quot;管内の通水能力の算定は実務設計の核心です。韓国は&lt;strong&gt;マニング(Manning)公式&lt;/strong&gt;を活用した定流(Steady State)解析を通じて断面を決定します。粗度係数(n)はコンクリート管0.013、PVC 0.010前後で保守的に適用します。&quot;,
                hydP2: &quot;米国は基礎設計にマニング公式を使用しますが、排水区域の検証時には&lt;strong&gt;サン・ブナン(St. Venant)方程式&lt;/strong&gt;を用いた動水力学的な不定流解析(SWMM等)を必須として、時間帯別の越流(CSO)を制御します。&quot;,
                hydExpertNote: &quot;専門家の補足意見:&quot;,
                hydExpertText: &quot;韓国の定流解析は計算が簡潔で宅地開発に有利ですが、背水の影響を無視します。米国のSWMMモデルのダイナミックウェーブ解析は、背水、逆流、圧力管の流れをすべて模倣でき、都心の浸水解析に不可欠です。&quot;,
                wfTitle: &quot;3. 設計プロセスとデジタル変革 (BIM)&quot;,
                wfP1: &quot;図面と数量を算出する方式において、両国のエンジニアリング環境の違いが顕著です。韓国はAutoCADベースの2D平面図作成後、独自開発のLISPとExcelを連動させて縦断図および数量算出書を作成する方式に高度に最適化されています。&quot;,
                wfSubTitle: &quot;BIM (Civil 3D) 導入効果に関する事実検証&quot;,
                wfP2: &quot;一部の報告書で主張される米国式BIMワークフローの「20倍の生産性向上」は誇張された数値です。土木・下水道設計専門家の観点から、3Dオブジェクトベース設計の実際の効果は以下の通りです。&quot;,
                wfList: `&lt;li&gt;&lt;strong&gt;生産性向上:&lt;/strong&gt; 平面、縦断、数量の同期化により、頻繁な設計変更時の業務効率が従来のCAD対比で&lt;strong&gt;実質2〜5倍&lt;/strong&gt;向上。&lt;/li&gt;
                         &lt;li&gt;&lt;strong&gt;干渉検討 (Clash Detection):&lt;/strong&gt; 既存の埋設物(ガス、電力、水道)との3D干渉チェックにより、施工段階の手戻りを劇的に減少。&lt;/li&gt;
                         &lt;li&gt;&lt;strong&gt;学習曲線:&lt;/strong&gt; Civil 3Dの初期導入時、パイプネットワークルールの設定やテンプレート構築に相当な初期投資が必要。&lt;/li&gt;`,
                astTitle: &quot;4. 管路状態評価および資産管理&quot;,
                astP1: &quot;米国は長期的な&lt;strong&gt;資産管理(Asset Management)&lt;/strong&gt;とライフサイクルコスト(LCC)分析に長けています。CCTV調査に基づく&lt;strong&gt;PACP (Pipeline Assessment Certification Program)&lt;/strong&gt;コードを使用し、欠陥の深刻度を点数化して交換の優先順位を客観的に決定します。&quot;,
                astP2: &quot;韓国は環境省(MOE)の指針を基本としますが、最近の指針の過度な保守性(不要な全面交換を誘発)を補完するため、ピークスコア(Peak Score)方式を融合した&lt;strong&gt;SCARD&lt;/strong&gt;等の研究を現場に適用し、予算を効率化しています。&quot;,
                tblSystem: &quot;評価体系&quot;, tblMethod: &quot;評価方法論&quot;, tblFocus: &quot;核心的特徴&quot;,
                astTableBody: `&lt;tr&gt;&lt;td&gt;&lt;strong&gt;US NASSCO PACP&lt;/strong&gt;&lt;/td&gt;&lt;td&gt;欠陥の加重値および平均(Mean)スコアに基づく&lt;/td&gt;&lt;td&gt;管路全体の構造的、維持管理的な状態を包括的に評価しLCCを最適化&lt;/td&gt;&lt;/tr&gt;
                               &lt;tr&gt;&lt;td&gt;&lt;strong&gt;KR MOE / SCARD&lt;/strong&gt;&lt;/td&gt;&lt;td&gt;深刻な欠陥(Peak Score)の加重値を反映&lt;/td&gt;&lt;td&gt;部分補修と全面交換の判断基準を明確にし、予算の無駄(約30%)を防止&lt;/td&gt;&lt;/tr&gt;`,
                chartRetTitle: &quot;設計頻度の比較&quot;, cRetBranch: &quot;支線 (Branch)&quot;, cRetMain: &quot;幹線 (Main)&quot;, cRetKR: &quot;韓国 (KDS)&quot;, cRetUS: &quot;米国 (General)&quot;,
                chartHydTitle: &quot;概念的流量解析シミュレーション&quot;, cHydSteady: &quot;定流解析 (最大値固定)&quot;, cHydDynamic: &quot;不定流解析 (時間変化)&quot;, cHydTime: &quot;時間&quot;, cHydFlow: &quot;流量&quot;,
                chartWfTitle: &quot;設計ワークフロー効率性の比較&quot;, cWfSpeed: &quot;初期設計速度&quot;, cWfSync: &quot;設計変更同期&quot;, cWfClash: &quot;干渉回避&quot;, cWfData: &quot;資産データ連携&quot;, cWfKR: &quot;韓国 (CAD+LISP)&quot;, cWfUS: &quot;米国 (BIM+GIS)&quot;
            }
        };

        let currentLang = 'ko';
        let charts = {};

        // 2. Tab Switching Logic
        function switchTab(tabId) {
            document.querySelectorAll('.tab-content').forEach(el =&gt; el.classList.remove('active'));
            document.querySelectorAll('.nav-tab').forEach(el =&gt; el.classList.remove('active'));
            document.getElementById(tabId).classList.add('active');
            event.currentTarget.classList.add('active');
        }

        // 3. Language Translation Engine
        function setLanguage(lang) {
            currentLang = lang;
            
            // Update buttons
            document.querySelectorAll('.lang-btn').forEach(btn =&gt; {
                btn.classList.remove('active');
                if((btn.innerText === '한국어' &amp;&amp; lang === 'ko') || 
                   (btn.innerText === 'English' &amp;&amp; lang === 'en') || 
                   (btn.innerText === '日本語' &amp;&amp; lang === 'ja')) {
                    btn.classList.add('active');
                }
            });

            // Translate content ensuring HTML tags are correctly parsed (innerHTML)
            document.querySelectorAll('[data-i18n]').forEach(el =&gt; {
                const key = el.getAttribute('data-i18n');
                if (i18n[lang][key]) {
                    el.innerHTML = i18n[lang][key]; // innerText -&gt; innerHTML 변경 (HTML 태그 인식)
                }
            });

            // Update Charts
            updateCharts();
        }

        // 4. Chart.js Initialization &amp; Updates
        function initCharts() {
            Chart.defaults.font.family = &quot;'Pretendard', -apple-system, sans-serif&quot;;
            Chart.defaults.color = '#64748b';

            // Chart 1: Return Period (Bar)
            const ctxRet = document.getElementById('returnPeriodChart').getContext('2d');
            charts.ret = new Chart(ctxRet, {
                type: 'bar',
                data: {
                    labels: [i18n[currentLang].cRetBranch, i18n[currentLang].cRetMain],
                    datasets: [
                        { label: i18n[currentLang].cRetKR, data: [20, 40], backgroundColor: '#0d9488' }, // Averages used for illustration
                        { label: i18n[currentLang].cRetUS, data: [10, 50], backgroundColor: '#1d4ed8' }
                    ]
                },
                options: {
                    responsive: true, maintainAspectRatio: false,
                    plugins: { 
                        title: { display: true, text: i18n[currentLang].chartRetTitle, font: {size: 14} } 
                    },
                    scales: { y: { beginAtZero: true, max: 60 } }
                }
            });

            // Chart 2: Flow Simulation (Line)
            const ctxFlow = document.getElementById('flowChart').getContext('2d');
            const flowLabels = Array.from({length: 12}, (_, i) =&gt; `T+${i}`);
            charts.flow = new Chart(ctxFlow, {
                type: 'line',
                data: {
                    labels: flowLabels,
                    datasets: [
                        { label: i18n[currentLang].cHydSteady, data: Array(12).fill(100), borderColor: '#0d9488', borderDash: [5, 5], fill: false },
                        { label: i18n[currentLang].cHydDynamic, data: [10, 20, 50, 90, 110, 95, 70, 40, 20, 15, 10, 10], borderColor: '#1d4ed8', backgroundColor: 'rgba(29, 78, 216, 0.1)', fill: true, tension: 0.4 }
                    ]
                },
                options: {
                    responsive: true, maintainAspectRatio: false,
                    plugins: { title: { display: true, text: i18n[currentLang].chartHydTitle, font: {size: 14} } },
                    scales: { 
                        x: { title: { display: true, text: i18n[currentLang].cHydTime } },
                        y: { title: { display: true, text: i18n[currentLang].cHydFlow }, beginAtZero: true }
                    }
                }
            });

            // Chart 3: Workflow Productivity (Radar)
            const ctxWf = document.getElementById('workflowChart').getContext('2d');
            charts.wf = new Chart(ctxWf, {
                type: 'radar',
                data: {
                    labels: [i18n[currentLang].cWfSpeed, i18n[currentLang].cWfSync, i18n[currentLang].cWfClash, i18n[currentLang].cWfData],
                    datasets: [
                        { label: i18n[currentLang].cWfKR, data: [95, 40, 50, 30], borderColor: '#0d9488', backgroundColor: 'rgba(13, 148, 136, 0.1)', borderWidth: 2 },
                        { label: i18n[currentLang].cWfUS, data: [60, 95, 95, 90], borderColor: '#1d4ed8', backgroundColor: 'rgba(29, 78, 216, 0.1)', borderWidth: 2 }
                    ]
                },
                options: {
                    responsive: true, maintainAspectRatio: false,
                    plugins: { title: { display: true, text: i18n[currentLang].chartWfTitle, font: {size: 14} } },
                    scales: { r: { min: 0, max: 100, ticks: { display: false } } }
                }
            });
        }

        function updateCharts() {
            if(!charts.ret) return;
            const dict = i18n[currentLang];
            
            // Update Ret Chart
            charts.ret.options.plugins.title.text = dict.chartRetTitle;
            charts.ret.data.labels = [dict.cRetBranch, dict.cRetMain];
            charts.ret.data.datasets[0].label = dict.cRetKR;
            charts.ret.data.datasets[1].label = dict.cRetUS;
            charts.ret.update();

            // Update Flow Chart
            charts.flow.options.plugins.title.text = dict.chartHydTitle;
            charts.flow.options.scales.x.title.text = dict.cHydTime;
            charts.flow.options.scales.y.title.text = dict.cHydFlow;
            charts.flow.data.datasets[0].label = dict.cHydSteady;
            charts.flow.data.datasets[1].label = dict.cHydDynamic;
            charts.flow.update();

            // Update Workflow Chart
            charts.wf.options.plugins.title.text = dict.chartWfTitle;
            charts.wf.data.labels = [dict.cWfSpeed, dict.cWfSync, dict.cWfClash, dict.cWfData];
            charts.wf.data.datasets[0].label = dict.cWfKR;
            charts.wf.data.datasets[1].label = dict.cWfUS;
            charts.wf.update();
        }

        // Initialize on load
        window.onload = () =&gt; {
            initCharts();
            setLanguage('ko'); // Set default language text
        };
    &lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;</description>
      <category>상하수도공학</category>
      <category>토목설계 #상하수도 #하수도법 #수리해석 #자산관리 #스마트하수도 #엔지니어링 #BIM설계 #미국설계기준 #KDS</category>
      <author>data-pantry</author>
      <guid isPermaLink="true">https://data-pantry.tistory.com/9</guid>
      <comments>https://data-pantry.tistory.com/9#entry9comment</comments>
      <pubDate>Thu, 9 Apr 2026 14:07:59 +0900</pubDate>
    </item>
    <item>
      <title>Google Gemini 폴더 정리 확장앱(Google Chrome, Naver Whale 등...) 제미나이 편하게 사용하세요.</title>
      <link>https://data-pantry.tistory.com/8</link>
      <description>&lt;figure class=&quot;imageblock alignCenter&quot; width=&quot;100%&quot;&gt;&lt;span data-url=&quot;https://blog.kakaocdn.net/dn/cPb0Sg/dJMcaiv6ESk/FtzAgOltcOIhJoREX9lXok/img.png&quot; data-phocus=&quot;https://blog.kakaocdn.net/dn/cPb0Sg/dJMcaiv6ESk/FtzAgOltcOIhJoREX9lXok/img.png&quot;&gt;&lt;img src=&quot;https://blog.kakaocdn.net/dn/cPb0Sg/dJMcaiv6ESk/FtzAgOltcOIhJoREX9lXok/img.png&quot; srcset=&quot;https://img1.daumcdn.net/thumb/R1280x0/?scode=mtistory2&amp;amp;fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FcPb0Sg%2FdJMcaiv6ESk%2FFtzAgOltcOIhJoREX9lXok%2Fimg.png&quot; width=&quot;100%&quot; onerror=&quot;this.onerror=null; this.src='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png'; this.srcset='//t1.daumcdn.net/tistory_admin/static/images/no-image-v1.png';&quot;/&gt;&lt;/span&gt;&lt;/figure&gt;

&lt;!-- 언어 선택 버튼 --&gt;

&lt;div id=&quot;lang-switcher&quot; style=&quot;display: flex; gap: 10px; margin-bottom: 25px; justify-content: center;&quot;&gt;
&lt;button id=&quot;btn-ko&quot; onclick=&quot;switchLang('ko')&quot; style=&quot;padding: 10px 20px; border-radius: 25px; border: 2px solid #7c8dfa; background: #7c8dfa; color: white; cursor: pointer; font-weight: bold; transition: all 0.3s; outline: none; border: 2px solid #7c8dfa;&quot;&gt;한국어&lt;/button&gt;
&lt;button id=&quot;btn-en&quot; onclick=&quot;switchLang('en')&quot; style=&quot;padding: 10px 20px; border-radius: 25px; border: 2px solid #7c8dfa; background: transparent; color: #7c8dfa; cursor: pointer; font-weight: bold; transition: all 0.3s; outline: none; border: 2px solid #7c8dfa;&quot;&gt;English&lt;/button&gt;
&lt;button id=&quot;btn-ja&quot; onclick=&quot;switchLang('ja')&quot; style=&quot;padding: 10px 20px; border-radius: 25px; border: 2px solid #7c8dfa; background: transparent; color: #7c8dfa; cursor: pointer; font-weight: bold; transition: all 0.3s; outline: none; border: 2px solid #7c8dfa;&quot;&gt;日本語&lt;/button&gt;
&lt;/div&gt;

&lt;hr style=&quot;border: 0; height: 1px; background: #eee; margin: 30px 0;&quot;&gt;

&lt;!-- 한국어 콘텐츠 --&gt;

&lt;div id=&quot;lang-ko&quot; style=&quot;line-height: 1.8; color: #333;&quot;&gt;
&lt;h1 style=&quot;color: #1a1b2e; border-bottom: 2px solid #7c8dfa; padding-bottom: 10px;&quot;&gt;[Productivity] 구글 제미나이 대화 목록, 이제 폴더로 깔끔하게 관리해보세요!&lt;/h1&gt;
&lt;p style=&quot;font-size: 1.1em; color: #555; margin-top: 20px;&quot;&gt;
안녕하세요! 구글 제미나이(Gemini)를 애용하는 유저로서, &lt;strong&gt;'폴더 정리 기능의 부재'&lt;/strong&gt;로 인한 불편함을 해결하고자 직접 &lt;strong&gt;Gemini Folder Manager&lt;/strong&gt; 확장 프로그램을 제작하게 되었습니다. 많은 분의 작업 효율을 높여주는 도구가 되길 바랍니다.
&lt;/p&gt;

&lt;h2 style=&quot;color: #2e2f4a; margin-top: 40px;&quot;&gt;1. 사용 방법 (Step-by-Step)&lt;/h2&gt;
&lt;p&gt;제미나이 웹 페이지(gemini.google.com)와 연동하여 아주 간단하게 사용할 수 있습니다.&lt;/p&gt;

&lt;h3 style=&quot;color: #4a4b6a;&quot;&gt;① 내 대화 목록 가져오기&lt;/h3&gt;
&lt;ul style=&quot;list-style-type: disc; padding-left: 20px;&quot;&gt;
&lt;li&gt;구글 제미나이 탭을 실행합니다.&lt;/li&gt;
&lt;li&gt;확장 프로그램 아이콘을 눌러 팝업창을 띄웁니다.&lt;/li&gt;
&lt;li&gt;상단의 &lt;strong&gt;새로고침( ) 버튼&lt;/strong&gt;을 클릭합니다.&lt;/li&gt;
&lt;li style=&quot;color: #666; font-style: italic;&quot;&gt;참고: 사이드바를 끝까지 스크롤한 후 새로고침을 눌러주세요.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3 style=&quot;color: #4a4b6a; margin-top: 20px;&quot;&gt;② 폴더 관리 및 대화 배정&lt;/h3&gt;
&lt;ul style=&quot;list-style-type: disc; padding-left: 20px;&quot;&gt;
&lt;li&gt;&lt;strong&gt;폴더 만들기&lt;/strong&gt;: '폴더 관리' 탭에서 원하는 이름을 입력해 폴더를 생성하세요.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;대화 연결&lt;/strong&gt;: '전체 대화' 탭에서 선택 박스를 통해 폴더에 배정할 수 있습니다.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3 style=&quot;color: #4a4b6a; margin-top: 20px;&quot;&gt;③ 스마트한 배치 작업 (Batch Mode)&lt;/h3&gt;
&lt;ul style=&quot;list-style-type: disc; padding-left: 20px;&quot;&gt;
&lt;li&gt;&lt;strong&gt;'☑ 배치'&lt;/strong&gt; 버튼으로 여러 대화를 선택해 폴더 이동 또는 &lt;strong&gt;영구 삭제&lt;/strong&gt;를 한 번에 처리할 수 있습니다.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 style=&quot;color: #2e2f4a; margin-top: 40px;&quot;&gt;2. 주요 장점&lt;/h2&gt;
&lt;div style=&quot;background: #f8f9ff; padding: 20px; border-left: 5px solid #7c8dfa; border-radius: 5px;&quot;&gt;
&lt;p&gt;&lt;strong&gt;  강력한 자동화 시스템&lt;/strong&gt;: 화면에 보이지 않는 대화도 자동 스크롤하여 수집하며, 삭제 과정도 백그라운드에서 자동 처리됩니다.&lt;/p&gt;
&lt;p style=&quot;margin-top: 10px;&quot;&gt;&lt;strong&gt;  빈틈없는 데이터 관리&lt;/strong&gt;: 유령 데이터 자동 정리 및 제목 캐싱으로 즉시 표시됩니다.&lt;/p&gt;
&lt;/div&gt;

&lt;blockquote style=&quot;margin-top: 30px; border-left: 4px solid #ddd; padding-left: 15px; color: #777;&quot;&gt;
알림: 본 프로그램은 사용자의 대화 내용을 수집하지 않으며, 모든 데이터는 브라우저 내부 저장소에만 보관됩니다.
&lt;/blockquote&gt;

&lt;p style=&quot;margin-top: 30px; font-weight: bold; color: #7c8dfa;&quot;&gt;
#제미나이 #Gemini #구글제미나이 #생산성 #폴더관리 #크롬확장프로그램 #업무효율 #AI툴 #자기계발 #작업자동화
&lt;/p&gt;
&lt;/div&gt;

&lt;!-- 영어 콘텐츠 (English Section) --&gt;

&lt;div id=&quot;lang-en&quot; style=&quot;display: none; line-height: 1.8; color: #333;&quot;&gt;
&lt;h1 style=&quot;color: #1a1b2e; border-bottom: 2px solid #7c8dfa; padding-bottom: 10px;&quot;&gt;[Productivity] Manage Google Gemini Chats with Folders!&lt;/h1&gt;
&lt;p style=&quot;font-size: 1.1em; color: #555; margin-top: 20px;&quot;&gt;
Hello! As a frequent user of Google Gemini, I created the &lt;strong&gt;Gemini Folder Manager&lt;/strong&gt; extension to solve the productivity issue caused by the &lt;strong&gt;lack of a folder organization feature&lt;/strong&gt;. I hope this tool helps many users stay organized and efficient.
&lt;/p&gt;

&lt;h2 style=&quot;color: #2e2f4a; margin-top: 40px;&quot;&gt;1. How to Use (Step-by-Step)&lt;/h2&gt;
&lt;p&gt;It works directly with the Gemini web page (gemini.google.com).&lt;/p&gt;

&lt;h3 style=&quot;color: #4a4b6a;&quot;&gt;① Fetch Chat List&lt;/h3&gt;
&lt;ul style=&quot;list-style-type: disc; padding-left: 20px;&quot;&gt;
&lt;li&gt;Open a Google Gemini tab.&lt;/li&gt;
&lt;li&gt;Click the extension icon to open the popup.&lt;/li&gt;
&lt;li&gt;Click the &lt;strong&gt;Refresh ( ) button&lt;/strong&gt; at the top.&lt;/li&gt;
&lt;li style=&quot;color: #666; font-style: italic;&quot;&gt;Note: If older chats aren't loading, scroll to the bottom of the Gemini sidebar first, then hit refresh.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3 style=&quot;color: #4a4b6a; margin-top: 20px;&quot;&gt;② Folder Management &amp; Assignment&lt;/h3&gt;
&lt;ul style=&quot;list-style-type: disc; padding-left: 20px;&quot;&gt;
&lt;li&gt;&lt;strong&gt;Create Folders&lt;/strong&gt;: Go to the 'Manage Folders' tab and enter a name to create one.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Assign Chats&lt;/strong&gt;: In the 'All Chats' tab, use the dropdown next to each chat title to put it into a folder.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3 style=&quot;color: #4a4b6a; margin-top: 20px;&quot;&gt;③ Smart Batch Actions (Batch Mode)&lt;/h3&gt;
&lt;ul style=&quot;list-style-type: disc; padding-left: 20px;&quot;&gt;
&lt;li&gt;Click the &lt;strong&gt;'☑ Batch'&lt;/strong&gt; button to select multiple chats. You can move them to folders or &lt;strong&gt;permanently delete&lt;/strong&gt; them from Gemini in one go.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 style=&quot;color: #2e2f4a; margin-top: 40px;&quot;&gt;2. Key Advantages&lt;/h2&gt;
&lt;div style=&quot;background: #f8f9ff; padding: 20px; border-left: 5px solid #7c8dfa; border-radius: 5px;&quot;&gt;
&lt;p&gt;&lt;strong&gt;  Powerful UI Automation&lt;/strong&gt;: Automatically scrolls to collect hidden chats and handles deletion in the background without tedious clicks.&lt;/p&gt;
&lt;p style=&quot;margin-top: 10px;&quot;&gt;&lt;strong&gt;  Seamless Data Management&lt;/strong&gt;: Syncs with actual Gemini DOM to remove ghost data and uses title caching for instant display even when loading is slow.&lt;/p&gt;
&lt;/div&gt;

&lt;blockquote style=&quot;margin-top: 30px; border-left: 4px solid #ddd; padding-left: 15px; color: #777;&quot;&gt;
Notice: This extension does not collect any chat content. All data is stored locally within your browser.
&lt;/blockquote&gt;

&lt;p style=&quot;margin-top: 30px; font-weight: bold; color: #7c8dfa;&quot;&gt;
#GoogleGemini #Gemini #Productivity #ChromeExtension #FolderManager #AI #Workflow #Automation #TechTools #Efficiency
&lt;/p&gt;
&lt;/div&gt;

&lt;!-- 일본어 콘텐츠 (Japanese Section) --&gt;

&lt;div id=&quot;lang-ja&quot; style=&quot;display: none; line-height: 1.8; color: #333;&quot;&gt;
&lt;h1 style=&quot;color: #1a1b2e; border-bottom: 2px solid #7c8dfa; padding-bottom: 10px;&quot;&gt;[Productivity] Google Geminiの会話リストをフォルダで整理！&lt;/h1&gt;
&lt;p style=&quot;font-size: 1.1em; color: #555; margin-top: 20px;&quot;&gt;
こんにちは！Google Geminiの愛用ユーザーとして、&lt;strong&gt;「フォルダ整理機能がないこと」&lt;/strong&gt;による不便を解消するために、&lt;strong&gt;Gemini Folder Manager&lt;/strong&gt;拡張機能を制作しました。多くの皆さんの作業効率向上に役立つツールになれば幸いです。
&lt;/p&gt;

&lt;h2 style=&quot;color: #2e2f4a; margin-top: 40px;&quot;&gt;1. 使い方 (Step-by-Step)&lt;/h2&gt;
&lt;p&gt;Geminiのウェブページ（gemini.google.com）と連動して動作します。&lt;/p&gt;

&lt;h3 style=&quot;color: #4a4b6a;&quot;&gt;① 会話リストの読み込み&lt;/h3&gt;
&lt;ul style=&quot;list-style-type: disc; padding-left: 20px;&quot;&gt;
&lt;li&gt;Google Geminiのタブを開きます。&lt;/li&gt;
&lt;li&gt;拡張機能アイコンをクリックしてポップアップを開きます。&lt;/li&gt;
&lt;li&gt;上部の&lt;strong&gt;更新（ ）ボタン&lt;/strong&gt;をクリックしてください。&lt;/li&gt;
&lt;li style=&quot;color: #666; font-style: italic;&quot;&gt;ヒント：サイドバーに見えていない古い会話は、一度一番下までスクロールしてから更新を押すと読み込まれます。&lt;/li&gt;
&lt;/ul&gt;

&lt;h3 style=&quot;color: #4a4b6a; margin-top: 20px;&quot;&gt;② フォルダ管理と振り分け&lt;/h3&gt;
&lt;ul style=&quot;list-style-type: disc; padding-left: 20px;&quot;&gt;
&lt;li&gt;&lt;strong&gt;フォルダ作成&lt;/strong&gt;：「フォルダ管理」タブで名前を入力して作成します。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;会話の配属&lt;/strong&gt;：「すべての会話」タブで、各タイトルの横にあるボックスからフォルダを選択して振り分けます。&lt;/li&gt;
&lt;/ul&gt;

&lt;h3 style=&quot;color: #4a4b6a; margin-top: 20px;&quot;&gt;③ スマートな一括操作 (Batch Mode)&lt;/h3&gt;
&lt;ul style=&quot;list-style-type: disc; padding-left: 20px;&quot;&gt;
&lt;li&gt;&lt;strong&gt;「☑ バッチ」&lt;/strong&gt;ボタンで複数の会話を選択し、フォルダ移動や&lt;strong&gt;Geminiからの永久削除&lt;/strong&gt;をまとめて処理できます。&lt;/li&gt;
&lt;/ul&gt;

&lt;h2 style=&quot;color: #2e2f4a; margin-top: 40px;&quot;&gt;2. 主なメリット&lt;/h2&gt;
&lt;div style=&quot;background: #f8f9ff; padding: 20px; border-left: 5px solid #7c8dfa; border-radius: 5px;&quot;&gt;
&lt;p&gt;&lt;strong&gt;  強力なUI自動化&lt;/strong&gt;：見えていない会話も自動でスクロールして収集し、削除操作もバックグラウンドで自動実行されます。&lt;/p&gt;
&lt;p style=&quot;margin-top: 10px;&quot;&gt;&lt;strong&gt;  安心のデータ管理&lt;/strong&gt;：Gemini上で削除済みの会話（ゴーストデータ）を自動整理し、タイトルキャッシュ機能により読み込みが遅い時も即座にタイトルを表示します。&lt;/p&gt;
&lt;/div&gt;

&lt;blockquote style=&quot;margin-top: 30px; border-left: 4px solid #ddd; padding-left: 15px; color: #777;&quot;&gt;
お知らせ：本プログラムはユーザーの会話内容を収集しません。すべてのデータはブラウザのローカルストレージに安全に保管されます。
&lt;/blockquote&gt;

&lt;p style=&quot;margin-top: 30px; font-weight: bold; color: #7c8dfa;&quot;&gt;
#GoogleGemini #ジェミナイ #生産性向上 #Chrome拡張機能 #フォルダ管理 #AI活用 #効率化 #整理術 #自動化 #便利ツール
&lt;/p&gt;
&lt;/div&gt;

&lt;script&gt;
function switchLang(lang) {
var ids = ['lang-ko', 'lang-en', 'lang-ja'];
for (var i = 0; i &lt; ids.length; i++) {
var el = document.getElementById(ids[i]);
if (el) {
el.style.display = (ids[i] === 'lang-' + lang) ? 'block' : 'none';
}
}
var langs = ['ko', 'en', 'ja'];
for (var j = 0; j &lt; langs.length; j++) {
var btn = document.getElementById('btn-' + langs[j]);
if (btn) {
if (langs[j] === lang) {
btn.style.background = '#7c8dfa';
btn.style.color = 'white';
} else {
btn.style.background = 'transparent';
btn.style.color = '#7c8dfa';
}
}
}
}
// 초기 실행
switchLang('ko');
&lt;/script&gt;</description>
      <category>AI/제미나이</category>
      <author>data-pantry</author>
      <guid isPermaLink="true">https://data-pantry.tistory.com/8</guid>
      <comments>https://data-pantry.tistory.com/8#entry8comment</comments>
      <pubDate>Thu, 9 Apr 2026 09:13:25 +0900</pubDate>
    </item>
  </channel>
</rss>