Jump to content

Recommended Posts

Posted

I work as an ICT teacher at a London based private primary school. We've recently decided to introduce a 3D printing topic over this term with our Y6 classes - the first time we've ever done it.

 

The biggest issue for us has been finding a way of scaffolding it for 10-11 year olds. All softwares we have found have been aimed more at secondary school children. There's an amazing one called Tinkercad which would be perfect were it not for the $1000 a month (for 10 licences!) price for using it. Our children are currently designing their own robot models using FreeCAD (opensource) - simple and free, but with lots of issues at the moment too with memory floods. When it eventually arrives, we'll be printing off their designs on a Cube3D printer. The entire topic is very trial and error - realising issues around the subject each lesson and solving problems when we come to them!

 

As far as we can tell, we're the only primary school in the country that's currently doing this. Does anyone know anyone else who is? It would be very useful to share ideas or suggestions. Alternatively, once this is done we're happy to offer any thoughts!

 

Cheers!

Posted

Or 3dtin or even blender (well - you did say FreeCad was easy!). I'd think even OpenScad might be OK depending on the aims of the lesson and the age of the students.

 

Amazing to hear someone is doing this in a Primary School. Good luck!

Posted

Thanks for the speedy replies everyone!

 

Printcraft looks amazing - I certainly wouldn't need to encourage anyone to use it either! Not ideal as the plots only last a week, but may use it for "Design Your Own Castle" competition later in the year. Doodle3D too! Might have to put in a pre-order for that box.

 

We did consider using SketchUp, although we couldn't find a way of getting it to work in a way that would suit us. Can't exactly remember what it was now! Will look into it again.

 

I thought 3DTin was fantastic when we first looked at it - however they make saving it as an .stl file surprisingly difficult. You had to send it to them as another file if I remember correctly.

 

FreeCAD is a bit fiendish, but we're only keeping them in the "Part" menu for now - building up a simple robot using set 3D shapes, resizing and transforming them, combining parts and cutting eventually. Maybe doing some edges if we have time. I doubt we'll use any of the other menus!

 

I'll check out OpenScad but it looks from the website like it's pure code!

Posted

@rjm30 You only need a Doodle3D box if you want to add that to a printer you don't need one in order to use their s/w when they release it so you can still use your normal workflow.

 

OpenScad is more like a programming language but it's quite easy to create simple shapes and then move and take those shapes away from other shapes to end up with a usable 3d model.

 

Ben

Posted (edited)

I'll check out OpenScad but it looks from the website like it's pure code!

 

OpenSCAD is pure code but it is also interactive enough that feedback to making changes is quick (so if you change the placement of a part, you just press F5 and see the effect). You can use it with something like InkScape to extrude more complex shapes (via DXF). I'd think it would be useable if well planned - i.e. you provide templates which are building blocks to the final outcomes for anything too complex. Depends really what you want to teach them - the term 3d printing could cover everything from Arduino programming and wiring up stepper motors through the behaviour of different materials when extruding (or different kinds of additive manufacturing processes) to just picking stuff off thingverse and printing. I'm currently building my second 3d printer (a Mendel 90) and I'm still learning new stuff by the bucketful!

Edited by pcstru
Posted
We had a look and thinks it's great! They currently haven't had much experience of typed code - we build them up with programming from Year 3, culminating in doing a webpage with HTML. I'll have a think about swapping over...
Posted

My OpenScad is quick and dirty but it still amazes me that this:

 

full_leg = 1;

module clamp(){
difference(){
union(){
translate([-2,0,0]) cube([30,20,10]);
translate([0,0,0]) rotate([0,90,90]) cylinder(r=2,h=20,$fn=50);
translate([26,0,0]) rotate([0,90,90]) cylinder(r=2,h=20,$fn=50);
translate([-22,0,8.5]) cube([70,20,3]);
}
translate([2.5,0,3]) cube([21,20,15]);
translate([-12,10,8.5]) cylinder(r=3.2/2,h=4);
translate([38,10,8.5]) cylinder(r=3.2/2,h=4);
}
}

module leg(){
difference(){
union(){
cube([3,100,20]);
translate([23,0,0]) cube([3,100,20]);
translate([0,100,10]) rotate([0,90,0]) cylinder(r=10,h=26,$fn=6);
translate([0,45,0]) cube([26,10,20]);
}
translate([3,80,0]) cube([20,20,20]);
translate([-3,85,10]) rotate([0,90,0]) cylinder(r=4,h=32);
translate([-3,65,10]) rotate([0,90,0]) cylinder(r=4,h=32);
translate([-3,35,10]) rotate([0,90,0]) cylinder(r=4,h=32);
translate([-3,15,10]) rotate([0,90,0]) cylinder(r=4,h=32);
}
}

if (full_leg == 1){
rotate([90,0,0]) clamp();
leg();
}
{
rotate([90,0,0]) clamp();
}

 

Produces a next object.

 

Ben

  • 2 weeks later...
  • 8 months later...
Posted

Someone PM'd me recently about my thoughts on doing this so far, so I'll paste in what I wrote - let me know if there's anything else that would be of use!

 

We decided that we wanted to get a 3D printer for our ICT department - the primary school where I teach is subject taught, so I have dedicated ICT lessons with Reception up to Year 6. I wanted to make the 3D printing project cross-curricular with Art/DT and Maths into a big project, but I found it difficult to explain what I was doing to those teachers and so decided to go it alone for a term instead.

 

We looked around at a lot of different 3D printers and eventually chose this one:Cube 3D printer tech specs. We considered building our own - cheaper and more reliable - but got cold feet as the Headteacher was expecting results and I was terrified of messing up the building part! Cube3D sell themselves as being the most user-friendly, which they may well be but there's also quite a big lie about how simple printing is - it's not. You have to calibrate it perfectly every time or it won't work. With practice it gets easier, but it's certainly not as hassle-free as they present it to be. It is also very slow - I printed a teacup and it took 4-5 hours. Not a problem necessarily, but something to consider if you have to print 50 separate models (which I did!)

 

I wouldn't particularly recommend Cube3D model 2 for a few reasons, but it looks like it's already been updated to Cube3D 3 - I imagine they've ironed out a lot of the issues we had. Having said that their help team were incredibly good (once we were able to get in touch with them!). I've heard very good things about CubeX (CubeX features & specs | Cubify.com) and Makerbot (https://www.makerbot.com/) but I think these are more expensive. Also it's worth mentioning that the materials are very cheap, so no need to worry about that element.

 

In the end, I decided to get my Year 6s to design robots using a free CAD software I found on the internet - FREECAD (FreeCAD: An Open Source parametric 3D CAD modeler). I wouldn't recommend this! Firstly, 3D printers are still very basic and they really need to print models with a strong base or they collapse a bit - buildings, castles etc would be perfect. Robots with stick-thin legs are definitely not! Secondly, the CAD software we used was extremely glitchy - free and simple enough for primary children to use (difficult to find one that is both), but badly designed.

 

If I could go back and redo everything again, I would get the children to build something like a castle using this program I later found - Autodesk 123D Design. Brilliant and simple, with lots of templates that children can easily adapt themselves. If each child could get an email account to run it off it would be even better!

 

I think that's all I can remember about it. Feel free to ask away though - I know how little there is out there about this as a teaching topic!

Posted

I have used Google Sketchup with Year 5s and I know that I can translate sketches into 3D printer compatible files as I did one once and sent it to a fellow geek to print on his printer so I think that we be OK with an open-source type printer.

 

I think I need to get out and actually see a few in action before rushing into buying but its a new concept for primaries so some risks got to be taken :)

 

If it doesn't work out - I'll buy it off em for 50% of price :)

 

Simon

Posted

Just came across this on the App Store:

 

Modio ? 3D printing app for iPad

 

Looks great for Primary kids creating robot models etc. Once you have finished your model it places everything on your buildplate; just browse to the IP of the iPad and download the .stl or .thing (Makerbot) file.

 

Will try this at home on my printer and update results.

  • Thanks 1
Posted

Has anybody had a look at the UP! Plus 2 3D printer? We are doing really well selling these to both primary and secondary schools they are by far the best 3D printer on the market and have won a number of worldwide awards. The model is fully automatic, has a very high resolution print quality (smooth touch) and uses both PLA and ABS and are much quicker to setup meaning that class lesson times aren't wasted. The MakerBot model is not automatic, and the resolution is much lower - the unit also only takes PLA which is quite a grainy material when printing. I would definitely recommend the UP! Plus 2, we assessed the whole market place before pushing these out to education and the UP! Plus 2 by far supersedes rival models.

 

Price wise, the UP! Plus 2 is considerably cheaper than the MakerBot range - and is a really easy to use 'out-of-box' / 'plug and play' printer! If anyone would like any further info please give me a shout.

Posted (edited)

@SamElphick

I imagine that there are more points wrong with your post than what I'm going to come up with so be prepared for more feedback

 

1. Your post is close to being marketing spam

 

2. Selling an expensive open printer to primaries has so many things wrong with it I don't know where to start.

 

3. I can't be bothered to go on

 

but hyperbollik statements are NOT a good way to get any business with anyone here :(

 

Simon

Edited by SimpleSi
  • Thanks 1
  • 2 weeks later...
Posted
Whilst the Up! Plus 2 is a very good printer the Makerbot range is also excellent. The resolution is slightly better than the Up! Plus 2 on the Z Axis The MAkerBot range does cover PLA and ABS with the MakerBot 2X taking ABS. The UP! Plus is 2 optimised for ABS printing hence the heated print bed, it can be used with PLA but its mainly built for PLA. If you are comparing the output from the UP! Plus 2 and the MakerBot range it is very difficult to split the quality. The MakerBot Mini is comparative in price to the UP! Plus 2 infact it is slightly cheaper but the UP! Mini does come in at a lower cost.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...