/* global React, MachineRender */ const { useState: useSP, useEffect: useEP } = React; const isSubdir = window.location.pathname.includes("/products/"); const prefix = isSubdir ? "../../" : ""; // ============ PRODUCT HERO ============ function ProductHero() { return (
{/* Breadcrumb */}
Home / Products / Granulation / Rapid Mixer Granulator
Flagship Granulation High-Shear

Rapid Mixer Granulator (RMG)

The Rapid Mixer Granulator (RMG) is engineered for fast, efficient, and uniform wet granulation across pharmaceutical, nutraceutical, food, and chemical manufacturing processes.

Manufactured in compliance with cGMP standards, our RMG offers robust construction, user-friendly operation, and reliable performance to meet the demands of modern production facilities.

{/* Metric strip */}
{[["45–120", "Working L"], ["8–15", "mixing min"], ["SS 316L", "contact parts"]].map(([n, l]) => (
{n}
{l}
))}
View layout
Live 3D explorer
); } // ============ PROCESS FLOW ============ function ProcessFlow() { const [active, setActive] = useSP(2); const steps = [ { num: "01", label: "Dry charging", t: "Raw powder materials loaded into the mixing bowl via gravity, vacuum, or manually." }, { num: "02", label: "Dry mixing", t: "Impeller rotates at slow speed to homogenize and blend dry powders thoroughly." }, { num: "03", label: "Binder addition", t: "Liquid binder solution is sprayed or poured uniformly across the dry powder mix." }, { num: "04", label: "Wet mixing", t: "Impeller distributes binder solution to build a cohesive, consistent wet mass." }, { num: "05", label: "Granulation", t: "High-shear side-mounted chopper cuts the wet mass to form uniform granules." }, { num: "06", label: "Wet milling", t: "Optional online co-mill refines granule sizes and distribution before discharge." }, { num: "07", label: "Pneumatic discharge", t: "Automated discharge valve opens, transferring wet granules to the FBD bowl smoothly." }, { num: "08", label: "CIP / Washdown", t: "Easy access washdown with optional WIP/CIP spray balls for fast cleanups." }, ]; return (
Process flow

Eight processing zones, high-shear, fully validated.

{/* Timeline */}
{/* connector line */}
{steps.map((s, i) => ( ))}
{steps[active].num} · {steps[active].label}
{steps[active].t}
); } // ============ FEATURES GRID ============ function FeaturesGrid() { const [showOptional, setShowOptional] = useSP(false); const keyFeatures = [ "Product contact parts manufactured in SS 316 / SS 316L", "High-shear impeller for rapid and uniform mixing", "Side-mounted chopper for efficient granulation", "Pneumatic discharge system for smooth material transfer", "cGMP-compliant design with easy access for cleaning and maintenance", "Robust construction with low maintenance requirements", "Dust-free processing with enhanced containment", "Safety interlocks for secure operation" ]; const optionalFeatures = [ "Vacuum charging system", "Binder solution preparation vessel", "Online wet milling system", "Explosion-proof execution", "CIP/WIP system", "OEB containment design", "SCADA integration" ]; const featuresToDisplay = showOptional ? [...keyFeatures, ...optionalFeatures] : keyFeatures; return (
Engineering Features

Engineered for high performance and process control.

{featuresToDisplay.map((feat, i) => { const isOptional = i >= keyFeatures.length; return (
{ e.currentTarget.style.transform = "translateY(-4px)"; e.currentTarget.style.borderColor = isOptional ? "rgba(32,199,232,0.4)" : "var(--ink-3)"; e.currentTarget.style.background = isOptional ? "rgba(32,199,232,0.06)" : "#e2e8f0"; }} onMouseLeave={(e) => { e.currentTarget.style.transform = "none"; e.currentTarget.style.borderColor = "var(--line)"; e.currentTarget.style.background = isOptional ? "rgba(32,199,232,0.02)" : "var(--metal-3)"; }} > {isOptional ? "OPTIONAL FEATURE" : "KEY FEATURE"}

{feat}

); })}
); } // ============ ADVANTAGES SECTION ============ function AdvantagesSection() { const advantages = [ { title: "Reduced processing time", desc: "Shortens dry mixing and wet granulation cycles to just 8-15 minutes, boosting overall throughput." }, { title: "Uniform size distribution", desc: "Delivers a consistent granule sizing with minimized fine particles, ideal for tablet compressing." }, { title: "Improved flow properties", desc: "Produces dense granules with excellent flowability, preventing downstream tableting hopper jams." }, { title: "Increased production efficiency", desc: "Automates charging and discharging to reduce manual processing, downtime, and operator labor." }, { title: "Reduced manual handling", desc: "Pneumatic systems and gravity feeds minimize operator contact with product powders." }, { title: "Consistent batch repeatability", desc: "Pre-programmed recipe cycles guarantee identical batch outputs, securing strict QA standards." }, ]; return (