# Modern Onshore Wind Turbine Structure A physical/structural cross-section diagram showing all major components of a modern wind turbine from underground foundation to blade tips. ## Key Patterns Used - **Underground section**: Soil layers, deep concrete foundation with rebar reinforcement grid, spread footing - **Cross-section view**: Tower wall thickness shown, internal components visible - **Tapered tower**: Path elements creating realistic tower silhouette that narrows toward top - **Internal access**: Ladder with rungs, elevator shaft inside tower - **Cable routing**: Power cables running from nacelle down through tower to transformer - **Nacelle cutaway**: Gearbox, generator, brake, yaw system all visible inside housing - **Rotor assembly**: Hub with pitch motors at blade roots, three composite blades with gradient fill - **Ground level marker**: Clear separation between above/below ground - **Component color coding**: Each system type has distinct color (blue=generator, gold=gearbox, red=brake, green=yaw, purple=pitch) - **Legend bar**: Quick reference for color meanings ## Diagram ```xml Ground level Deep concrete foundation Reinforced with steel rebar 15-25m deep typical Foundation spread footing Distributes load to soil Transformer Steps up voltage for grid ELEVATOR Tubular steel tower 80-120m height typical Tapered for strength Internal ladder Service access Service elevator Power cables To transformer GEAR GEN Gearbox Speed multiplier Generator Converts rotation to electricity Brake system Yaw motors Rotate nacelle to face wind Anemometer Wind speed sensor Composite blade Fiberglass/carbon fiber 40-80m length each Pitch motor Adjusts blade angle Rotor hub Generator Gearbox Brake Yaw system Pitch motor Power cable Transformer ``` ## CSS Classes ```css /* Foundation */ .concrete { fill: #B4B2A9; stroke: #5F5E5A; stroke-width: 1; } .concrete-dark { fill: #888780; stroke: #5F5E5A; stroke-width: 1; } .rebar { stroke: #854F0B; stroke-width: 1.5; fill: none; } .soil { fill: #8B7355; stroke: #5F5E5A; stroke-width: 0.5; } .soil-dark { fill: #6B5344; } /* Tower */ .tower { fill: #F1EFE8; stroke: #5F5E5A; stroke-width: 1; } .tower-inner { fill: #D3D1C7; stroke: #888780; stroke-width: 0.5; } .tower-section { stroke: #888780; stroke-width: 0.5; stroke-dasharray: 2 4; } .ladder { stroke: #5F5E5A; stroke-width: 1; fill: none; } .ladder-rung { stroke: #888780; stroke-width: 0.8; } .elevator { fill: #E6F1FB; stroke: #185FA5; stroke-width: 0.5; } .cable { stroke: #E24B4A; stroke-width: 2; fill: none; } .cable-thin { stroke: #E24B4A; stroke-width: 1.5; fill: none; } /* Nacelle */ .nacelle { fill: #F1EFE8; stroke: #5F5E5A; stroke-width: 1; } .nacelle-cover { fill: #D3D1C7; stroke: #5F5E5A; stroke-width: 1; } .gearbox { fill: #BA7517; stroke: #633806; stroke-width: 0.5; } .generator { fill: #378ADD; stroke: #0C447C; stroke-width: 0.5; } .brake { fill: #E24B4A; stroke: #791F1F; stroke-width: 0.5; } .yaw { fill: #5DCAA5; stroke: #085041; stroke-width: 0.5; } .bearing { fill: #444441; stroke: #2C2C2A; stroke-width: 0.5; } /* Rotor */ .hub { fill: #D3D1C7; stroke: #5F5E5A; stroke-width: 1; } .hub-cap { fill: #F1EFE8; stroke: #5F5E5A; stroke-width: 1; } .blade { fill: #F1EFE8; stroke: #888780; stroke-width: 1; } .blade-root { fill: #D3D1C7; stroke: #5F5E5A; stroke-width: 0.5; } .pitch-motor { fill: #7F77DD; stroke: #3C3489; stroke-width: 0.5; } /* Transformer */ .transformer { fill: #27500A; stroke: #173404; stroke-width: 1; } .transformer-fin { fill: #3B6D11; stroke: #27500A; stroke-width: 0.5; } ```