VOOZH about

URL: https://en.wikibooks.org/wiki/OpenSCAD_Tutorial

⇱ OpenSCAD Tutorial - Wikibooks, open books for an open world


Jump to content
From Wikibooks, open books for an open world
The latest reviewed version was checked on 16 March 2026. There are 2 pending changes awaiting review.

// Aerospike Rocket Engine - Simple Model

$fn = 100;

// Main chamber

module chamber() {

    scale([1,1,1.5])

    sphere(r=20);

}

// Throat

module throat() {

    translate([0,0,-10])

    cylinder(h=10, r1=8, r2=6);

}

// Exhaust nozzle (outer)

module nozzle() {

    translate([0,0,-40])

    cylinder(h=30, r1=6, r2=12);

}

// Aerospike (center spike)

module spike() {

    translate([0,0,-40])

    cone_height = 40;

    cylinder(h=cone_height, r1=10, r2=0);

}

// Assemble

difference() {

    union() {

        chamber();

        throat();

        nozzle();

    }

    // Hollow center थोड़ा realistic করার জন্য

    translate([0,0,10])

    cylinder(h=80, r=4);

}

// Add spike

spike();

Table of Contents

[edit | edit source]
👁 Image
A printable version of OpenSCAD Tutorial is available. (edit it)

Useful links

[edit | edit source]