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.
);
}
// ============ 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 (
{/* Left Column: Advantages */}
Engineering without compromise.
Every Mark Maker machine is built on a foundation of rigorous pharmaceutical standards, leveraging modern automation to guarantee repeatability, yield, and operator safety.
{advantages.map((ad, idx) => (
{ad.title}
{ad.desc}
))}
{/* Right Column: Dynamic Spinning Blueprint Layout */}
Our RMG 150 is built on a space-saving 2.1 × 1.2 m base. It offers 3-side operator access for easy parameter tweaking, while maintenance doors open from the back.
{[
["Mixing Bowl Diameter", "750 mm"],
["Total Height (Lid Closed)", "1950 mm"],
["Discharge Valve Clearance", "1000 mm (suited for direct FBD connection)"],
["Required Room Height", "Minimum 2500 mm clearance"],
["Net Weight", "Approx. 1200 kg"],
].map(([k, v]) => (
{k}{v}
))}
{/* Top-down layout SVG for RMG */}
TOP VIEW · 1:50
);
}
// ============ RELATED PRODUCTS ============
function RelatedProducts() {
const r = [
{ name: "Fluid Bed Dryer", t: "Fluid bed processor optimized for uniform thermal drying of wet granules.", spec: "Drying" },
{ name: "Integrated wet granulation line", t: "Complete line: RMG + Wet Mill + FBD + Dry Mill + Bin Blender.", spec: "Integrated Lines" },
{ name: "Tablet coater", t: "High efficiency coating system for solid oral dose tablets.", spec: "Coating" },
{ name: "Conta bin blender", t: "Hygienic batch blending with 3D blending logic and containment.", spec: "Blending" },
];
return (
Related products
Explore granulation & solid dose systems.
{r.map(p => (
{p.spec}
{p.name}
{p.t}
))}
);
}
// ============ APPLICATIONS SECTION ============
function ApplicationsSection() {
const scrollRef = React.useRef(null);
const apps = [
{
title: "Wet granulation for tablet manufacturing",
desc: "Optimal binder dispersion and powder agglomeration for high-throughput tableting lines.",
icon: (
)
},
{
title: "Mixing and densification of powders",
desc: "High-shear mixing profiles to adjust density and improve raw powder flow characteristics.",
icon: (
)
},
{
title: "Pharmaceutical granule preparation",
desc: "cGMP-compliant granule processing ensuring batch uniformity and active ingredient distribution.",
icon: (
)
},
{
title: "Nutraceutical powder processing",
desc: "Robust mixing systems capable of handling a wide range of vitamins, supplements, and food minerals.",
icon: (
)
},
{
title: "Food ingredient granulation and blending",
desc: "Sanitary processing for flavorings, additives, and soluble beverage powders.",
icon: (
)
},
{
title: "Chemical powder mixing applications",
desc: "Heavy-duty processing setups with explosion-proof options for specialty chemical blending.",
icon: (
)
}
];
const scroll = (direction) => {
if (scrollRef.current) {
const scrollAmount = direction === "left" ? -340 : 340;
scrollRef.current.scrollBy({ left: scrollAmount, behavior: "smooth" });
}
};
return (
Applications
Industries We Power
{/* Scroll Container Wrapper with padding to prevent clipping when hovered */}
);
}
// ============ WHY CHOOSE US (FAQ) ============
function WhyChooseUsSection() {
const [openIdx, setOpenIdx] = useSP(0);
const items = [
{
title: "Reliable and efficient process performance",
desc: "Our RMGs are constructed with optimized bowl designs and variable speed impeller parameters to ensure consistent granule consolidation and rapid wet mass formation within minutes. High density granules with excellent flow characteristics are produced batch after batch."
},
{
title: "Custom-engineered solutions based on application requirements",
desc: "From gross bowl volume scaling (capacities from R&D to multi-ton production) to custom co-mill integration, vacuum transfer systems, or jacketed temperature control bowls, we customize each unit to suit your workflow constraints and floor space."
},
{
title: "Strong technical and after-sales support",
desc: "We provide complete FAT/SAT protocols, full IQ/OQ validation documentation support, and 24/7 technical troubleshooting. Our engineers are available globally for quick on-site alignment and maintenance support."
},
{
title: "Energy-efficient operation",
desc: "Equipped with variable frequency drives (VFD) and IE3 high-efficiency motors, our machinery delivers high torque without excessive electrical power consumption, reducing running costs for sustainable operations."
},
{
title: "Long service life with minimal maintenance",
desc: "Featuring food-grade mechanical shaft seals with air purging systems to prevent powder entry into the bearings. Made of solid SS 304 frames and high-quality gearboxes ensuring robust wear resistance."
},
{
title: "Designed to meet modern manufacturing and regulatory standards",
desc: "Our RMG is fully compliant with cGMP, WHO, CE, USFDA guidelines. All seals are FDA compliant (PTFE/Silicone), and cleanroom utility connections are sealed to prevent dust leakage."
}
];
return (