Compare commits
14 Commits
c5b2d68518
...
resin
Author | SHA1 | Date | |
---|---|---|---|
895e24575e | |||
e4a011f5bd | |||
a2932a4e49 | |||
2a48edb3cf | |||
f549fb32b0 | |||
db5e874d91 | |||
f01e5a92ee | |||
59882af24f | |||
6e8869363e | |||
bf1f0cc4ce | |||
e9b3a42564 | |||
b8d902ea11 | |||
8534d25e4b | |||
8b152fc844 |
BIN
notebook_nueva/cpu_holder.3mf
Normal file
BIN
notebook_nueva/cpu_holder.3mf
Normal file
Binary file not shown.
@ -1,31 +1,28 @@
|
|||||||
import cadquery2 as cq
|
import cadquery2 as cq
|
||||||
from cadquery2 import exporters
|
from cadquery2 import exporters
|
||||||
|
|
||||||
|
|
||||||
lower_stands = (
|
lower_stands = (
|
||||||
cq.Sketch()
|
cq.Sketch().push([(0, 0), (58, 0), (58, 23), (0, 23)]).circle(3, mode="a")
|
||||||
.push([(0,0), (58, 0), (58, 23), (0, 23)])
|
|
||||||
.circle(5, mode="a")
|
|
||||||
)
|
)
|
||||||
|
|
||||||
higher_stands = (
|
higher_stands = (
|
||||||
cq.Sketch()
|
cq.Sketch().push([(0, 0), (58, 0), (58, 23), (0, 23)]).circle(2.65 / 2, mode="a")
|
||||||
.push([(0,0), (58, 0), (58, 23), (0, 23)])
|
|
||||||
.circle(2.65, mode="a")
|
|
||||||
)
|
)
|
||||||
|
|
||||||
model = (
|
model = (
|
||||||
cq.Workplane("XY")
|
cq.Workplane("XY")
|
||||||
.workplane()
|
.workplane()
|
||||||
.box(75, 40, 2)
|
.box(75, 40, 2)
|
||||||
|
.edges("+Z")
|
||||||
|
.fillet(3)
|
||||||
.faces(">Z")
|
.faces(">Z")
|
||||||
.workplane(centerOption="CenterOfBoundBox")
|
.workplane(centerOption="CenterOfBoundBox")
|
||||||
.center(-29, -11.5)
|
.center(-29, -11.5)
|
||||||
.placeSketch(lower_stands)
|
.placeSketch(lower_stands)
|
||||||
.extrude(3)
|
.extrude(4)
|
||||||
.workplane()
|
.workplane()
|
||||||
.placeSketch(higher_stands)
|
.placeSketch(higher_stands)
|
||||||
.extrude(8)
|
.extrude(9)
|
||||||
)
|
)
|
||||||
|
|
||||||
exporters.export(model, "cpu_holder.stl")
|
exporters.export(model, "cpu_holder.stl")
|
||||||
|
File diff suppressed because it is too large
Load Diff
21450
notebook_nueva/left_screen_mount.stl
Normal file
21450
notebook_nueva/left_screen_mount.stl
Normal file
File diff suppressed because it is too large
Load Diff
BIN
notebook_nueva/left_side.3mf
Normal file
BIN
notebook_nueva/left_side.3mf
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
63494
notebook_nueva/model.stl
63494
notebook_nueva/model.stl
File diff suppressed because it is too large
Load Diff
@ -21,7 +21,9 @@ thickness = 20 + shell_t # 20 inside
|
|||||||
ti_radius = 2.35
|
ti_radius = 2.35
|
||||||
ti_depth = 6.25
|
ti_depth = 6.25
|
||||||
|
|
||||||
pillars = (
|
# Positions are determined by measuring the keyboard
|
||||||
|
# mounting holes
|
||||||
|
kbd_pillars = (
|
||||||
cq.Sketch()
|
cq.Sketch()
|
||||||
.push(
|
.push(
|
||||||
[
|
[
|
||||||
@ -34,9 +36,30 @@ pillars = (
|
|||||||
]
|
]
|
||||||
)
|
)
|
||||||
.circle(6, mode="a")
|
.circle(6, mode="a")
|
||||||
|
# Holes for M3 threaded inserts
|
||||||
.circle(ti_radius, mode="s")
|
.circle(ti_radius, mode="s")
|
||||||
)
|
)
|
||||||
|
|
||||||
|
# These are placed where convenient, and are used to join the top and bottom
|
||||||
|
# parts of the case.
|
||||||
|
# Measured from top-left corner OUTSIDE
|
||||||
|
mounting_pillar_positions = [
|
||||||
|
(6, -6),
|
||||||
|
(width - 6, -6),
|
||||||
|
(width - 6, -40),
|
||||||
|
(120, -6),
|
||||||
|
(170, -6),
|
||||||
|
]
|
||||||
|
|
||||||
|
mounting_pillars = (
|
||||||
|
cq.Sketch()
|
||||||
|
.push(mounting_pillar_positions)
|
||||||
|
.trapezoid(12, 12, 90, mode="a")
|
||||||
|
.circle(1.8, mode="s")
|
||||||
|
)
|
||||||
|
|
||||||
|
screw_holes = cq.Sketch().push(mounting_pillar_positions).circle(3, mode="a")
|
||||||
|
|
||||||
battery_holder = (
|
battery_holder = (
|
||||||
cq.Sketch()
|
cq.Sketch()
|
||||||
.polygon(
|
.polygon(
|
||||||
@ -49,6 +72,11 @@ battery_holder = (
|
|||||||
[(-67, 3), (0, 3), (0, -10), (-67, -10), (-67, 3)],
|
[(-67, 3), (0, 3), (0, -10), (-67, -10), (-67, 3)],
|
||||||
mode="s",
|
mode="s",
|
||||||
)
|
)
|
||||||
|
# Cutout for the
|
||||||
|
.polygon(
|
||||||
|
[(-67, 30), (0, 30), (0, 12), (-67, 12), (-67, 30)],
|
||||||
|
mode="s",
|
||||||
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@ -57,6 +85,9 @@ usb_in = cq.Sketch().trapezoid(13, 5.5, 90, mode="a")
|
|||||||
switch_in = cq.Sketch().trapezoid(13.5, 8, 90, mode="a")
|
switch_in = cq.Sketch().trapezoid(13.5, 8, 90, mode="a")
|
||||||
|
|
||||||
|
|
||||||
|
# Motherboard mount
|
||||||
|
|
||||||
|
|
||||||
def model():
|
def model():
|
||||||
return (
|
return (
|
||||||
cq.Workplane("XY")
|
cq.Workplane("XY")
|
||||||
@ -88,7 +119,7 @@ def model():
|
|||||||
# Hole for power switch
|
# Hole for power switch
|
||||||
.faces(">Y")
|
.faces(">Y")
|
||||||
.workplane(centerOption="CenterOfBoundBox")
|
.workplane(centerOption="CenterOfBoundBox")
|
||||||
.center(-height / 2 + shell_t + 50, 0)
|
.center(0, 0)
|
||||||
.placeSketch(switch_in)
|
.placeSketch(switch_in)
|
||||||
.cutBlind(-shell_t)
|
.cutBlind(-shell_t)
|
||||||
# Slanted mounting pillars on the kbd top
|
# Slanted mounting pillars on the kbd top
|
||||||
@ -98,7 +129,7 @@ def model():
|
|||||||
.center(-width / 2 + shell_t, kbd_height - height / 2 + shell_t)
|
.center(-width / 2 + shell_t, kbd_height - height / 2 + shell_t)
|
||||||
.transformed(rotate=cq.Vector(kbd_angle, 0, 0))
|
.transformed(rotate=cq.Vector(kbd_angle, 0, 0))
|
||||||
.tag("sloped")
|
.tag("sloped")
|
||||||
.placeSketch(pillars)
|
.placeSketch(kbd_pillars)
|
||||||
.extrude(-1000)
|
.extrude(-1000)
|
||||||
# Remove the excess extrusion
|
# Remove the excess extrusion
|
||||||
.workplaneFromTagged("mid_height")
|
.workplaneFromTagged("mid_height")
|
||||||
@ -107,48 +138,63 @@ def model():
|
|||||||
# Slope for the beyboard
|
# Slope for the beyboard
|
||||||
.workplaneFromTagged("sloped")
|
.workplaneFromTagged("sloped")
|
||||||
.split(keepBottom=True)
|
.split(keepBottom=True)
|
||||||
|
# Pillars to join with top half
|
||||||
|
.workplaneFromTagged("mid_height")
|
||||||
|
.workplane(offset=-thickness / 2, centerOption="CenterOfBoundBox")
|
||||||
|
.center(-width / 2, height / 2)
|
||||||
|
.placeSketch(mounting_pillars)
|
||||||
|
.extrude(thickness)
|
||||||
|
# Holes to insert screws from the bottom
|
||||||
|
.workplaneFromTagged("mid_height")
|
||||||
|
.workplane(offset=-thickness / 2, centerOption="CenterOfBoundBox")
|
||||||
|
.center(-width / 2, height / 2)
|
||||||
|
.placeSketch(screw_holes)
|
||||||
|
# 13 is 20-7 (screw thread length - threaded insert depth)
|
||||||
|
.cutBlind(thickness - 13)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
left_cutout = cq.Sketch().polygon(
|
if __name__ == "__main__":
|
||||||
[(0, 0), (160, 0), (160, -100), (135, -100), (135, -200), (0, -200), (0, 0)],
|
|
||||||
mode="a",
|
|
||||||
)
|
|
||||||
|
|
||||||
right_side = (
|
left_cutout = cq.Sketch().polygon(
|
||||||
model()
|
[(0, 0), (160, 0), (160, -100), (135, -100), (135, -200), (0, -200), (0, 0)],
|
||||||
.faces("<Z")
|
mode="a",
|
||||||
.workplaneFromTagged("mid_height")
|
)
|
||||||
.transformed(offset=cq.Vector(0, 0, -thickness / 2))
|
|
||||||
.center(-width / 2, height / 2)
|
|
||||||
.placeSketch(left_cutout)
|
|
||||||
.cutBlind(100)
|
|
||||||
)
|
|
||||||
|
|
||||||
exporters.export(right_side, "right_side.stl")
|
right_side = (
|
||||||
|
model()
|
||||||
|
.faces("<Z")
|
||||||
|
.workplaneFromTagged("mid_height")
|
||||||
|
.transformed(offset=cq.Vector(0, 0, -thickness / 2))
|
||||||
|
.center(-width / 2, height / 2)
|
||||||
|
.placeSketch(left_cutout)
|
||||||
|
.cutBlind(100)
|
||||||
|
)
|
||||||
|
|
||||||
right_cutout = cq.Sketch().polygon(
|
exporters.export(right_side, "right_side.stl")
|
||||||
[
|
|
||||||
(160, 0),
|
|
||||||
(width, 0),
|
|
||||||
(width, -height),
|
|
||||||
(135, -height),
|
|
||||||
(135, -100),
|
|
||||||
(160, -100),
|
|
||||||
(160, 0),
|
|
||||||
],
|
|
||||||
mode="a",
|
|
||||||
)
|
|
||||||
|
|
||||||
left_side = (
|
right_cutout = cq.Sketch().polygon(
|
||||||
model()
|
[
|
||||||
.faces("<Z")
|
(160, 0),
|
||||||
.workplaneFromTagged("mid_height")
|
(width, 0),
|
||||||
.transformed(offset=cq.Vector(0, 0, -thickness / 2))
|
(width, -height),
|
||||||
.center(-width / 2, height / 2)
|
(135, -height),
|
||||||
.placeSketch(right_cutout)
|
(135, -100),
|
||||||
.cutBlind(100)
|
(160, -100),
|
||||||
)
|
(160, 0),
|
||||||
exporters.export(left_side, "left_side.stl")
|
],
|
||||||
|
mode="a",
|
||||||
|
)
|
||||||
|
|
||||||
exporters.export(model(), "model.stl")
|
left_side = (
|
||||||
|
model()
|
||||||
|
.faces("<Z")
|
||||||
|
.workplaneFromTagged("mid_height")
|
||||||
|
.transformed(offset=cq.Vector(0, 0, -thickness / 2))
|
||||||
|
.center(-width / 2, height / 2)
|
||||||
|
.placeSketch(right_cutout)
|
||||||
|
.cutBlind(100)
|
||||||
|
)
|
||||||
|
exporters.export(left_side, "left_side.stl")
|
||||||
|
|
||||||
|
exporters.export(model(), "model.stl")
|
||||||
|
21674
notebook_nueva/right_screen_mount.stl
Normal file
21674
notebook_nueva/right_screen_mount.stl
Normal file
File diff suppressed because it is too large
Load Diff
BIN
notebook_nueva/right_side.3mf
Normal file
BIN
notebook_nueva/right_side.3mf
Normal file
Binary file not shown.
File diff suppressed because it is too large
Load Diff
BIN
notebook_nueva/screen_mount.3mf
Normal file
BIN
notebook_nueva/screen_mount.3mf
Normal file
Binary file not shown.
133
notebook_nueva/screen_mount.py
Normal file
133
notebook_nueva/screen_mount.py
Normal file
@ -0,0 +1,133 @@
|
|||||||
|
import cadquery2 as cq
|
||||||
|
from cadquery2 import exporters
|
||||||
|
|
||||||
|
from modelo import (
|
||||||
|
kbd_height,
|
||||||
|
kbd_width,
|
||||||
|
mounting_pillar_positions,
|
||||||
|
shell_t,
|
||||||
|
ti_depth,
|
||||||
|
ti_radius,
|
||||||
|
)
|
||||||
|
|
||||||
|
ti_radius = 2.5
|
||||||
|
|
||||||
|
# Size of the whole object
|
||||||
|
width = kbd_width + 2 * shell_t
|
||||||
|
height = 59
|
||||||
|
thickness = 62 # Will be shorter after construction
|
||||||
|
|
||||||
|
# Visible screen size
|
||||||
|
vis_w = 220
|
||||||
|
vis_h = 58
|
||||||
|
viewport_cutout = cq.Sketch().trapezoid(vis_w, vis_h, 90, mode="a")
|
||||||
|
|
||||||
|
# Whole screen size
|
||||||
|
scr_w = 231
|
||||||
|
scr_h = 65
|
||||||
|
scr_thickness = 5.5
|
||||||
|
screen_cutout = cq.Sketch().trapezoid(scr_w, scr_h, 90, mode="a")
|
||||||
|
|
||||||
|
# Circuit board and cable hole.
|
||||||
|
# This is in the back of the screen, and is a bit shorter in height than the
|
||||||
|
# screen. It's wider so it removes enough material to make the shape simpler.
|
||||||
|
board_cutout = cq.Sketch().trapezoid(
|
||||||
|
scr_w + 5,
|
||||||
|
scr_h - 10,
|
||||||
|
90,
|
||||||
|
mode="a",
|
||||||
|
)
|
||||||
|
|
||||||
|
kbd_cable_hole = cq.Sketch().trapezoid(15, 5, 90, mode="a").vertices().fillet(1)
|
||||||
|
|
||||||
|
mounting_pillars = (
|
||||||
|
cq.Sketch()
|
||||||
|
.polygon([(0, 0), (width, 0), (width, -12), (0, -12), (0, 0)], mode="a")
|
||||||
|
.push(mounting_pillar_positions)
|
||||||
|
.circle(ti_radius, mode="s")
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def model():
|
||||||
|
return (
|
||||||
|
cq.Workplane("XY")
|
||||||
|
.workplane()
|
||||||
|
.tag("mid_height")
|
||||||
|
.box(width, height, thickness)
|
||||||
|
# The screen goes at a 45 degree angle
|
||||||
|
.faces(">Z")
|
||||||
|
.transformed(rotate=(45, 0, 0))
|
||||||
|
# Move the screen "lower" so it doesn't interfere
|
||||||
|
# so much with the back
|
||||||
|
.center(0, -2)
|
||||||
|
.tag("slanted")
|
||||||
|
# Arbitrary huge trapezoid to cut off the material *in front*
|
||||||
|
# of the inclined screen
|
||||||
|
.placeSketch(cq.Sketch().trapezoid(1000, 1000, 90, mode="a"))
|
||||||
|
.cutBlind(1000)
|
||||||
|
# Cut off viewport hole so we can see the screen
|
||||||
|
.workplaneFromTagged("slanted")
|
||||||
|
.placeSketch(viewport_cutout)
|
||||||
|
.cutBlind(-shell_t)
|
||||||
|
# Make hole for screen assembly so the whole screen fits
|
||||||
|
.workplaneFromTagged("slanted")
|
||||||
|
.workplane(offset=-shell_t, centerOption="CenterOfBoundBox")
|
||||||
|
# Left bezel is wider than right one, so this hole is displaced to the left
|
||||||
|
.center(-3, 0)
|
||||||
|
.placeSketch(screen_cutout)
|
||||||
|
.cutBlind(-scr_thickness)
|
||||||
|
# Trim the top
|
||||||
|
.workplaneFromTagged("mid_height")
|
||||||
|
.workplane(offset=21)
|
||||||
|
.placeSketch(cq.Sketch().trapezoid(1000, 1000, 90, mode="a"))
|
||||||
|
.cutBlind(100)
|
||||||
|
# Make it hollow
|
||||||
|
.faces("<Z")
|
||||||
|
# Can't be exactly shell_t because cq fails
|
||||||
|
.shell(-shell_t + 0.01)
|
||||||
|
# Cut hole for the screen board and cables
|
||||||
|
.workplaneFromTagged("slanted")
|
||||||
|
.workplane(offset=-scr_thickness, centerOption="CenterOfBoundBox")
|
||||||
|
.placeSketch(board_cutout)
|
||||||
|
.cutBlind(-6)
|
||||||
|
# Fillet top of the object
|
||||||
|
.edges(">Z and |X")
|
||||||
|
.fillet(5)
|
||||||
|
# Make small hole for the keyboard cable
|
||||||
|
.faces(">Y")
|
||||||
|
.workplane(offset=-5, centerOption="CenterOfBoundBox")
|
||||||
|
.center(-width / 2 + 128, -23)
|
||||||
|
.placeSketch(kbd_cable_hole)
|
||||||
|
.cutBlind(-1000)
|
||||||
|
# Pillars to join with bottom half
|
||||||
|
.workplaneFromTagged("mid_height")
|
||||||
|
.workplane(offset=-thickness / 2, centerOption="CenterOfBoundBox")
|
||||||
|
.center(-width / 2, height / 2)
|
||||||
|
.placeSketch(mounting_pillars)
|
||||||
|
.extrude(10)
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
exporters.export(model(), "screen_mount.stl")
|
||||||
|
|
||||||
|
split_offset = -133
|
||||||
|
|
||||||
|
right_side = (
|
||||||
|
model()
|
||||||
|
.faces(">X")
|
||||||
|
.workplane(centerOption="CenterOfBoundBox", offset=split_offset)
|
||||||
|
.center(0, height / 2)
|
||||||
|
.split(keepTop=True)
|
||||||
|
)
|
||||||
|
|
||||||
|
exporters.export(right_side, "right_screen_mount.stl")
|
||||||
|
|
||||||
|
left_side = (
|
||||||
|
model()
|
||||||
|
.faces(">X")
|
||||||
|
.workplane(centerOption="CenterOfBoundBox", offset=split_offset)
|
||||||
|
.center(0, height / 2)
|
||||||
|
.split(keepBottom=True)
|
||||||
|
)
|
||||||
|
|
||||||
|
exporters.export(left_side, "left_screen_mount.stl")
|
40686
notebook_nueva/screen_mount.stl
Normal file
40686
notebook_nueva/screen_mount.stl
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user