<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.opensourceecology.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Wneal</id>
	<title>Open Source Ecology - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.opensourceecology.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Wneal"/>
	<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/wiki/Special:Contributions/Wneal"/>
	<updated>2026-04-21T11:47:48Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.13</generator>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=OSE_Simulator&amp;diff=313046</id>
		<title>OSE Simulator</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=OSE_Simulator&amp;diff=313046"/>
		<updated>2025-10-21T17:43:11Z</updated>

		<summary type="html">&lt;p&gt;Wneal: /* Background */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Background==&lt;br /&gt;
A simulator was written for &#039;&#039;FIRST&#039;&#039; Robotics Competition robots allowing teams to understand the performance characteristics of their robots before building them. The simulator models the robots using a collection of physical parameters stored in a .yaml file and allows users to control the robots using the same game controller used in the competition. &lt;br /&gt;
&lt;br /&gt;
Several of the Open Source Ecology projects involving moving vehicles and/or parts may benefit from modeling in such a simulator. Possible applications may include affordable automation or remote control modules for skid-steers or tractors for example.&lt;br /&gt;
&lt;br /&gt;
It is thus possible to imagine the expansion of this simulator to incorporate other machines. In the context of Open Source ecology, this especially applies to GVCS machines.&lt;br /&gt;
&lt;br /&gt;
==Source Code==&lt;br /&gt;
&lt;br /&gt;
Here is the link to the GitLab Repository hosting the code for this project:&lt;br /&gt;
https://gitlab.com/wjaneal/frc-simulator&lt;br /&gt;
&lt;br /&gt;
==Simulator Toolchain==&lt;br /&gt;
*Robot is designed in a CAD Package such as FreeCAD or OnShape&lt;br /&gt;
*Export the model of the robot in a .obj format&lt;br /&gt;
*Import the model to Blender&lt;br /&gt;
*Pare down the file size by removing highly detailed parts such as nuts and bolts. The intent is to maintain the physical appearance of the robot with the smallest file size possible - this allows the simulator to work without appreciable lag even on less capable computers.&lt;br /&gt;
*Export the Blender file to a .glb format - this may require installing an add-on in the Blender environment&lt;br /&gt;
*Import the .glb file into the simulator which is written in Python / Panda3D&lt;br /&gt;
&lt;br /&gt;
==Software Design==&lt;br /&gt;
The software is divided into several modules:&lt;br /&gt;
# The GUI code - FRCSIMMainMenu.py. This imports the controls class&lt;br /&gt;
# The Controls class - tying in user input through the keyboard and game controller with the simulated movement of the robot - FRCControls.py. This imports the base class.&lt;br /&gt;
# The FRC base class - this stages all of the Panda3D graphics assets for deployment in the application. This imports the physics class&lt;br /&gt;
# The FRC physics class - a collection of mathematics and physics-related functions to calculate the behaviour of the robot during the simulation. This class imports YAML files corresponding to the specific robot that is being modeled by the simulator at a particular time.&lt;br /&gt;
# YAML files - these are used to specify the physical attributes of each robot.&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=OSE_Simulator&amp;diff=313045</id>
		<title>OSE Simulator</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=OSE_Simulator&amp;diff=313045"/>
		<updated>2025-10-21T17:41:11Z</updated>

		<summary type="html">&lt;p&gt;Wneal: /* Software Design */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Background==&lt;br /&gt;
A simulator was written for &#039;&#039;FIRST&#039;&#039; Robotics Competition robots allowing teams to understand the performance characteristics of their robots before building them. The simulator models the robots using a collection of physical parameters stored in a .yaml file and allows users to control the robots using the same game controller used in the competition. &lt;br /&gt;
&lt;br /&gt;
Several of the Open Source Ecology projects involving moving vehicles and/or parts may benefit from modeling in such a simulator. Possible applications may include affordable automation or remote control modules for skid-steers or tractors for example.&lt;br /&gt;
&lt;br /&gt;
==Source Code==&lt;br /&gt;
&lt;br /&gt;
Here is the link to the GitLab Repository hosting the code for this project:&lt;br /&gt;
https://gitlab.com/wjaneal/frc-simulator&lt;br /&gt;
&lt;br /&gt;
==Simulator Toolchain==&lt;br /&gt;
*Robot is designed in a CAD Package such as FreeCAD or OnShape&lt;br /&gt;
*Export the model of the robot in a .obj format&lt;br /&gt;
*Import the model to Blender&lt;br /&gt;
*Pare down the file size by removing highly detailed parts such as nuts and bolts. The intent is to maintain the physical appearance of the robot with the smallest file size possible - this allows the simulator to work without appreciable lag even on less capable computers.&lt;br /&gt;
*Export the Blender file to a .glb format - this may require installing an add-on in the Blender environment&lt;br /&gt;
*Import the .glb file into the simulator which is written in Python / Panda3D&lt;br /&gt;
&lt;br /&gt;
==Software Design==&lt;br /&gt;
The software is divided into several modules:&lt;br /&gt;
# The GUI code - FRCSIMMainMenu.py. This imports the controls class&lt;br /&gt;
# The Controls class - tying in user input through the keyboard and game controller with the simulated movement of the robot - FRCControls.py. This imports the base class.&lt;br /&gt;
# The FRC base class - this stages all of the Panda3D graphics assets for deployment in the application. This imports the physics class&lt;br /&gt;
# The FRC physics class - a collection of mathematics and physics-related functions to calculate the behaviour of the robot during the simulation. This class imports YAML files corresponding to the specific robot that is being modeled by the simulator at a particular time.&lt;br /&gt;
# YAML files - these are used to specify the physical attributes of each robot.&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=OSE_Simulator&amp;diff=313044</id>
		<title>OSE Simulator</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=OSE_Simulator&amp;diff=313044"/>
		<updated>2025-10-21T17:40:50Z</updated>

		<summary type="html">&lt;p&gt;Wneal: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Background==&lt;br /&gt;
A simulator was written for &#039;&#039;FIRST&#039;&#039; Robotics Competition robots allowing teams to understand the performance characteristics of their robots before building them. The simulator models the robots using a collection of physical parameters stored in a .yaml file and allows users to control the robots using the same game controller used in the competition. &lt;br /&gt;
&lt;br /&gt;
Several of the Open Source Ecology projects involving moving vehicles and/or parts may benefit from modeling in such a simulator. Possible applications may include affordable automation or remote control modules for skid-steers or tractors for example.&lt;br /&gt;
&lt;br /&gt;
==Source Code==&lt;br /&gt;
&lt;br /&gt;
Here is the link to the GitLab Repository hosting the code for this project:&lt;br /&gt;
https://gitlab.com/wjaneal/frc-simulator&lt;br /&gt;
&lt;br /&gt;
==Simulator Toolchain==&lt;br /&gt;
*Robot is designed in a CAD Package such as FreeCAD or OnShape&lt;br /&gt;
*Export the model of the robot in a .obj format&lt;br /&gt;
*Import the model to Blender&lt;br /&gt;
*Pare down the file size by removing highly detailed parts such as nuts and bolts. The intent is to maintain the physical appearance of the robot with the smallest file size possible - this allows the simulator to work without appreciable lag even on less capable computers.&lt;br /&gt;
*Export the Blender file to a .glb format - this may require installing an add-on in the Blender environment&lt;br /&gt;
*Import the .glb file into the simulator which is written in Python / Panda3D&lt;br /&gt;
&lt;br /&gt;
==Software Design==&lt;br /&gt;
The software is divided into several modules:&lt;br /&gt;
1. The GUI code - FRCSIMMainMenu.py. This imports the controls class&lt;br /&gt;
2. The Controls class - tying in user input through the keyboard and game controller with the simulated movement of the robot - FRCControls.py. This imports the base class.&lt;br /&gt;
3. The FRC base class - this stages all of the Panda3D graphics assets for deployment in the application. This imports the physics class&lt;br /&gt;
4. The FRC physics class - a collection of mathematics and physics-related functions to calculate the behaviour of the robot during the simulation. This class imports YAML files corresponding to the specific robot that is being modeled by the simulator at a particular time.&lt;br /&gt;
5. YAML files - these are used to specify the physical attributes of each robot.&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=OSE_Simulator&amp;diff=313043</id>
		<title>OSE Simulator</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=OSE_Simulator&amp;diff=313043"/>
		<updated>2025-10-21T17:32:45Z</updated>

		<summary type="html">&lt;p&gt;Wneal: /* Background */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Background==&lt;br /&gt;
A simulator was written for &#039;&#039;FIRST&#039;&#039; Robotics Competition robots allowing teams to understand the performance characteristics of their robots before building them. The simulator models the robots using a collection of physical parameters stored in a .yaml file and allows users to control the robots using the same game controller used in the competition. &lt;br /&gt;
&lt;br /&gt;
Several of the Open Source Ecology projects involving moving vehicles and/or parts may benefit from modeling in such a simulator. Possible applications may include affordable automation or remote control modules for skid-steers or tractors for example.&lt;br /&gt;
&lt;br /&gt;
==Source Code==&lt;br /&gt;
&lt;br /&gt;
Here is the link to the GitLab Repository hosting the code for this project:&lt;br /&gt;
https://gitlab.com/wjaneal/frc-simulator&lt;br /&gt;
&lt;br /&gt;
==Simulator Toolchain==&lt;br /&gt;
*Robot is designed in a CAD Package such as FreeCAD or OnShape&lt;br /&gt;
*Export the model of the robot in a .obj format&lt;br /&gt;
*Import the model to Blender&lt;br /&gt;
*Pare down the file size by removing highly detailed parts such as nuts and bolts. The intent is to maintain the physical appearance of the robot with the smallest file size possible - this allows the simulator to work without appreciable lag even on less capable computers.&lt;br /&gt;
*Export the Blender file to a .glb format - this may require installing an add-on in the Blender environment&lt;br /&gt;
*Import the .glb file into the simulator which is written in Python / Panda3D&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=OSE_Simulator&amp;diff=313042</id>
		<title>OSE Simulator</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=OSE_Simulator&amp;diff=313042"/>
		<updated>2025-10-21T17:30:38Z</updated>

		<summary type="html">&lt;p&gt;Wneal: /* Background */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Background==&lt;br /&gt;
A simulator was written for &#039;&#039;FIRST&#039;&#039; Robotics Competition robots allowing teams to understand the performance characteristics of their robots before building them. The simulator models the robots using a collection of physical parameters stored in a .yaml file and allows users to control the robots using the same game controller used in the competition.&lt;br /&gt;
&lt;br /&gt;
==Source Code==&lt;br /&gt;
&lt;br /&gt;
Here is the link to the GitLab Repository hosting the code for this project:&lt;br /&gt;
https://gitlab.com/wjaneal/frc-simulator&lt;br /&gt;
&lt;br /&gt;
==Simulator Toolchain==&lt;br /&gt;
*Robot is designed in a CAD Package such as FreeCAD or OnShape&lt;br /&gt;
*Export the model of the robot in a .obj format&lt;br /&gt;
*Import the model to Blender&lt;br /&gt;
*Pare down the file size by removing highly detailed parts such as nuts and bolts. The intent is to maintain the physical appearance of the robot with the smallest file size possible - this allows the simulator to work without appreciable lag even on less capable computers.&lt;br /&gt;
*Export the Blender file to a .glb format - this may require installing an add-on in the Blender environment&lt;br /&gt;
*Import the .glb file into the simulator which is written in Python / Panda3D&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=OSE_Simulator&amp;diff=313034</id>
		<title>OSE Simulator</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=OSE_Simulator&amp;diff=313034"/>
		<updated>2025-10-21T12:58:18Z</updated>

		<summary type="html">&lt;p&gt;Wneal: /* Simulator Toolchain */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Background==&lt;br /&gt;
A simulator was written for &#039;&#039;FIRST&#039;&#039; Robotics Competition robots allowing teams to understand the performance characteristics of their robots before building them. The simulator models the robots using a collection of physical parameters stored in a .yaml file and allows users to control the robots using the same game controller used in the competition.&lt;br /&gt;
==Simulator Toolchain==&lt;br /&gt;
*Robot is designed in a CAD Package such as FreeCAD or OnShape&lt;br /&gt;
*Export the model of the robot in a .obj format&lt;br /&gt;
*Import the model to Blender&lt;br /&gt;
*Pare down the file size by removing highly detailed parts such as nuts and bolts. The intent is to maintain the physical appearance of the robot with the smallest file size possible - this allows the simulator to work without appreciable lag even on less capable computers.&lt;br /&gt;
*Export the Blender file to a .glb format - this may require installing an add-on in the Blender environment&lt;br /&gt;
*Import the .glb file into the simulator which is written in Python / Panda3D&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=OSE_Simulator&amp;diff=313033</id>
		<title>OSE Simulator</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=OSE_Simulator&amp;diff=313033"/>
		<updated>2025-10-21T12:58:03Z</updated>

		<summary type="html">&lt;p&gt;Wneal: Created page with &amp;quot;==Background== A simulator was written for &amp;#039;&amp;#039;FIRST&amp;#039;&amp;#039; Robotics Competition robots allowing teams to understand the performance characteristics of their robots before building them. The simulator models the robots using a collection of physical parameters stored in a .yaml file and allows users to control the robots using the same game controller used in the competition. ==Simulator Toolchain== *Robot is designed in a CAD Package such as FreeCAD or OnShape *Export the mode...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Background==&lt;br /&gt;
A simulator was written for &#039;&#039;FIRST&#039;&#039; Robotics Competition robots allowing teams to understand the performance characteristics of their robots before building them. The simulator models the robots using a collection of physical parameters stored in a .yaml file and allows users to control the robots using the same game controller used in the competition.&lt;br /&gt;
==Simulator Toolchain==&lt;br /&gt;
*Robot is designed in a CAD Package such as FreeCAD or OnShape&lt;br /&gt;
*Export the model of the file in a .obj format&lt;br /&gt;
*Import the model to Blender&lt;br /&gt;
*Pare down the file size by removing highly detailed parts such as nuts and bolts. The intent is to maintain the physical appearance of the robot with the smallest file size possible - this allows the simulator to work without appreciable lag even on less capable computers.&lt;br /&gt;
*Export the Blender file to a .glb format - this may require installing an add-on in the Blender environment&lt;br /&gt;
*Import the .glb file into the simulator which is written in Python / Panda3D&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=Industry&amp;diff=313032</id>
		<title>Industry</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=Industry&amp;diff=313032"/>
		<updated>2025-10-21T12:51:29Z</updated>

		<summary type="html">&lt;p&gt;Wneal: /* Software */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Includes==&lt;br /&gt;
&lt;br /&gt;
- [[Multimachine]]	&lt;br /&gt;
&lt;br /&gt;
- [[Ironworker]]	&lt;br /&gt;
&lt;br /&gt;
- [[Laser Cutter]]	&lt;br /&gt;
&lt;br /&gt;
- [[Welder]]&lt;br /&gt;
&lt;br /&gt;
- [[Plasma Cutter]]&lt;br /&gt;
&lt;br /&gt;
- [[CNC Torch Table]]&lt;br /&gt;
&lt;br /&gt;
- [[Metal Roller]]	&lt;br /&gt;
&lt;br /&gt;
- [[Rod and Wire Mill]]&lt;br /&gt;
	&lt;br /&gt;
- [[Press Forge]]	&lt;br /&gt;
&lt;br /&gt;
- [[Universal Rotor]]&lt;br /&gt;
&lt;br /&gt;
- [[3D Printer]]	&lt;br /&gt;
&lt;br /&gt;
- [[3D Scanner]]	&lt;br /&gt;
&lt;br /&gt;
- [[CNC Circuit Mill]]&lt;br /&gt;
	&lt;br /&gt;
- [[Industrial Robot]]&lt;br /&gt;
	&lt;br /&gt;
- [[Chipper Hammermill]]&lt;br /&gt;
&lt;br /&gt;
- [[Drill Press]]&lt;br /&gt;
	&lt;br /&gt;
- [[Induction Furnace]]&lt;br /&gt;
&lt;br /&gt;
==Software==&lt;br /&gt;
- [[OSE Simulator]]&lt;br /&gt;
The [[OSE Simulator]] is intended to support development and testing and to enable the autonomous operation of various machines.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
[[Digital Fabrication]]&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=Industry&amp;diff=313031</id>
		<title>Industry</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=Industry&amp;diff=313031"/>
		<updated>2025-10-21T12:49:56Z</updated>

		<summary type="html">&lt;p&gt;Wneal: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Includes==&lt;br /&gt;
&lt;br /&gt;
- [[Multimachine]]	&lt;br /&gt;
&lt;br /&gt;
- [[Ironworker]]	&lt;br /&gt;
&lt;br /&gt;
- [[Laser Cutter]]	&lt;br /&gt;
&lt;br /&gt;
- [[Welder]]&lt;br /&gt;
&lt;br /&gt;
- [[Plasma Cutter]]&lt;br /&gt;
&lt;br /&gt;
- [[CNC Torch Table]]&lt;br /&gt;
&lt;br /&gt;
- [[Metal Roller]]	&lt;br /&gt;
&lt;br /&gt;
- [[Rod and Wire Mill]]&lt;br /&gt;
	&lt;br /&gt;
- [[Press Forge]]	&lt;br /&gt;
&lt;br /&gt;
- [[Universal Rotor]]&lt;br /&gt;
&lt;br /&gt;
- [[3D Printer]]	&lt;br /&gt;
&lt;br /&gt;
- [[3D Scanner]]	&lt;br /&gt;
&lt;br /&gt;
- [[CNC Circuit Mill]]&lt;br /&gt;
	&lt;br /&gt;
- [[Industrial Robot]]&lt;br /&gt;
	&lt;br /&gt;
- [[Chipper Hammermill]]&lt;br /&gt;
&lt;br /&gt;
- [[Drill Press]]&lt;br /&gt;
	&lt;br /&gt;
- [[Induction Furnace]]&lt;br /&gt;
&lt;br /&gt;
==Software==&lt;br /&gt;
- [[OSE Simulator]]&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
[[Digital Fabrication]]&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=Team_Wikispeed&amp;diff=261408</id>
		<title>Team Wikispeed</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=Team_Wikispeed&amp;diff=261408"/>
		<updated>2021-10-17T01:49:42Z</updated>

		<summary type="html">&lt;p&gt;Wneal: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
==TED talk:==&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;560&amp;quot; height=&amp;quot;315&amp;quot; src=&amp;quot;https://www.youtube.com/embed//x8jdx-lf2Dw&amp;quot; frameborder=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Team Wikispeed=&lt;br /&gt;
[http://www.wikispeed.com/ Wikispeed] is a team of volunteers that formed around the work of [http://www.linkedin.com/profile/view?id=4583874&amp;amp;authType=NAME_SEARCH&amp;amp;authToken=y3gN&amp;amp;locale=en_US&amp;amp;srchid=f5fc9cc6-0258-4503-b0b3-92382aac28b1-0&amp;amp;srchindex=1&amp;amp;srchtotal=1&amp;amp;goback=%2Efps_PBCK_joe+justice+wikispeed_*1_*1_*1_*1_*1_*1_*2_*1_Y_*1_*1_*1_false_1_R_*1_*51_*1_*51_true_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2&amp;amp;pvs=ps&amp;amp;trk=pp_profile_name_link Joe Justice] as he competed in the [http://www.progressiveautoxprize.org/teams/wikispeed Progressive Insurance Automotive X-Prize]. His greatest innovation was applying [http://en.wikipedia.org/wiki/Scrum_(development) lean/agile/SCRUM] software program management to hardware, specifically the iterative design of a 100+ mpg passenger vehicle.&lt;br /&gt;
&lt;br /&gt;
The dramatic success of Team Wikispeed&#039;s activities pretty much demands listening to what Joe has to say.&lt;br /&gt;
&lt;br /&gt;
For clarity, and because I wasn&#039;t clear on this point until I researched it, it is important to point out that Team Wikispeed was eliminated in the first round of on-location testing at the X-Prize competition. &amp;quot;Without even bothering to look at the finite element analysis and computational fluid dynamics Justice had brought as proof of his design’s validity, the inspector rejected the car outright. Justice felt like he’d been slapped in the face. “It was like fireworks going off in my cheeks,” he says. “This is something I’ve had a whole lot of design input into, and this one person is saying, ‘This isn’t good enough.’...Rather than spending hours pulling apart the SGT01 to get to the suspension, the team simply unbolted the body, removed the suspension module, and began fabricating a new one. They got it done, too, just in time. The only problem was that as they finished, minutes before the deadline, Justice and another team member cut a wire in the electrical system. The car wouldn’t start, and Wikispeed’s run for the X Prize was done. They finished in a tie for 10th in their division.&amp;quot; [http://www.seattlemet.com/issues/archives/articles/wikispeeds-100-mpg-car-january-2011/3/ article]&lt;br /&gt;
&lt;br /&gt;
===General===&lt;br /&gt;
* First functional prototype built in 3 months.&lt;br /&gt;
* Existing manufacturing processes are slow to change because they&#039;re exceptionally expensive to change.&lt;br /&gt;
** Major manufacturers typically operate on 10-25 year design cycles.&lt;br /&gt;
* Wikispeed uses 7-day design cycles.&lt;br /&gt;
* Iterated a process that brought the cost/time of a full structural carbon fiber car body down from $36,000/3 months to $800/3 days.&lt;br /&gt;
* Went from 1 guy in his garage to 100+ volunteers, in 8 countries, and a production-ready car in 6 months.&lt;br /&gt;
&lt;br /&gt;
===Specific===&lt;br /&gt;
* Modularity.&lt;br /&gt;
** Every system in the car can be separated from every other system as quickly and easily as changing a tire.&lt;br /&gt;
* Test-based.&lt;br /&gt;
** The customer-value standard, and the test for it, is designed BEFORE the solution is designed.&lt;br /&gt;
* Use less stuff.&lt;br /&gt;
** The parts for the frame of the car can be built with stock 4&amp;quot; aluminum tube, an $80 band saw, and a used-kit-built CNC milling machine.&lt;br /&gt;
** Reduce costs in tooling, machinery and complexity wherever possible. This allows for improvements to be incorporated into the design immediately because there are so few sunk costs.&lt;br /&gt;
* Distributed, collaborative teams.&lt;br /&gt;
** Use free online tools.&lt;br /&gt;
* Morale for velocity.&lt;br /&gt;
** It&#039;s not additive or subtractive, it&#039;s a multiplier. &lt;br /&gt;
* Work in pairs.&lt;br /&gt;
** Put a newbie with a pro and the newbie learns AS the job gets done. This eliminates time devoted to training. The pro gets help, the newbie gets hands-on experience.&lt;br /&gt;
** Also eliminates the need for most types of documentation.&lt;br /&gt;
* Visualize workflow to eliminate any time spent not creatively solving problems.&lt;br /&gt;
&lt;br /&gt;
==Keynote American Council of Engineering Companies==&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;560&amp;quot; height=&amp;quot;315&amp;quot; src=&amp;quot;https://www.youtube.com/embed//I3HXw0Ruz9M&amp;quot; frameborder=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Summary: Scrum Gathering in Seattle==&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;560&amp;quot; height=&amp;quot;315&amp;quot; src=&amp;quot;https://www.youtube.com/embed//pjempylJy1w&amp;quot; frameborder=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is a summary of the talk:&lt;br /&gt;
===History===&lt;br /&gt;
* Initial Goal: build the lightest chassis.&lt;br /&gt;
* Share on the blog&lt;br /&gt;
** asked silly and nerdy questions&lt;br /&gt;
* passes technical deliverables for the [http://www.xprize.org/ X prize].&lt;br /&gt;
** became finalist to compete with 136 cars, most of them funded by millions of dollars&lt;br /&gt;
** iterating the car at the race track, inspired a higher driver of a team competing against WikiSpeed to spend a lot of time hanging out with the Team.&lt;br /&gt;
** got 10th place.&lt;br /&gt;
** Received several tens of thousands of dollars in road legal certification and testing.&lt;br /&gt;
** Press&lt;br /&gt;
* Team grew: 56 members in 6 countries.&lt;br /&gt;
&lt;br /&gt;
===Learned===&lt;br /&gt;
&lt;br /&gt;
* Contract-first Design: by Modules.&lt;br /&gt;
** Suspension - changed for 10 minutes - adjustable in caster, tow?, camber, wheel-base and track, individually per wheel.&lt;br /&gt;
** Interior in the race car version - aluminum bathtub that lifts out. The 4-seat interior for the contest can be easily exchanged with the 2-seat interior for testing.&lt;br /&gt;
** Engine - at the back of the car. The entire Power Train, with its transmission, fuel tank and cooling system can be rolled out in the time it takes to change a tire while it is running. This let us have one engine on the test bench being evaluated and another engine in the car doing testing, bring the car, switch the engines, test the other one - able to develop and test engines independently of each other.&lt;br /&gt;
** Chassis - all other modules connect to. Side, front, front impact. Peak stress. Our entire car absorbs the weight. 5 star crash rating equivalence.&lt;br /&gt;
** Car Body - cut foam with CNC machine from a CAD design, sand it, (70 volunteers in 6 countries in multiple locations)&lt;br /&gt;
*** from Structural Carbon Fiber (normally used in airspace and exotic automobiles) was really expensive, but the material itself wasn&#039;t expensive, but the knowledge how to use it was. So Joe Justice went to composite school for few weeks and then they built the carbon fiber body for $800 in 3 days (body would cost $36,000 in 3 months time with traditional manufacturing techniques).&lt;br /&gt;
* Went to [http://www.naias.com/ North American International Auto Show] - put WikiSpeed on the main floor between Ford and Chevrolet. Met the creator of the car body, Rob Mohrbacher of http://mohrcomposites.com from [http://en.wikipedia.org/wiki/Germantown,_Montgomery_County,_Maryland Germantown, Maryland].&lt;br /&gt;
&lt;br /&gt;
===How - Agile and Scrum===&lt;br /&gt;
&lt;br /&gt;
* Weekly stand-up meetings&lt;br /&gt;
* prioritized backlogs&lt;br /&gt;
* and demos&lt;br /&gt;
&lt;br /&gt;
====Tools====&lt;br /&gt;
* FreeConferenceCall - for stand-up meeting&lt;br /&gt;
** What I did, what I will do, what is blocking me&lt;br /&gt;
* Skype free&lt;br /&gt;
* Google Groups - up-to-date daily, pictures, updates, backlog from a Google Doc&lt;br /&gt;
* Google Docs - documents collaboration&lt;br /&gt;
** Trust the Team. It is versioned - who changed, what when. Can be reverted.&lt;br /&gt;
* Avoid planning more than 2 weeks out - we learn so fast that things change what we will do next&lt;br /&gt;
* Facebook and LinkedIn for team and public status updates.&lt;br /&gt;
** don&#039;t repeat information sharing. &lt;br /&gt;
* DropBox and SkyDrive for sharing large files&lt;br /&gt;
* Youtube to share videos&lt;br /&gt;
* Scrumy - online project management tool loosely based on Scrum.&lt;br /&gt;
* Linoit.com - for backlog http://linoit.com&lt;br /&gt;
* LibreCAD - open source CAD for Windows, Apple, Linux&lt;br /&gt;
* Email Lists&lt;br /&gt;
** Always Reply All to approximate being in a Scrum room. Allows distributed team to skim emails and be appraised of the current state of the project.&amp;lt;ref&amp;gt;http://futureofprojectmanagement.com/2011/12/02/joe-justice-built-a-100mpg-car-using-principles-of-agile-lean-and-scrum-how-did-he-do-it/&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Principles - What worked well====&lt;br /&gt;
* By minimizing cost of making change we innovate quickly. Changes in team members, changes in goals, changes in machinery, changes materials.&lt;br /&gt;
* By loosely coupling modules, we make changes in parallel.&lt;br /&gt;
** E.g. split the car into its component modules. Have people working on the suspension system, drive train, emission system, headlights, electronic control mechanism, all in parallel.&lt;br /&gt;
** Modularity: Interior module, Chassis, Pedal Plate, Front Crush Structure, Suspension Module, Engine, Transmission, Fuel System, Emission System, Fuel Injection System, Breaking system.&lt;br /&gt;
** When we started designing the car, we didn&#039;t know how the chassis would end up being like, we didn&#039;t know what type of drive train, type of suspension, we will be using. So what we wanted to do is to reduce the cost to make change between those parts. So we architect a contract - the way these modules will talk to each other and hold together in a structural way and the way they communicate.&lt;br /&gt;
* By working collaboratively and in shared space we unblock quickly.&lt;br /&gt;
** E.g. every time we had a blocking issues the team was able to bulldoze it that same day. Pairing and Swarming worked very well.&lt;br /&gt;
* By first automating test we quickly know if we improved. (Test-driven manufacturing)&lt;br /&gt;
** Example&lt;br /&gt;
*** 100mpg on a highway cycle&lt;br /&gt;
*** etc.&lt;br /&gt;
** When changes came we quickly knew whether we moved entirely forward, or moved forward on a few fronts, but actually backed on to other fronts. So we had to quickly kill work that would have been actually damaging and thus we were moving forward very fast.&lt;br /&gt;
* Test our success criteria - everyone cared about the metrics!&lt;br /&gt;
* Team morale (motivation) is a multiplier for velocity.&lt;br /&gt;
** Make sure people are never or rarely frustrated and that they get to share successes. Celebrating every iteration.&lt;br /&gt;
* Team trust is empowering&lt;br /&gt;
** Question access restrictions on documents, avoid group subjugation. Empowerment keeps velocity high.&lt;br /&gt;
* Single Backlog - all prioritized tasks are visible and in one place&lt;br /&gt;
&lt;br /&gt;
====Modular Inventory====&lt;br /&gt;
* Whenever possible tools are visually next to their consumables.&lt;br /&gt;
* Fewest possible categories always inside of each other (See everything from where you stand)&lt;br /&gt;
* Minimize time spent doing anything but creative problem solving.&lt;br /&gt;
** E.g. - So it’s not just less meetings, less paperwork, but in our case it is that we have a transparent bin that has screw drivers. And every screw driver is in there. There is not a screw driver anywhere else. If someone needs a screwdriver, it’s at a central location not more than twenty steps away. And it’s a clear bin so that they can see if what they need is inside before they even get there. In fact they can see what’s in there across the room and it is labeled. In software teams we would do the same thing with templates, we would do the same thing with test driven development, we would do the same thing with class naming and interface design, so people understand what goes with what. (See references)&lt;br /&gt;
&lt;br /&gt;
====From Software====&lt;br /&gt;
* Agile - reduse cost to make change and iterative development&lt;br /&gt;
* Test-Driven Design - tester and manufacturing&lt;br /&gt;
* XP - pairing and swarming&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Scrum_(development) Scrum] - almost everything. Clearly defined roles and responsibilities.&lt;br /&gt;
* OOP - clearly defined modules, classes and interfaces&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Kanban_(development) Kanban] - work in progress limits, not to overload people.&lt;br /&gt;
* Contract First Development - Define precise and verifiable component interface specifications.&lt;br /&gt;
&lt;br /&gt;
====Wikispeed Future Developments====&lt;br /&gt;
* Making a family car&lt;br /&gt;
* Developing a truck&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Wikispeed Tenets=&lt;br /&gt;
&lt;br /&gt;
* If I give money, time, cookies or supplies to WIKISPEED, and WIKISPEED is profitable, WIKISPEED will pay me back the value of what I put in plus interest commensurable with their level of success. I can choose not to accept repayment, but WIKISPEED will make reasonable attempts. This is based on value, not quantity (in hours, pounds, dollars, or word count).&lt;br /&gt;
* If I give money, time, cookies or supplies to WIKISPEED, I have no claim on WIKISPEED or its decisions or what it does with my resources after I give them. Other than tenant 1 above.&lt;br /&gt;
* If I share my best thoughts and work with WIKISPEED, WIKISPEED can use them at no cost, and I retain rights to re-use or protect my ideas unless I opt to bequeath them to WIKISPEED or the Public Domain.&lt;br /&gt;
&lt;br /&gt;
=Wikispeed Principles=&lt;br /&gt;
&lt;br /&gt;
* Equitable Distribution of Wealth.&lt;br /&gt;
* Avoid profit from waste (e.g. buying a competitor to shut them down). Grow profit based on visible value.&lt;br /&gt;
* If we focus on profit over value to customers, we will obtain neither. If we focus on visible customer value over profit, we will profit.&lt;br /&gt;
* Use less stuff (Lean) wherever responsible.&lt;br /&gt;
* Make decisions at the last responsible moment, this is when we know the most. but be careful not to wait until it is no-longer responsible. We never make a decision before we have to just to &amp;quot;get it out of the way.&amp;quot;&lt;br /&gt;
* Start with the minimum useful solution (porters on roller-skates over a mail-chute), then iterate aggressively to improve visible value and efficient sustainability of the solution.&lt;br /&gt;
* Morale is a multiplier for velocity.&lt;br /&gt;
* We trade estimated future states for knowing the most about our current situation and make changes quickly (Agility).&lt;br /&gt;
* Trust our team. this avoids a culture of CYA, which slows down innovation and kills morale. e.g. a company which spends $6 million on intranet security allowing employees to not see documents above their salary level to avoid leaking potentially libelous documents, instead of $6 million having interns and attorneys aggressively helping all levels of the org identify documents that are potentially libelous, which are usually a sign of unethical action, coach them on how to rectify those situations ASAP as a company with help from all levels of the company).&lt;br /&gt;
* Replace a document with a conversation. Instead of writing a specification document, have a white boarding conversation in a room where as many other team members as possible can over-hear. Take pictures of the white board when you are done and email the team. Documents have a maintenance cost.&lt;br /&gt;
* Produce self-documenting work- a car with a navigation that teaches you how to use it instead of a manual. Can you imagine if Internet Explorer still shipped with a manual? We expect it to be self explanatory. Documents are a hidden expense, requiring editing and re-write to match the current version. &lt;br /&gt;
* Try not to do something alone, pair with another team member whenever responsible. This aids in knowledge transfer and avoids requirements for documentation.&lt;br /&gt;
&lt;br /&gt;
=Wikispeed CAD Files=&lt;br /&gt;
Here is a link to a folder created to collect Wikispeed CAD drawings (pdf) and CAD files generated in FreeCAD from the original LibreCAD designs (October, 2021):&lt;br /&gt;
*[https://drive.google.com/drive/folders/1GAIUHd30GpRXTiXqMG_EyQLQiRxQycsL?usp=sharing Wikispeed CAD Files]&lt;br /&gt;
&lt;br /&gt;
=References=&lt;br /&gt;
&lt;br /&gt;
*CNN on Management a la Wikispeed - [http://management.fortune.cnn.com/2012/06/18/how-companies-ought-to-train-their-staffers/]&lt;br /&gt;
*[http://agileinc.wordpress.com/on-the-road-3/sglon/]&lt;br /&gt;
*[http://futureofprojectmanagement.com/2011/12/02/joe-justice-built-a-100mpg-car-using-principles-of-agile-lean-and-scrum-how-did-he-do-it/]&lt;br /&gt;
{{Reflist}}&lt;br /&gt;
[[Category:Wikispeed]]&lt;br /&gt;
[[Category:Open Source Automobile]]&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=Team_Wikispeed&amp;diff=261407</id>
		<title>Team Wikispeed</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=Team_Wikispeed&amp;diff=261407"/>
		<updated>2021-10-17T01:48:25Z</updated>

		<summary type="html">&lt;p&gt;Wneal: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
==TED talk:==&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;560&amp;quot; height=&amp;quot;315&amp;quot; src=&amp;quot;https://www.youtube.com/embed//x8jdx-lf2Dw&amp;quot; frameborder=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Team Wikispeed=&lt;br /&gt;
[http://www.wikispeed.com/ Wikispeed] is a team of volunteers that formed around the work of [http://www.linkedin.com/profile/view?id=4583874&amp;amp;authType=NAME_SEARCH&amp;amp;authToken=y3gN&amp;amp;locale=en_US&amp;amp;srchid=f5fc9cc6-0258-4503-b0b3-92382aac28b1-0&amp;amp;srchindex=1&amp;amp;srchtotal=1&amp;amp;goback=%2Efps_PBCK_joe+justice+wikispeed_*1_*1_*1_*1_*1_*1_*2_*1_Y_*1_*1_*1_false_1_R_*1_*51_*1_*51_true_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2&amp;amp;pvs=ps&amp;amp;trk=pp_profile_name_link Joe Justice] as he competed in the [http://www.progressiveautoxprize.org/teams/wikispeed Progressive Insurance Automotive X-Prize]. His greatest innovation was applying [http://en.wikipedia.org/wiki/Scrum_(development) lean/agile/SCRUM] software program management to hardware, specifically the iterative design of a 100+ mpg passenger vehicle.&lt;br /&gt;
&lt;br /&gt;
The dramatic success of Team Wikispeed&#039;s activities pretty much demands listening to what Joe has to say.&lt;br /&gt;
&lt;br /&gt;
For clarity, and because I wasn&#039;t clear on this point until I researched it, it is important to point out that Team Wikispeed was eliminated in the first round of on-location testing at the X-Prize competition. &amp;quot;Without even bothering to look at the finite element analysis and computational fluid dynamics Justice had brought as proof of his design’s validity, the inspector rejected the car outright. Justice felt like he’d been slapped in the face. “It was like fireworks going off in my cheeks,” he says. “This is something I’ve had a whole lot of design input into, and this one person is saying, ‘This isn’t good enough.’...Rather than spending hours pulling apart the SGT01 to get to the suspension, the team simply unbolted the body, removed the suspension module, and began fabricating a new one. They got it done, too, just in time. The only problem was that as they finished, minutes before the deadline, Justice and another team member cut a wire in the electrical system. The car wouldn’t start, and Wikispeed’s run for the X Prize was done. They finished in a tie for 10th in their division.&amp;quot; [http://www.seattlemet.com/issues/archives/articles/wikispeeds-100-mpg-car-january-2011/3/ article]&lt;br /&gt;
&lt;br /&gt;
===General===&lt;br /&gt;
* First functional prototype built in 3 months.&lt;br /&gt;
* Existing manufacturing processes are slow to change because they&#039;re exceptionally expensive to change.&lt;br /&gt;
** Major manufacturers typically operate on 10-25 year design cycles.&lt;br /&gt;
* Wikispeed uses 7-day design cycles.&lt;br /&gt;
* Iterated a process that brought the cost/time of a full structural carbon fiber car body down from $36,000/3 months to $800/3 days.&lt;br /&gt;
* Went from 1 guy in his garage to 100+ volunteers, in 8 countries, and a production-ready car in 6 months.&lt;br /&gt;
&lt;br /&gt;
===Specific===&lt;br /&gt;
* Modularity.&lt;br /&gt;
** Every system in the car can be separated from every other system as quickly and easily as changing a tire.&lt;br /&gt;
* Test-based.&lt;br /&gt;
** The customer-value standard, and the test for it, is designed BEFORE the solution is designed.&lt;br /&gt;
* Use less stuff.&lt;br /&gt;
** The parts for the frame of the car can be built with stock 4&amp;quot; aluminum tube, an $80 band saw, and a used-kit-built CNC milling machine.&lt;br /&gt;
** Reduce costs in tooling, machinery and complexity wherever possible. This allows for improvements to be incorporated into the design immediately because there are so few sunk costs.&lt;br /&gt;
* Distributed, collaborative teams.&lt;br /&gt;
** Use free online tools.&lt;br /&gt;
* Morale for velocity.&lt;br /&gt;
** It&#039;s not additive or subtractive, it&#039;s a multiplier. &lt;br /&gt;
* Work in pairs.&lt;br /&gt;
** Put a newbie with a pro and the newbie learns AS the job gets done. This eliminates time devoted to training. The pro gets help, the newbie gets hands-on experience.&lt;br /&gt;
** Also eliminates the need for most types of documentation.&lt;br /&gt;
* Visualize workflow to eliminate any time spent not creatively solving problems.&lt;br /&gt;
&lt;br /&gt;
==Keynote American Council of Engineering Companies==&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;560&amp;quot; height=&amp;quot;315&amp;quot; src=&amp;quot;https://www.youtube.com/embed//I3HXw0Ruz9M&amp;quot; frameborder=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Summary: Scrum Gathering in Seattle==&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;560&amp;quot; height=&amp;quot;315&amp;quot; src=&amp;quot;https://www.youtube.com/embed//pjempylJy1w&amp;quot; frameborder=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is a summary of the talk:&lt;br /&gt;
===History===&lt;br /&gt;
* Initial Goal: build the lightest chassis.&lt;br /&gt;
* Share on the blog&lt;br /&gt;
** asked silly and nerdy questions&lt;br /&gt;
* passes technical deliverables for the [http://www.xprize.org/ X prize].&lt;br /&gt;
** became finalist to compete with 136 cars, most of them funded by millions of dollars&lt;br /&gt;
** iterating the car at the race track, inspired a higher driver of a team competing against WikiSpeed to spend a lot of time hanging out with the Team.&lt;br /&gt;
** got 10th place.&lt;br /&gt;
** Received several tens of thousands of dollars in road legal certification and testing.&lt;br /&gt;
** Press&lt;br /&gt;
* Team grew: 56 members in 6 countries.&lt;br /&gt;
&lt;br /&gt;
===Learned===&lt;br /&gt;
&lt;br /&gt;
* Contract-first Design: by Modules.&lt;br /&gt;
** Suspension - changed for 10 minutes - adjustable in caster, tow?, camber, wheel-base and track, individually per wheel.&lt;br /&gt;
** Interior in the race car version - aluminum bathtub that lifts out. The 4-seat interior for the contest can be easily exchanged with the 2-seat interior for testing.&lt;br /&gt;
** Engine - at the back of the car. The entire Power Train, with its transmission, fuel tank and cooling system can be rolled out in the time it takes to change a tire while it is running. This let us have one engine on the test bench being evaluated and another engine in the car doing testing, bring the car, switch the engines, test the other one - able to develop and test engines independently of each other.&lt;br /&gt;
** Chassis - all other modules connect to. Side, front, front impact. Peak stress. Our entire car absorbs the weight. 5 star crash rating equivalence.&lt;br /&gt;
** Car Body - cut foam with CNC machine from a CAD design, sand it, (70 volunteers in 6 countries in multiple locations)&lt;br /&gt;
*** from Structural Carbon Fiber (normally used in airspace and exotic automobiles) was really expensive, but the material itself wasn&#039;t expensive, but the knowledge how to use it was. So Joe Justice went to composite school for few weeks and then they built the carbon fiber body for $800 in 3 days (body would cost $36,000 in 3 months time with traditional manufacturing techniques).&lt;br /&gt;
* Went to [http://www.naias.com/ North American International Auto Show] - put WikiSpeed on the main floor between Ford and Chevrolet. Met the creator of the car body, Rob Mohrbacher of http://mohrcomposites.com from [http://en.wikipedia.org/wiki/Germantown,_Montgomery_County,_Maryland Germantown, Maryland].&lt;br /&gt;
&lt;br /&gt;
===How - Agile and Scrum===&lt;br /&gt;
&lt;br /&gt;
* Weekly stand-up meetings&lt;br /&gt;
* prioritized backlogs&lt;br /&gt;
* and demos&lt;br /&gt;
&lt;br /&gt;
====Tools====&lt;br /&gt;
* FreeConferenceCall - for stand-up meeting&lt;br /&gt;
** What I did, what I will do, what is blocking me&lt;br /&gt;
* Skype free&lt;br /&gt;
* Google Groups - up-to-date daily, pictures, updates, backlog from a Google Doc&lt;br /&gt;
* Google Docs - documents collaboration&lt;br /&gt;
** Trust the Team. It is versioned - who changed, what when. Can be reverted.&lt;br /&gt;
* Avoid planning more than 2 weeks out - we learn so fast that things change what we will do next&lt;br /&gt;
* Facebook and LinkedIn for team and public status updates.&lt;br /&gt;
** don&#039;t repeat information sharing. &lt;br /&gt;
* DropBox and SkyDrive for sharing large files&lt;br /&gt;
* Youtube to share videos&lt;br /&gt;
* Scrumy - online project management tool loosely based on Scrum.&lt;br /&gt;
* Linoit.com - for backlog http://linoit.com&lt;br /&gt;
* LibreCAD - open source CAD for Windows, Apple, Linux&lt;br /&gt;
* Email Lists&lt;br /&gt;
** Always Reply All to approximate being in a Scrum room. Allows distributed team to skim emails and be appraised of the current state of the project.&amp;lt;ref&amp;gt;http://futureofprojectmanagement.com/2011/12/02/joe-justice-built-a-100mpg-car-using-principles-of-agile-lean-and-scrum-how-did-he-do-it/&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Principles - What worked well====&lt;br /&gt;
* By minimizing cost of making change we innovate quickly. Changes in team members, changes in goals, changes in machinery, changes materials.&lt;br /&gt;
* By loosely coupling modules, we make changes in parallel.&lt;br /&gt;
** E.g. split the car into its component modules. Have people working on the suspension system, drive train, emission system, headlights, electronic control mechanism, all in parallel.&lt;br /&gt;
** Modularity: Interior module, Chassis, Pedal Plate, Front Crush Structure, Suspension Module, Engine, Transmission, Fuel System, Emission System, Fuel Injection System, Breaking system.&lt;br /&gt;
** When we started designing the car, we didn&#039;t know how the chassis would end up being like, we didn&#039;t know what type of drive train, type of suspension, we will be using. So what we wanted to do is to reduce the cost to make change between those parts. So we architect a contract - the way these modules will talk to each other and hold together in a structural way and the way they communicate.&lt;br /&gt;
* By working collaboratively and in shared space we unblock quickly.&lt;br /&gt;
** E.g. every time we had a blocking issues the team was able to bulldoze it that same day. Pairing and Swarming worked very well.&lt;br /&gt;
* By first automating test we quickly know if we improved. (Test-driven manufacturing)&lt;br /&gt;
** Example&lt;br /&gt;
*** 100mpg on a highway cycle&lt;br /&gt;
*** etc.&lt;br /&gt;
** When changes came we quickly knew whether we moved entirely forward, or moved forward on a few fronts, but actually backed on to other fronts. So we had to quickly kill work that would have been actually damaging and thus we were moving forward very fast.&lt;br /&gt;
* Test our success criteria - everyone cared about the metrics!&lt;br /&gt;
* Team morale (motivation) is a multiplier for velocity.&lt;br /&gt;
** Make sure people are never or rarely frustrated and that they get to share successes. Celebrating every iteration.&lt;br /&gt;
* Team trust is empowering&lt;br /&gt;
** Question access restrictions on documents, avoid group subjugation. Empowerment keeps velocity high.&lt;br /&gt;
* Single Backlog - all prioritized tasks are visible and in one place&lt;br /&gt;
&lt;br /&gt;
====Modular Inventory====&lt;br /&gt;
* Whenever possible tools are visually next to their consumables.&lt;br /&gt;
* Fewest possible categories always inside of each other (See everything from where you stand)&lt;br /&gt;
* Minimize time spent doing anything but creative problem solving.&lt;br /&gt;
** E.g. - So it’s not just less meetings, less paperwork, but in our case it is that we have a transparent bin that has screw drivers. And every screw driver is in there. There is not a screw driver anywhere else. If someone needs a screwdriver, it’s at a central location not more than twenty steps away. And it’s a clear bin so that they can see if what they need is inside before they even get there. In fact they can see what’s in there across the room and it is labeled. In software teams we would do the same thing with templates, we would do the same thing with test driven development, we would do the same thing with class naming and interface design, so people understand what goes with what. (See references)&lt;br /&gt;
&lt;br /&gt;
====From Software====&lt;br /&gt;
* Agile - reduse cost to make change and iterative development&lt;br /&gt;
* Test-Driven Design - tester and manufacturing&lt;br /&gt;
* XP - pairing and swarming&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Scrum_(development) Scrum] - almost everything. Clearly defined roles and responsibilities.&lt;br /&gt;
* OOP - clearly defined modules, classes and interfaces&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Kanban_(development) Kanban] - work in progress limits, not to overload people.&lt;br /&gt;
* Contract First Development - Define precise and verifiable component interface specifications.&lt;br /&gt;
&lt;br /&gt;
====Wikispeed Future Developments====&lt;br /&gt;
* Making a family car&lt;br /&gt;
* Developing a truck&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Wikispeed Tenets=&lt;br /&gt;
&lt;br /&gt;
* If I give money, time, cookies or supplies to WIKISPEED, and WIKISPEED is profitable, WIKISPEED will pay me back the value of what I put in plus interest commensurable with their level of success. I can choose not to accept repayment, but WIKISPEED will make reasonable attempts. This is based on value, not quantity (in hours, pounds, dollars, or word count).&lt;br /&gt;
* If I give money, time, cookies or supplies to WIKISPEED, I have no claim on WIKISPEED or its decisions or what it does with my resources after I give them. Other than tenant 1 above.&lt;br /&gt;
* If I share my best thoughts and work with WIKISPEED, WIKISPEED can use them at no cost, and I retain rights to re-use or protect my ideas unless I opt to bequeath them to WIKISPEED or the Public Domain.&lt;br /&gt;
&lt;br /&gt;
=Wikispeed Principles=&lt;br /&gt;
&lt;br /&gt;
* Equitable Distribution of Wealth.&lt;br /&gt;
* Avoid profit from waste (e.g. buying a competitor to shut them down). Grow profit based on visible value.&lt;br /&gt;
* If we focus on profit over value to customers, we will obtain neither. If we focus on visible customer value over profit, we will profit.&lt;br /&gt;
* Use less stuff (Lean) wherever responsible.&lt;br /&gt;
* Make decisions at the last responsible moment, this is when we know the most. but be careful not to wait until it is no-longer responsible. We never make a decision before we have to just to &amp;quot;get it out of the way.&amp;quot;&lt;br /&gt;
* Start with the minimum useful solution (porters on roller-skates over a mail-chute), then iterate aggressively to improve visible value and efficient sustainability of the solution.&lt;br /&gt;
* Morale is a multiplier for velocity.&lt;br /&gt;
* We trade estimated future states for knowing the most about our current situation and make changes quickly (Agility).&lt;br /&gt;
* Trust our team. this avoids a culture of CYA, which slows down innovation and kills morale. e.g. a company which spends $6 million on intranet security allowing employees to not see documents above their salary level to avoid leaking potentially libelous documents, instead of $6 million having interns and attorneys aggressively helping all levels of the org identify documents that are potentially libelous, which are usually a sign of unethical action, coach them on how to rectify those situations ASAP as a company with help from all levels of the company).&lt;br /&gt;
* Replace a document with a conversation. Instead of writing a specification document, have a white boarding conversation in a room where as many other team members as possible can over-hear. Take pictures of the white board when you are done and email the team. Documents have a maintenance cost.&lt;br /&gt;
* Produce self-documenting work- a car with a navigation that teaches you how to use it instead of a manual. Can you imagine if Internet Explorer still shipped with a manual? We expect it to be self explanatory. Documents are a hidden expense, requiring editing and re-write to match the current version. &lt;br /&gt;
* Try not to do something alone, pair with another team member whenever responsible. This aids in knowledge transfer and avoids requirements for documentation.&lt;br /&gt;
&lt;br /&gt;
=Wikispeed CAD Files=&lt;br /&gt;
Here is a link to a folder created to collect Wikispeed CAD files generated in FreeCAD from the original LibreCAD designs (October, 2021):&lt;br /&gt;
*[https://drive.google.com/drive/folders/1GAIUHd30GpRXTiXqMG_EyQLQiRxQycsL?usp=sharing Wikispeed CAD Files]&lt;br /&gt;
&lt;br /&gt;
=References=&lt;br /&gt;
&lt;br /&gt;
*CNN on Management a la Wikispeed - [http://management.fortune.cnn.com/2012/06/18/how-companies-ought-to-train-their-staffers/]&lt;br /&gt;
*[http://agileinc.wordpress.com/on-the-road-3/sglon/]&lt;br /&gt;
*[http://futureofprojectmanagement.com/2011/12/02/joe-justice-built-a-100mpg-car-using-principles-of-agile-lean-and-scrum-how-did-he-do-it/]&lt;br /&gt;
{{Reflist}}&lt;br /&gt;
[[Category:Wikispeed]]&lt;br /&gt;
[[Category:Open Source Automobile]]&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=Team_Wikispeed&amp;diff=261406</id>
		<title>Team Wikispeed</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=Team_Wikispeed&amp;diff=261406"/>
		<updated>2021-10-17T01:47:22Z</updated>

		<summary type="html">&lt;p&gt;Wneal: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
==TED talk:==&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;560&amp;quot; height=&amp;quot;315&amp;quot; src=&amp;quot;https://www.youtube.com/embed//x8jdx-lf2Dw&amp;quot; frameborder=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Team Wikispeed=&lt;br /&gt;
[http://www.wikispeed.com/ Wikispeed] is a team of volunteers that formed around the work of [http://www.linkedin.com/profile/view?id=4583874&amp;amp;authType=NAME_SEARCH&amp;amp;authToken=y3gN&amp;amp;locale=en_US&amp;amp;srchid=f5fc9cc6-0258-4503-b0b3-92382aac28b1-0&amp;amp;srchindex=1&amp;amp;srchtotal=1&amp;amp;goback=%2Efps_PBCK_joe+justice+wikispeed_*1_*1_*1_*1_*1_*1_*2_*1_Y_*1_*1_*1_false_1_R_*1_*51_*1_*51_true_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2_*2&amp;amp;pvs=ps&amp;amp;trk=pp_profile_name_link Joe Justice] as he competed in the [http://www.progressiveautoxprize.org/teams/wikispeed Progressive Insurance Automotive X-Prize]. His greatest innovation was applying [http://en.wikipedia.org/wiki/Scrum_(development) lean/agile/SCRUM] software program management to hardware, specifically the iterative design of a 100+ mpg passenger vehicle.&lt;br /&gt;
&lt;br /&gt;
The dramatic success of Team Wikispeed&#039;s activities pretty much demands listening to what Joe has to say.&lt;br /&gt;
&lt;br /&gt;
For clarity, and because I wasn&#039;t clear on this point until I researched it, it is important to point out that Team Wikispeed was eliminated in the first round of on-location testing at the X-Prize competition. &amp;quot;Without even bothering to look at the finite element analysis and computational fluid dynamics Justice had brought as proof of his design’s validity, the inspector rejected the car outright. Justice felt like he’d been slapped in the face. “It was like fireworks going off in my cheeks,” he says. “This is something I’ve had a whole lot of design input into, and this one person is saying, ‘This isn’t good enough.’...Rather than spending hours pulling apart the SGT01 to get to the suspension, the team simply unbolted the body, removed the suspension module, and began fabricating a new one. They got it done, too, just in time. The only problem was that as they finished, minutes before the deadline, Justice and another team member cut a wire in the electrical system. The car wouldn’t start, and Wikispeed’s run for the X Prize was done. They finished in a tie for 10th in their division.&amp;quot; [http://www.seattlemet.com/issues/archives/articles/wikispeeds-100-mpg-car-january-2011/3/ article]&lt;br /&gt;
&lt;br /&gt;
===General===&lt;br /&gt;
* First functional prototype built in 3 months.&lt;br /&gt;
* Existing manufacturing processes are slow to change because they&#039;re exceptionally expensive to change.&lt;br /&gt;
** Major manufacturers typically operate on 10-25 year design cycles.&lt;br /&gt;
* Wikispeed uses 7-day design cycles.&lt;br /&gt;
* Iterated a process that brought the cost/time of a full structural carbon fiber car body down from $36,000/3 months to $800/3 days.&lt;br /&gt;
* Went from 1 guy in his garage to 100+ volunteers, in 8 countries, and a production-ready car in 6 months.&lt;br /&gt;
&lt;br /&gt;
===Specific===&lt;br /&gt;
* Modularity.&lt;br /&gt;
** Every system in the car can be separated from every other system as quickly and easily as changing a tire.&lt;br /&gt;
* Test-based.&lt;br /&gt;
** The customer-value standard, and the test for it, is designed BEFORE the solution is designed.&lt;br /&gt;
* Use less stuff.&lt;br /&gt;
** The parts for the frame of the car can be built with stock 4&amp;quot; aluminum tube, an $80 band saw, and a used-kit-built CNC milling machine.&lt;br /&gt;
** Reduce costs in tooling, machinery and complexity wherever possible. This allows for improvements to be incorporated into the design immediately because there are so few sunk costs.&lt;br /&gt;
* Distributed, collaborative teams.&lt;br /&gt;
** Use free online tools.&lt;br /&gt;
* Morale for velocity.&lt;br /&gt;
** It&#039;s not additive or subtractive, it&#039;s a multiplier. &lt;br /&gt;
* Work in pairs.&lt;br /&gt;
** Put a newbie with a pro and the newbie learns AS the job gets done. This eliminates time devoted to training. The pro gets help, the newbie gets hands-on experience.&lt;br /&gt;
** Also eliminates the need for most types of documentation.&lt;br /&gt;
* Visualize workflow to eliminate any time spent not creatively solving problems.&lt;br /&gt;
&lt;br /&gt;
==Keynote American Council of Engineering Companies==&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;560&amp;quot; height=&amp;quot;315&amp;quot; src=&amp;quot;https://www.youtube.com/embed//I3HXw0Ruz9M&amp;quot; frameborder=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Summary: Scrum Gathering in Seattle==&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;560&amp;quot; height=&amp;quot;315&amp;quot; src=&amp;quot;https://www.youtube.com/embed//pjempylJy1w&amp;quot; frameborder=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is a summary of the talk:&lt;br /&gt;
===History===&lt;br /&gt;
* Initial Goal: build the lightest chassis.&lt;br /&gt;
* Share on the blog&lt;br /&gt;
** asked silly and nerdy questions&lt;br /&gt;
* passes technical deliverables for the [http://www.xprize.org/ X prize].&lt;br /&gt;
** became finalist to compete with 136 cars, most of them funded by millions of dollars&lt;br /&gt;
** iterating the car at the race track, inspired a higher driver of a team competing against WikiSpeed to spend a lot of time hanging out with the Team.&lt;br /&gt;
** got 10th place.&lt;br /&gt;
** Received several tens of thousands of dollars in road legal certification and testing.&lt;br /&gt;
** Press&lt;br /&gt;
* Team grew: 56 members in 6 countries.&lt;br /&gt;
&lt;br /&gt;
===Learned===&lt;br /&gt;
&lt;br /&gt;
* Contract-first Design: by Modules.&lt;br /&gt;
** Suspension - changed for 10 minutes - adjustable in caster, tow?, camber, wheel-base and track, individually per wheel.&lt;br /&gt;
** Interior in the race car version - aluminum bathtub that lifts out. The 4-seat interior for the contest can be easily exchanged with the 2-seat interior for testing.&lt;br /&gt;
** Engine - at the back of the car. The entire Power Train, with its transmission, fuel tank and cooling system can be rolled out in the time it takes to change a tire while it is running. This let us have one engine on the test bench being evaluated and another engine in the car doing testing, bring the car, switch the engines, test the other one - able to develop and test engines independently of each other.&lt;br /&gt;
** Chassis - all other modules connect to. Side, front, front impact. Peak stress. Our entire car absorbs the weight. 5 star crash rating equivalence.&lt;br /&gt;
** Car Body - cut foam with CNC machine from a CAD design, sand it, (70 volunteers in 6 countries in multiple locations)&lt;br /&gt;
*** from Structural Carbon Fiber (normally used in airspace and exotic automobiles) was really expensive, but the material itself wasn&#039;t expensive, but the knowledge how to use it was. So Joe Justice went to composite school for few weeks and then they built the carbon fiber body for $800 in 3 days (body would cost $36,000 in 3 months time with traditional manufacturing techniques).&lt;br /&gt;
* Went to [http://www.naias.com/ North American International Auto Show] - put WikiSpeed on the main floor between Ford and Chevrolet. Met the creator of the car body, Rob Mohrbacher of http://mohrcomposites.com from [http://en.wikipedia.org/wiki/Germantown,_Montgomery_County,_Maryland Germantown, Maryland].&lt;br /&gt;
&lt;br /&gt;
===How - Agile and Scrum===&lt;br /&gt;
&lt;br /&gt;
* Weekly stand-up meetings&lt;br /&gt;
* prioritized backlogs&lt;br /&gt;
* and demos&lt;br /&gt;
&lt;br /&gt;
====Tools====&lt;br /&gt;
* FreeConferenceCall - for stand-up meeting&lt;br /&gt;
** What I did, what I will do, what is blocking me&lt;br /&gt;
* Skype free&lt;br /&gt;
* Google Groups - up-to-date daily, pictures, updates, backlog from a Google Doc&lt;br /&gt;
* Google Docs - documents collaboration&lt;br /&gt;
** Trust the Team. It is versioned - who changed, what when. Can be reverted.&lt;br /&gt;
* Avoid planning more than 2 weeks out - we learn so fast that things change what we will do next&lt;br /&gt;
* Facebook and LinkedIn for team and public status updates.&lt;br /&gt;
** don&#039;t repeat information sharing. &lt;br /&gt;
* DropBox and SkyDrive for sharing large files&lt;br /&gt;
* Youtube to share videos&lt;br /&gt;
* Scrumy - online project management tool loosely based on Scrum.&lt;br /&gt;
* Linoit.com - for backlog http://linoit.com&lt;br /&gt;
* LibreCAD - open source CAD for Windows, Apple, Linux&lt;br /&gt;
* Email Lists&lt;br /&gt;
** Always Reply All to approximate being in a Scrum room. Allows distributed team to skim emails and be appraised of the current state of the project.&amp;lt;ref&amp;gt;http://futureofprojectmanagement.com/2011/12/02/joe-justice-built-a-100mpg-car-using-principles-of-agile-lean-and-scrum-how-did-he-do-it/&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Principles - What worked well====&lt;br /&gt;
* By minimizing cost of making change we innovate quickly. Changes in team members, changes in goals, changes in machinery, changes materials.&lt;br /&gt;
* By loosely coupling modules, we make changes in parallel.&lt;br /&gt;
** E.g. split the car into its component modules. Have people working on the suspension system, drive train, emission system, headlights, electronic control mechanism, all in parallel.&lt;br /&gt;
** Modularity: Interior module, Chassis, Pedal Plate, Front Crush Structure, Suspension Module, Engine, Transmission, Fuel System, Emission System, Fuel Injection System, Breaking system.&lt;br /&gt;
** When we started designing the car, we didn&#039;t know how the chassis would end up being like, we didn&#039;t know what type of drive train, type of suspension, we will be using. So what we wanted to do is to reduce the cost to make change between those parts. So we architect a contract - the way these modules will talk to each other and hold together in a structural way and the way they communicate.&lt;br /&gt;
* By working collaboratively and in shared space we unblock quickly.&lt;br /&gt;
** E.g. every time we had a blocking issues the team was able to bulldoze it that same day. Pairing and Swarming worked very well.&lt;br /&gt;
* By first automating test we quickly know if we improved. (Test-driven manufacturing)&lt;br /&gt;
** Example&lt;br /&gt;
*** 100mpg on a highway cycle&lt;br /&gt;
*** etc.&lt;br /&gt;
** When changes came we quickly knew whether we moved entirely forward, or moved forward on a few fronts, but actually backed on to other fronts. So we had to quickly kill work that would have been actually damaging and thus we were moving forward very fast.&lt;br /&gt;
* Test our success criteria - everyone cared about the metrics!&lt;br /&gt;
* Team morale (motivation) is a multiplier for velocity.&lt;br /&gt;
** Make sure people are never or rarely frustrated and that they get to share successes. Celebrating every iteration.&lt;br /&gt;
* Team trust is empowering&lt;br /&gt;
** Question access restrictions on documents, avoid group subjugation. Empowerment keeps velocity high.&lt;br /&gt;
* Single Backlog - all prioritized tasks are visible and in one place&lt;br /&gt;
&lt;br /&gt;
====Modular Inventory====&lt;br /&gt;
* Whenever possible tools are visually next to their consumables.&lt;br /&gt;
* Fewest possible categories always inside of each other (See everything from where you stand)&lt;br /&gt;
* Minimize time spent doing anything but creative problem solving.&lt;br /&gt;
** E.g. - So it’s not just less meetings, less paperwork, but in our case it is that we have a transparent bin that has screw drivers. And every screw driver is in there. There is not a screw driver anywhere else. If someone needs a screwdriver, it’s at a central location not more than twenty steps away. And it’s a clear bin so that they can see if what they need is inside before they even get there. In fact they can see what’s in there across the room and it is labeled. In software teams we would do the same thing with templates, we would do the same thing with test driven development, we would do the same thing with class naming and interface design, so people understand what goes with what. (See references)&lt;br /&gt;
&lt;br /&gt;
====From Software====&lt;br /&gt;
* Agile - reduse cost to make change and iterative development&lt;br /&gt;
* Test-Driven Design - tester and manufacturing&lt;br /&gt;
* XP - pairing and swarming&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Scrum_(development) Scrum] - almost everything. Clearly defined roles and responsibilities.&lt;br /&gt;
* OOP - clearly defined modules, classes and interfaces&lt;br /&gt;
* [http://en.wikipedia.org/wiki/Kanban_(development) Kanban] - work in progress limits, not to overload people.&lt;br /&gt;
* Contract First Development - Define precise and verifiable component interface specifications.&lt;br /&gt;
&lt;br /&gt;
====Wikispeed Future Developments====&lt;br /&gt;
* Making a family car&lt;br /&gt;
* Developing a truck&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Wikispeed Tenets=&lt;br /&gt;
&lt;br /&gt;
* If I give money, time, cookies or supplies to WIKISPEED, and WIKISPEED is profitable, WIKISPEED will pay me back the value of what I put in plus interest commensurable with their level of success. I can choose not to accept repayment, but WIKISPEED will make reasonable attempts. This is based on value, not quantity (in hours, pounds, dollars, or word count).&lt;br /&gt;
* If I give money, time, cookies or supplies to WIKISPEED, I have no claim on WIKISPEED or its decisions or what it does with my resources after I give them. Other than tenant 1 above.&lt;br /&gt;
* If I share my best thoughts and work with WIKISPEED, WIKISPEED can use them at no cost, and I retain rights to re-use or protect my ideas unless I opt to bequeath them to WIKISPEED or the Public Domain.&lt;br /&gt;
&lt;br /&gt;
=Wikispeed Principles=&lt;br /&gt;
&lt;br /&gt;
* Equitable Distribution of Wealth.&lt;br /&gt;
* Avoid profit from waste (e.g. buying a competitor to shut them down). Grow profit based on visible value.&lt;br /&gt;
* If we focus on profit over value to customers, we will obtain neither. If we focus on visible customer value over profit, we will profit.&lt;br /&gt;
* Use less stuff (Lean) wherever responsible.&lt;br /&gt;
* Make decisions at the last responsible moment, this is when we know the most. but be careful not to wait until it is no-longer responsible. We never make a decision before we have to just to &amp;quot;get it out of the way.&amp;quot;&lt;br /&gt;
* Start with the minimum useful solution (porters on roller-skates over a mail-chute), then iterate aggressively to improve visible value and efficient sustainability of the solution.&lt;br /&gt;
* Morale is a multiplier for velocity.&lt;br /&gt;
* We trade estimated future states for knowing the most about our current situation and make changes quickly (Agility).&lt;br /&gt;
* Trust our team. this avoids a culture of CYA, which slows down innovation and kills morale. e.g. a company which spends $6 million on intranet security allowing employees to not see documents above their salary level to avoid leaking potentially libelous documents, instead of $6 million having interns and attorneys aggressively helping all levels of the org identify documents that are potentially libelous, which are usually a sign of unethical action, coach them on how to rectify those situations ASAP as a company with help from all levels of the company).&lt;br /&gt;
* Replace a document with a conversation. Instead of writing a specification document, have a white boarding conversation in a room where as many other team members as possible can over-hear. Take pictures of the white board when you are done and email the team. Documents have a maintenance cost.&lt;br /&gt;
* Produce self-documenting work- a car with a navigation that teaches you how to use it instead of a manual. Can you imagine if Internet Explorer still shipped with a manual? We expect it to be self explanatory. Documents are a hidden expense, requiring editing and re-write to match the current version. &lt;br /&gt;
* Try not to do something alone, pair with another team member whenever responsible. This aids in knowledge transfer and avoids requirements for documentation.&lt;br /&gt;
&lt;br /&gt;
=Wikispeed Designs=&lt;br /&gt;
Here is a link to a folder created to collect Wikispeed CAD files generated in FreeCAD from the original LibreCAD designs (October, 2021):&lt;br /&gt;
*[https://drive.google.com/drive/folders/1GAIUHd30GpRXTiXqMG_EyQLQiRxQycsL?usp=sharing]&lt;br /&gt;
&lt;br /&gt;
=References=&lt;br /&gt;
&lt;br /&gt;
*CNN on Management a la Wikispeed - [http://management.fortune.cnn.com/2012/06/18/how-companies-ought-to-train-their-staffers/]&lt;br /&gt;
*[http://agileinc.wordpress.com/on-the-road-3/sglon/]&lt;br /&gt;
*[http://futureofprojectmanagement.com/2011/12/02/joe-justice-built-a-100mpg-car-using-principles-of-agile-lean-and-scrum-how-did-he-do-it/]&lt;br /&gt;
{{Reflist}}&lt;br /&gt;
[[Category:Wikispeed]]&lt;br /&gt;
[[Category:Open Source Automobile]]&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=254170</id>
		<title>William Neal Log</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=254170"/>
		<updated>2021-06-09T17:25:29Z</updated>

		<summary type="html">&lt;p&gt;Wneal: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{RightTOC}}&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;600&amp;quot; height=&amp;quot;600&amp;quot; src=&amp;quot;https://osedev.org/wiki/William?start=2/1/2017&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
=Thursday August 6, 2020 - Wednesday June 9, 2021=&lt;br /&gt;
*Slow pace of collaboration due to pandemic&lt;br /&gt;
*Developed numerous lesson plans and approaches using Python and Blender&lt;br /&gt;
=Monday June 22 - Wednesday August 5=&lt;br /&gt;
*Further development of ALT-L Course.&lt;br /&gt;
*Delivered D3D to collaborator Bill Phelan from local company, Die-X.&lt;br /&gt;
=Monday June 1 - Sunday June 21=&lt;br /&gt;
[https://www.youtube.com/watch?v=G72eEatmIX0&amp;amp;t=10s ALT-L Introduction Video] ALT-L is presented as a preliminary step in developing an entire school curriculum based on the idea of coherence and connection. There is a potential to link this project to a wider set of Open Source Ecology workshops that consider an entirely different approach to the education system.&lt;br /&gt;
=Saturday May 9 - Sunday May 31=&lt;br /&gt;
More work on [https://drive.google.com/drive/folders/14da63JcyEaM5CfdXjSi5G1Vll_hHTj9k?usp=sharing ALT-L] - &amp;quot;Alternative Learning&amp;quot; - Accelerated math and computer programming course for secondary school students.&lt;br /&gt;
[https://youtu.be/xjL4-1S7Was Youtube video on use of Spreadsheets in FreeCAD]&lt;br /&gt;
 &lt;br /&gt;
=&lt;br /&gt;
=Wednesday May 6-Friday May 8=&lt;br /&gt;
[[Open Source Collaboration Mini Course]]&lt;br /&gt;
Call with Marcin - August Remote Camp.&lt;br /&gt;
https://wiki.opensourceecology.org/wiki/Andreas_Log#Thur-Fri_Apr_23-4.2C_2020&lt;br /&gt;
https://wiki.opensourceecology.org/wiki/Test&lt;br /&gt;
https://wiki.opensourceecology.org/wiki/OSE_Collaboration_Protocol&lt;br /&gt;
=Friday March 27 - Tuesday May 5=&lt;br /&gt;
Worked on &amp;quot;[https://docs.google.com/document/d/1_5LJo8GXV5Ct1f57bD4fB8xC0wyT9iANtgPVj-Dev0M/edit?usp=sharing ALT-L],&amp;quot; an accelerated mathematics and computer programming curriculum for secondary school students. The course is under development [https://drive.google.com/drive/folders/14da63JcyEaM5CfdXjSi5G1Vll_hHTj9k?usp=sharing here] with two groups of students from eight countries meeting twice weekly over Zoom. Created a related [https://docs.google.com/document/d/1QXsDVR2iXecT_T-NM8DEwA4o-Yh6eCNfLf4ze8VFVyM/edit?usp=sharing training manual] for the Guyana Prison system using open source technologies such as Linux and Python.&lt;br /&gt;
&lt;br /&gt;
=Sunday February 16 - Thursday March 26=&lt;br /&gt;
Work on OSE Challenging due to work, community and global crisis. &lt;br /&gt;
=Friday February 14 - Saturday February 15=&lt;br /&gt;
Personal Build Wishlist - Continued&lt;br /&gt;
=Friday February 7 - Thursday February 13=&lt;br /&gt;
[https://docs.google.com/document/d/11DUqroMKjpKGh2WxIpkJfl5HaPJJzIl8uK6saErtpgs/edit?usp=sharing William Neal Personal Build Wishlist] - Still under development&lt;br /&gt;
&lt;br /&gt;
=Monday, December 2 - Thursday Feb. 6, 2020=&lt;br /&gt;
End of semester disruption; start of semester disruption - a huge amount of time and effort spent on paperwork instead of education. Start of FRC robotics season. Start of computer programming and computer engineering classes. &lt;br /&gt;
=Saturday November 30 - Sunday December 1=&lt;br /&gt;
Finished OSE Prusa Build in Guyana. Used [https://www.repetier.com/documentation/repetier-firmware/ Repetier Firmware] and [https://www.repetier.com/ Repetier Host] to control the printer.&lt;br /&gt;
=Thursday November 28 - Friday November 29=&lt;br /&gt;
Workshop with the Guyana Prison Service - 12 prison staff from five facilities in Guyana. Reactivated 6 discarded computers using Ubuntu and OSE Linux. [[Introduction to Python]]. [https://m.facebook.com/groups/398759490316633?view=permalink&amp;amp;id=1215623975296843 OSE Prusa Build]&lt;br /&gt;
&lt;br /&gt;
=Saturday November 23  Wednesday November 27=&lt;br /&gt;
Workshop in Guyana with the Guyana Prison Service: The CSSP Project.  This project aims to replace the current model of prison management with an approach based on human nobility, education and rehabilitation.&lt;br /&gt;
=Thursday November 28=&lt;br /&gt;
[[OSE Linux]] - we got six old computers working on Ubuntu using flash drives.  Tomorrow will have an Open Source software workshop using OSE Linux on USB drives. We will use Python, FreeCAD, LibreOffice, etc. Showed the TED talk to our group of 12 prison officers from five facilities in Guyana.&lt;br /&gt;
&lt;br /&gt;
=Saturday November 2 - Friday November 22=&lt;br /&gt;
Worked on the [[OSE Prusa]] in order to support the establishment of a STEM centre in Trinidad and Tobago and to prepare for a workshop with the Government of Guyana.&lt;br /&gt;
#Items in a numbered list&lt;br /&gt;
#More Items&lt;br /&gt;
##Yet More&lt;br /&gt;
*Items in a bullet list&lt;br /&gt;
*More Items&lt;br /&gt;
**Yet More&lt;br /&gt;
&lt;br /&gt;
=Thursday October 24 - Friday November 1=&lt;br /&gt;
*Tested printing on the London replication of the D3D printer for the first time.&lt;br /&gt;
*Team of 9 students from Western university preparing a project around OSE - D3D replication + filament extruder replication + Chinese Reprap Prusa i3 reverse engineering.&lt;br /&gt;
=Sunday October 12 - Wednesday October 23=&lt;br /&gt;
*Updated some files used in the simple extruder build [https://wiki.opensourceecology.org/wiki/Simple_3D_Printer_Extruder#CAD here.]&lt;br /&gt;
&lt;br /&gt;
=Friday October 4 - Saturday October 11=&lt;br /&gt;
*Successfully tested D3D simple extruder based on Chinese Prusa i3.&lt;br /&gt;
*D3D challenge - Y axis end stop stopped working...&lt;br /&gt;
*Almost finished replicating first of two D3D printers in London Ontario.&lt;br /&gt;
*Preparing a D3D / Brushless motor workshop for the Guyana Prison Service. &lt;br /&gt;
*FreeCAD activity completed at Western University - varied response of individuals in the groups - the allocated time was too short. &lt;br /&gt;
=Friday September 27 - Thursday October 3=&lt;br /&gt;
*Continued work on D3D build.&lt;br /&gt;
*Experimenting with highly differentiated instruction unconstrained by government curricular concerns - our STEM club&#039;s three sections - Robotics / Computers and CAD / STEM projects have each gradually evolved over the last several weeks such that small groups of 1-4 students specialize on special tasks.&lt;br /&gt;
*Introduced FreeCAD to a group of junior youth from a local neighborhood. After about 40 minutes each group of two participants completed a motor rotor design.&lt;br /&gt;
*Second FreeCAD session with a group of 40 teacher candidate students at Western University&#039;s Althouse. Also used highly differentiated / interdisciplinary instruction with this group. After one hour and a half, most groups were able to generate several parts of a brushless motor and begin the process of parameterizing with a spreadsheet and creating an assembly.  Some trained engineers in the crowd generated excellent &amp;quot;propellers&amp;quot; for the motor using advanced features.&lt;br /&gt;
&lt;br /&gt;
=Tuesday, September 1 - Thursday, September 26=&lt;br /&gt;
*New School Year - over 40 students participating in our special STEM/Business/Arts program.&lt;br /&gt;
*Two sections of our program, STEM Projects and Computer Programming/CAD,  include OSE-related topics:&lt;br /&gt;
**Building 3D printers&lt;br /&gt;
**3D-printing&lt;br /&gt;
**OSE Motor design and fabrication&lt;br /&gt;
**Filament extruder&lt;br /&gt;
**CAD&lt;br /&gt;
*Building a 3D printer in collaboration with Bill Phelan, Vice President of Die-X Ltd.&lt;br /&gt;
*Remote collaboration with Branko Misovic in Holland.&lt;br /&gt;
*Preparing for a two-week 3D-printer build / open source hardware workshop in Guyana in November.&lt;br /&gt;
*Working on simple extruder for the D3D printer.&lt;br /&gt;
*Some 3D-printed parts for the D3D printer are not precise enough as they were printed with 1.0mm and 0.8mm nozzles.  We are switching to a 0.4mm nozzle and re-printing.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 27 - Monday September 1=&lt;br /&gt;
*Preparation for STEM camps in China. &lt;br /&gt;
*Travel to China.  Caught behind firewall - Internet was actually a large Intranet - difficult to post, communicate or access any useful sites. &lt;br /&gt;
*STEM Camp at Fujing Foreign language school - 10 days - 60 students, 1.5 hours daily - worked on FreeCAD and the OSE motor. &lt;br /&gt;
*Built OSE D3D printer with eight 9-11 year-old students (10 days, 3 hours daily) at EIC Education in Shenzhen.  The students assembled the axes and helped design some custom 3D-printed brackets for the frame which had to be made out of linear rail. The students learned FreeCAD and were able to design useful parts. Ganesh Ramsahai provided support in completing the build and configuration process. Presented the OSE D3D Shenzhen to the EIC Education Group with a half-hour overview and offer to provide remote support.&lt;br /&gt;
*STEM Camp at Zhangjiagang Foreign Language School in Jiangsu province. 30 students, 3 days, 6 hours per day.  Introduced FreeCAD and had the students design rotors and stators for the OSE brushless motor.&lt;br /&gt;
*Showed the TED talk to four different groups.&lt;br /&gt;
*Uploaded raw FreeCAD and stl files from the camps at Fujing Foreign Language School and Zhangjiagang Foreign Language School to [https://drive.google.com/open?id=1K7U8lEGqRgxwQf-WNX1Llbf-WE7LJCqL Google Drive]&lt;br /&gt;
*Uploaded [https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH custom files] generated during the build of the D3D 19.08 Shenzhen.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 20 - Friday July 26=&lt;br /&gt;
LIA summer STEM camp continued with 38 different students from Shenzhen, China.  The students discussed, in the context of Marcin&#039;s TED Talk, the concept that the human mind, focused and in collaboration with others, has the power to make positive changes in society.  Design of covers and caps for the OSE radial motor. Photos from the STEM Camp activities are [https://photos.app.goo.gl/zcpKk8jaFcDon31K7 here].  Trying to find the USB where we collected all the FreeCAD files.  These will be posted ASAP.&lt;br /&gt;
&lt;br /&gt;
=Monday July 15 - Friday July 19=&lt;br /&gt;
LIA summer STEM camp with 23 students from Vietnam and China. OSE Motor project part II - designing, printing and testing a radial motor. The motor concept was based on the following video: [https://www.youtube.com/watch?v=JkwLpAAfBVI 3D-Printed Axial Brushless Motor for Drones] Students were presented with the concept and asked to design such a motor from scratch using two rotors with eight disc magnets each and two sets of six wire loops.&lt;br /&gt;
&lt;br /&gt;
=Wednesday July 10 - Sunday July 14=&lt;br /&gt;
Preparation for summer STEM Camps at LIA.  Prepared 3D printers.  Began replication of two D3D v19.06 units.&lt;br /&gt;
=Friday June 28 - Tuesday July 9= &lt;br /&gt;
Open Source Ecology Microfactory STEAM Camp&lt;br /&gt;
=Thursday June 27=&lt;br /&gt;
Titan Aero finally working better with 1.5 full turns + a little bit more for good measure - has not jammed all afternoon now - three parts printed.  Logistics for Microfatory STEAM Camp - rented a vehicle and contacted a few participants. A prototype of the OSE extruder has been nearly completed. The extruder gear is scheduled to arrive at Factor e Farm by tomorrow. Then it will be ready for testing.  [https://photos.app.goo.gl/fWUX8ynAdqcn6Fvs6 OSE D3D Extruder - Photo Album][https://drive.google.com/open?id=17BLyvyk1EbrMOhkCfeSwByAq86SemSLX Files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 25 - Wednesday June 26=&lt;br /&gt;
OSE D3D Extruder.  Worked on attaching extruder to X-axis. Ordered extruder motor gears to arrive at FeF on Friday. Printed out bracket 1 successfully. Working on large aluminium block and designing x-axis adapter.&lt;br /&gt;
=Monday June 24=&lt;br /&gt;
Discussion about design of OSE Power Electronics. Problem - transformers are expensive and inflexible. Solution - research the feasibility of creating a 120V buck converter.  Would it be sufficiently efficient and would it be feasible to build?  Here are some potential parts to use: [https://www.digikey.ca/product-detail/en/comchip-technology/GBPC5010W-G/641-1389-ND/2074854 1kV Recifier] [https://www.digikey.ca/product-detail/en/ixys/IXFX120N65X2/IXFX120N65X2-ND/5629498?utm_adgroup=&amp;amp;mkwid=sFMkJ49os&amp;amp;pcrid=311971049444&amp;amp;pkw=&amp;amp;pmt=&amp;amp;pdv=c&amp;amp;productid=5629498&amp;amp;slid=&amp;amp;gclid=EAIaIQobChMIgbDd1fSC4wIVwkOGCh1f8gijEAQYAyABEgJGffD_BwE 650V MOSFET].  One problem seems to be that there may be a high level of energy loss in the circuit....[https://www.digikey.com/product-detail/en/everlight-electronics-co-ltd/H11L1S-TA/1080-1201-1-ND/2675935 Optocoupler] (to isolate the Arduino)[http://fpec.ucf.edu/teaching/EEL%205245%20Lectures/Lecture13%20Chapter4_BoostandBuckBoost_CCM_Analysis.pdf Some background theory]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 19 - Sunday June 23=&lt;br /&gt;
DIY Buck Converter based on the following video (and others): https://www.youtube.com/watch?v=L5oeY53pE0E&amp;amp;t=162s. [https://photos.app.goo.gl/kkHUwBQtD7h48mhB6 Photos.] All four 3D printers are down.  A crucial piece of the extruder of the most reliable printer finally broke. CAD already done for the replacement part. Got the OSE D3D working again on Friday.  Ready for printing on Monday - will print replacement part for other printer.  Other 2 printers almost working...&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 18=&lt;br /&gt;
[https://www.pythonpowerelectronics.com/ Python Power Electronics]&lt;br /&gt;
=Thursday June 13 - Monday June 17=&lt;br /&gt;
Buck Converters. OSE [[Power Electronics]] research. Arduino as controller of Power electronics - frequency issues / limitations. Scalability of Power electronics - can we add modular components to increase voltage, current, etc.?  &lt;br /&gt;
=Tuesday June 11 - Wednesday June 12=&lt;br /&gt;
Completed and sent CAD Drawings for OSE 3D Printer. Spent most of Wednesday working through a jam on the Titan Aero - it has jammed more in a few days than our other extruder has jammed in over three years.&lt;br /&gt;
=Monday June 10=&lt;br /&gt;
[https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH FreeCAD Drawings] for OSE 3D Printer. Note the use of parametric design in the CAD files - Spreadsheet values become variables used in constraint dimensions.&lt;br /&gt;
The following is my most recent FreeCAD Parametric Part Design and Drawing Workflow:[[FreeCAD Workflow]]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 5 - Sunday June 9=&lt;br /&gt;
[https://www.youtube.com/watch?v=CEhBN5_fO5o|DC-DC Buck Converters]&lt;br /&gt;
Power Supply: Transformer + Buck Converter + Ripple Smoothing Circuitry&lt;br /&gt;
=Tuesday June 4=&lt;br /&gt;
*[[Arduino Controlled Power Supply]] - ordered many components.&lt;br /&gt;
*Many electronic components specified in DIY articles and videos are now listed as obsolete.  Finding replacement parts is not easy. Case in point: LM338K Linear Voltage Regulators - Listed as obsolete on the Mouser website and selling for $91 or more on the Digi-key website.&lt;br /&gt;
*[https://www.eetimes.com/document.asp?doc_id=1333695# Article about obsolescence and demand and supply issues in the electronics industry]&lt;br /&gt;
&lt;br /&gt;
=Saturday June 1 - Monday June 3=&lt;br /&gt;
Reviewed [[OSE Design Guides]] Reviewed [[DIY Semiconductors]] Microfactory STEAM Camp Critical Path [[Arduino Controlled Power Supply]] Fabrication of aluminium blocks for hot end for OSE 3D printer extruder. Parametric modelling in FreeCAD.&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 28 - Friday May 31=&lt;br /&gt;
[[Halbach Array Brushless Motor]]&lt;br /&gt;
&lt;br /&gt;
=Monday May 27= &lt;br /&gt;
[https://www.youtube.com/watch?v=uOQk8SJso6Q How to Control an ESC with an Arduino] [https://photos.app.goo.gl/HMvWbigvuw3S26YG8 Test of the OSE Motor].&lt;br /&gt;
&lt;br /&gt;
=Friday May 24 - Sunday May 26= &lt;br /&gt;
Not all that much.&lt;br /&gt;
=Thursday May 23=&lt;br /&gt;
Thank you to Marcin and Catarina for a refreshing, enlightening and enjoyable visit to Factor e Farm and the Seed Ecohome. Returned to London.&lt;br /&gt;
=Wednesday May 22=&lt;br /&gt;
Skype appointment - 12pm Missouri time - friend in Colombia. Uploaded FreeCAD files for D3D v19.04 Power Plug Case to Wiki. [https://en.wikipedia.org/wiki/Buck_converter Buck Converter]&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 21=&lt;br /&gt;
[https://www.powerelectronicsnews.com/problems-solutions/power-supply-design-tutorial Power Supply Design Tutorial] Edited the [https://docs.google.com/document/d/1_3t_97giFOtqJ4ExPZdYeVEilCRhMmu0IWLLpBCrG-0/edit?usp=sharing Video Script] &lt;br /&gt;
Contacted STEM people in Nigeria and Pennsylvania based on the OSE STEAM Camp posted in this [https://www.facebook.com/groups/822455171229260/ Facebook Forum]&lt;br /&gt;
Further communication with friends in Mexico regarding the STEAM camp. Contacted a friend of a friend in Kansas City - Baha&#039;i Community.&lt;br /&gt;
&lt;br /&gt;
=Monday May 20=&lt;br /&gt;
Posted Microfactory STEAM camp on several Facebook STEM/STEAM Education pages. [[The Living Curriculum]] [https://github.com/MarlinFirmware/Marlin/issues/8903 Marlin Bed Temperature Settings] Worked on the Titan-Aero extruder repairs. The two parts of the extruder tube must be fairly tight (but not too tight!) to avoid leakage.&lt;br /&gt;
&lt;br /&gt;
=Sunday May 19=&lt;br /&gt;
Printing ABS using the OSE D3D - Set the bed temperature to 83 and the nozzle temperature to 255.  After 5 minutes of printing, several layers were adhering well. Thermal runaway. Tried 80 and 244; thermal runaway again. Joined several online STEM/Education groups.&lt;br /&gt;
&lt;br /&gt;
=Saturday May 18=&lt;br /&gt;
[[OSE Revenue Generation]] - Grameen Bank / Social Business - [[OSE Curriculum]]&lt;br /&gt;
&lt;br /&gt;
=Friday May 17=&lt;br /&gt;
[[OSE STEM Camp Marketing Strategy]]&lt;br /&gt;
=Friday May 10 - Thursday May 16= &lt;br /&gt;
Preparation for trip to Factor e Farm - gathered supplies - PCB boards, glossy paper, wire, magnets, electronic components, hardware, etc. Arrival at Factor e Farm. Work on D3D v. 19.04: [Photos - OSE D3D v19.04 Build at FeF https://www.facebook.com/photo.php?fbid=10161819908970597&amp;amp;set=pcb.1063740287151880&amp;amp;type=3&amp;amp;theater&amp;amp;ifg=1]&lt;br /&gt;
 &lt;br /&gt;
=Friday April 12 - Thursday May 9=&lt;br /&gt;
[https://drive.google.com/open?id=1-DpgMCARsA5iz4JLZtUeP3SD4a3UrXhj OSE Motor Completed] - ready for testing - Open Source Chinese Prusa i3 Printer Extruder - Configured and began printing with OSE D3D - printing very well at the moment - Booked a flight to Kansas City - heading to Factor e Farm soon!&lt;br /&gt;
&lt;br /&gt;
=Monday March 4 - Thursday April 11=&lt;br /&gt;
FRC Robotics - Ryerson University, Western University. OSE Motor - students have made some progress: [https://drive.google.com/open?id=1n99XWM8KMwvnV-tCmcWjImsBG27ReRSc OSE Brushless Motor] Additional work on the [[Simple 3D Printer Extruder]]&lt;br /&gt;
&lt;br /&gt;
=Sunday March 3=&lt;br /&gt;
Completed the first model of the most difficult part to CAD in the extruder - the X-Axis bracket.  Will now print CAD files and measure their accuracy before making changes to the CAD parameters.  Hopefully this process will result in more accurate parts.&lt;br /&gt;
&lt;br /&gt;
=Friday March 1 - Saturday March 2 =&lt;br /&gt;
Further work on open sourcing Chinese Prusa i3 3D printer extruder.&lt;br /&gt;
&lt;br /&gt;
=Monday February 18 - Thursday February 28=&lt;br /&gt;
Began the process of open-sourcing our 3D printer extruder: [[Simple 3D Printer Extruder]] (see photos and CAD files in the 3D Printer Folder) &lt;br /&gt;
Started a new unit in Computer Engineering Technology class.  Two groups of students are working on OSE materials:  &lt;br /&gt;
#The OSE Collaborative Contest&lt;br /&gt;
#The OSE Filament Extruder&lt;br /&gt;
&lt;br /&gt;
=Saturday February 9-Sunday February 17=&lt;br /&gt;
Hosted a group of six STEM students from School of the Nations in Georgetown, Guyana. STEM Camp at London International Academy.  Introduced the concept of the OSE collaborative contest. Introductory FreeCAD activities. Introduced Python computer programming.  Printed out various parts for an open source brushless motor.  [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX Link to CAD Files] (see School of the Nations sub-folder)[[file:Rotor.jpg|200px]] [http://guyanachronicle.com/2019/02/17/nations-benefits-from-robotics-training-in-canada Article in Guyana Chronicle]&lt;br /&gt;
&lt;br /&gt;
=Wednesday February 6= &lt;br /&gt;
[[OSE Coopetition]].  Discussed wiki + part library + documentation of OSE Coopetition.&lt;br /&gt;
&lt;br /&gt;
=Monday February 4=&lt;br /&gt;
Uploaded version 0.1 of the OSE Collaborative Contest Rules to [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest]&lt;br /&gt;
=Wednesday January 30 - Sunday February 3=&lt;br /&gt;
FRC Build season.  [https://drive.google.com/drive/folders/1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH?usp=sharing Team 6162 Cap Alpaca FreeCAD files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday January 29=&lt;br /&gt;
Collected FreeCAD files in a Google drive folder: [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest] &lt;br /&gt;
Summary of Nanjing group&#039;s schedule: [https://docs.google.com/document/d/1R-Dtu3kdZ0u8Qo5w3_vDuNEg5myr8mUmLjSpPOf-HoI/edit?usp=sharing | 2019 Winter Camp]&lt;br /&gt;
Here is some sample work from the FreeCAD workshop:&lt;br /&gt;
*[[File:ReyJessica.png|200px]]&lt;br /&gt;
*[[File:ZJHLSR.png|200px]]&lt;br /&gt;
&lt;br /&gt;
=Sunday January 27 - Monday January 28=&lt;br /&gt;
Discussed record keeping, file sharing and other skills for collaborative literacy. Created a sample page stub: [[Brushless Motor Design]].  Asked students to reflect on sessions learning FreeCAD.  Found that it is not necessary to learn a whole lot about FreeCAD in order to get students learning it.  Demonstrated two sample FreeCAD 0.17 design processes:&lt;br /&gt;
#Design a part like a motor adapter: body - sketch a circle - pad - sketch on a surface - pocket&lt;br /&gt;
#Design a sketch with constraints - some straight lines and some arcs closed in a loop with particular dimensions and angles.&lt;br /&gt;
After that, students were directed to Youtube videos that covered specific additional skills: &lt;br /&gt;
*Threading - inner and outer&lt;br /&gt;
*Polar patterns&lt;br /&gt;
Through this process, I learned how to do these skills from some students and was able to show other students the same, especially with polar patterns.&lt;br /&gt;
&lt;br /&gt;
=Sunday January, 20 - Saturday January 26, 2019=&lt;br /&gt;
Prepared for and welcomed 19 students from Jinling High School in China. Introduced the concept of the OSE Collaborative Contest.  Marcin spoke with the group over Jitsi on Thursday and on Saturday and proposed that the students participate in the OSE Collaborative Contest. It was well received despite the students&#039; fatigue from travel and skiing. Introduced FreeCAD and had students download and install it. Some computers do not immediately work with FreeCAD; hope that the problem may be solved. We plan to further discuss the students&#039; participation in the contest tomorrow and 3D print some of their early FreeCAD work on Monday. Created a link to LIA students&#039; FreeCAD work.  Currently the folder is being used for FRC preparation.  After the FRC robot is built, we are planning to transition to OSE-related work in this folder: [https://drive.google.com/open?id=1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH LIA OSE Club CAD Files]&lt;br /&gt;
&lt;br /&gt;
=Thursday January 10 - Saturday Jan 19, 2019=&lt;br /&gt;
Heaviest schedule of the year - January and February; progress slower during this time. Working on STEM Curriculum for FeF STEM Camps - [[Summer School 2019]].&lt;br /&gt;
&lt;br /&gt;
=Wed Jan 9, 2019=&lt;br /&gt;
*Use a presentation - template - make a copy - pass this to Heydar - document the simple 3D printing extruder for a low cost 3d printer - [https://docs.google.com/presentation/d/1_kUzO4eRCqrHVpqxSSTs17oLhtikTTyYe_1NxrTKlTI/edit#slide=id.g45ed589c64_0_0]&lt;br /&gt;
*Homework: Complete STEM Curriculum&lt;br /&gt;
&lt;br /&gt;
=January 2, 2019=&lt;br /&gt;
Ordered parts for a brushless motor to be constructed as part of the contest and part of the Computer Engineering Technology class at London International Academy.&lt;br /&gt;
In order to make the collaborative contest work, we will need to create a kit of parts to be easily shipped to participating schools.&lt;br /&gt;
&lt;br /&gt;
=December 24 2018-January 1, 2019=&lt;br /&gt;
Took a break. Reflected on plans for OSE London / OSE Club at London International Academy / OSE Collaborative Contest&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=December 23, 2018=&lt;br /&gt;
Defined particulars of [[OSE STEM Camps]].&lt;br /&gt;
&lt;br /&gt;
=December 22,2018=&lt;br /&gt;
[[William Conversation | Conversation with Marcin]]. Research on OSE Club Activities. Planning for winter semester courses&#039; links to OSE - Computer Engineering Technology and Computer Science. Plans to do the following in Computer Engineering Technology: build a brushless motor and ESC from scratch. Computer Science: Programming projects related to OSE - simulation program? Western University Introduction to STEM Class - offer the OSE Competition as a choice for a final project - help administer / judge / communicate / etc.&lt;br /&gt;
&lt;br /&gt;
=December 12-21, 2018=&lt;br /&gt;
Exams and marking - excellent ways to hinder educational progress. Discussed Canadian bill of materials with Russ Purvis. Discussed the upcoming OSE workshop in Prince George, BC currently in the planning phase. Several phone conversations with Charlie. Worked on some particulars for the upcoming OSE competition in January. Contacted a teacher in Iran to invite her to join the competition with her students. Sent a letter of reference to Russ with respect to hosting an OSE workshop.&lt;br /&gt;
&lt;br /&gt;
=December 8-11, 2018=&lt;br /&gt;
Spoke with Charlie about development of OSE workshops.  Spoke with Marcin and Catarina about the same. Updated Marcin about development of OSE club at London International Academy.  We now have plans to include at least four schools in our first design challenge - School of the Nations in Guyana, Fujing Foreign Language School in Shenzhen and Jinling School in Nanjing. Was approached by a friend to contact Makerspace managers in St. Thomas and Toronto. Arranged a meeting with the makerspace managers at Western University. OSE Marlin v18.10 works for printing with new printer. Successfully printed base layer of a file.  It seems that the extruder may have jammed.  Will check again as soon as possible. LIA students continue to develop their FreeCAD skills and are able to design parts in parallel according to a spacial plan and assemble them into a larger model. Installed OSE Linux on laptop now with a new old-school 1TcB hard drive. OSE Linux did not recognise the card reader; everything else seems to work very well. &amp;lt;strong&amp;gt;Note: Stepper motors on y axis of D3D became alarmingly hot after about 15 minutes of printing.&amp;lt;/strong&amp;gt; Perhaps this is a configuration issue; may need to resolve this before allowing the printer to do a full print.&lt;br /&gt;
&lt;br /&gt;
=December 7, 2018= &lt;br /&gt;
Using OSE Ubuntu on laptop with fried SSD. Internet has connection through ping but does not display pages in Chromium. D3D Marlin recent version from OSE website installed in printer. Autohome produces a collision of the z axis with the extruder as by default the z probe is off the plate.  Tried to move the y axis using various commands such as G0 Y40 and G1 Y40 all of which cause the Y axis to move until it hits the maximum physically possible position. Spoke with Johann Wong about the possibility of combining an OSE Makerspace skills (Arduino, CAD, etc.) + 3D printer workshop with Human Innovation PIE&#039;s soft skills innovation workshop through the London International Academy Foundation. Was using wrong Marlin file for D3D printer - will try correct one asap. Suggestions for D3D: use zip ties and clothespin springs for tensioning belts.  This has worked exceptionally well and reliably for our Chinese Prusa derivative; the belts have needed nearly no attention in three years.&lt;br /&gt;
&lt;br /&gt;
=December 6, 2018=&lt;br /&gt;
Was about to test print on OSE D3D when SSD crashed.  Did Ubuntu fry it?  Researching this.&lt;br /&gt;
&lt;br /&gt;
=December 5, 2018=&lt;br /&gt;
Introduced the OSE design challenge to OSE Club students at London International Academy.&lt;br /&gt;
&lt;br /&gt;
=December 4, 2018= &lt;br /&gt;
Held an informal Introduction to Arduino Workshop at London International Academy to help two grade 11 students with a project.  Spoke with Marcin about plans for the OSE design challenge, OSE club and possibility of a summer camp at FeF in May or June of 2019.&lt;br /&gt;
&lt;br /&gt;
=December 2, 2018=&lt;br /&gt;
 Created a document outlining a framework for OSL - Open Source London and shared it on Google Docs; visited Charlie to discuss the document.&lt;br /&gt;
&lt;br /&gt;
=November 29, 2018=&lt;br /&gt;
 Introduced OSE 3D Printer and Prusa i3 3D printer to parents and students at a local French Immersion school - PAFI.  Designed and printed various models using Blender and Repetier.&lt;br /&gt;
&lt;br /&gt;
=November 28, 2018=&lt;br /&gt;
*Updated OSECartCoin with letters. &lt;br /&gt;
**[[File:PAFI.stl]]&lt;br /&gt;
**[[File:PAFI.fcstd]]&lt;br /&gt;
*Call with Marcin regarding &#039;&#039;&#039;[[LIA OSE Club]]&#039;&#039;&#039;&lt;br /&gt;
*Build from last week - [https://www.facebook.com/groups/398759490316633/permalink/963594880499755/]&lt;br /&gt;
&lt;br /&gt;
=November 27, 2018=&lt;br /&gt;
Wrote the suggested intro to Marcin&#039;s next TED talk: [[Marcin&#039;s Next TED Talk]]&lt;br /&gt;
=November 26, 2018=&lt;br /&gt;
Uploaded FeF Brick Press Fabrication video from July 29, 2011 - [https://youtu.be/LwW8sOUO00s]&lt;br /&gt;
&amp;lt;p&amp;gt;Uploaded video of the &amp;quot;Cluckaphone&amp;quot; - July 29, 2011 - [https://www.youtube.com/watch?v=PNOhZX7ftLk&amp;amp;feature=youtu.be]&lt;br /&gt;
Call with Marcin, Catarina and Charlie - OSE Planning&lt;br /&gt;
&lt;br /&gt;
=November 25, 2018=&lt;br /&gt;
Consultation about the establishment of an OSE Club at London International Academy and future directions for the development of OSE Clubs and Makerspaces.&lt;br /&gt;
&lt;br /&gt;
=November 24, 2018=&lt;br /&gt;
We made an OSE Cart Coin with FreeCAD &lt;br /&gt;
Here are the files for OSE Cart Coin v0.1:&lt;br /&gt;
[[File:OSECartCoin.fcstd]]&lt;br /&gt;
[[File:OSECartCoin.stl]]&lt;br /&gt;
Attended Marcin&#039;s presentation entitled &amp;quot;Education for the Open Source Economy&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=November 23, 2018=&lt;br /&gt;
Built a an OSE 3D printer at London International Academy&lt;br /&gt;
&lt;br /&gt;
=November 23-25=&lt;br /&gt;
Attended first OSE Professional Development workshop at London International Academy with Charles Freer, Pascal Gingras, Marcin and Catarina.&lt;br /&gt;
&lt;br /&gt;
=November 18-22= &lt;br /&gt;
Prepared for the visit of Marcin and Catarina to London.&lt;br /&gt;
&lt;br /&gt;
=November 17, 2018=&lt;br /&gt;
Conversation about OSE development with Charlie.  In particular, discussion about education and its relationship to developing the capacity to lead a meaningful and productive life. Reference to overlap of Baha&#039;i means and principles with those of the OSE - elimination of the extremes of wealth and poverty, building capabilities in a population, individual agency and initiative within a systematically evolving framework, etc.&lt;br /&gt;
&lt;br /&gt;
=November 16, 2018=&lt;br /&gt;
*Received US $5000 Shuttleworth Foundation Flash Grant&lt;br /&gt;
*Conference call with Marcin and Charles Freer regarding Marcin and Catarina&#039;s upcoming visit to London, Ontario&lt;br /&gt;
&lt;br /&gt;
=November 15, 2018=&lt;br /&gt;
Engineering Club students designed and printed a part to add to the Lyman Filament Extruder repository - a bracket for a rocker switch&lt;br /&gt;
&lt;br /&gt;
[[File:SwitchBracket2.png]]&lt;br /&gt;
[[File:Switchbase2.stl]]&lt;br /&gt;
[[File:SwitchBracket.FCStd]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=May, 2012=&lt;br /&gt;
Started project to build metric version of OSE CEB Press in Nanjing, China&lt;br /&gt;
&lt;br /&gt;
=April, 2012=&lt;br /&gt;
Began 3D Printing project in physics class at London International Academy&lt;br /&gt;
&lt;br /&gt;
=July, 2011-October, 2018=&lt;br /&gt;
Many things happened including severe neglect of the OSE wiki&lt;br /&gt;
Some highlights:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Regular incorporation of OSE concepts into classes and presentations 2011-present&lt;br /&gt;
*May, 2013 - started collaboration with Human InnovationPIE, a London non-profit organization focused on providing soft skills education for innovation.&lt;br /&gt;
*April, 2014 - Recognized in local paper for 3D Printer build with students&lt;br /&gt;
*July, 2015 - Asked to start STEM program at London International Academy further to success and popularity of 3D printer project&lt;br /&gt;
*September, 2015 - Began building Farmbot with students&lt;br /&gt;
*January, 2017 - Began teaching an Introduction to STEM course at Western University with significant OSE-based content.&lt;br /&gt;
&lt;br /&gt;
=July 16, 2011=&lt;br /&gt;
Arrived at Factor e Farm with Haydar Neal&lt;br /&gt;
&lt;br /&gt;
=March,  2011=&lt;br /&gt;
Saw TED Talk and wrote away to Marcin immediately&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=229644</id>
		<title>William Neal Log</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=229644"/>
		<updated>2020-08-05T18:36:49Z</updated>

		<summary type="html">&lt;p&gt;Wneal: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{RightTOC}}&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;600&amp;quot; height=&amp;quot;600&amp;quot; src=&amp;quot;https://osedev.org/wiki/William?start=2/1/2017&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
=Monday June 22 - Wednesday August 5=&lt;br /&gt;
*Further development of ALT-L Course.&lt;br /&gt;
*Delivered D3D to collaborator Bill Phelan from local company, Die-X.&lt;br /&gt;
=Monday June 1 - Sunday June 21=&lt;br /&gt;
[https://www.youtube.com/watch?v=G72eEatmIX0&amp;amp;t=10s ALT-L Introduction Video] ALT-L is presented as a preliminary step in developing an entire school curriculum based on the idea of coherence and connection. There is a potential to link this project to a wider set of Open Source Ecology workshops that consider an entirely different approach to the education system.&lt;br /&gt;
=Saturday May 9 - Sunday May 31=&lt;br /&gt;
More work on [https://drive.google.com/drive/folders/14da63JcyEaM5CfdXjSi5G1Vll_hHTj9k?usp=sharing ALT-L] - &amp;quot;Alternative Learning&amp;quot; - Accelerated math and computer programming course for secondary school students.&lt;br /&gt;
[https://youtu.be/xjL4-1S7Was Youtube video on use of Spreadsheets in FreeCAD]&lt;br /&gt;
 &lt;br /&gt;
=Wednesday May 6-Friday May 8=&lt;br /&gt;
[[Open Source Collaboration Mini Course]]&lt;br /&gt;
Call with Marcin - August Remote Camp.&lt;br /&gt;
https://wiki.opensourceecology.org/wiki/Andreas_Log#Thur-Fri_Apr_23-4.2C_2020&lt;br /&gt;
https://wiki.opensourceecology.org/wiki/Test&lt;br /&gt;
https://wiki.opensourceecology.org/wiki/OSE_Collaboration_Protocol&lt;br /&gt;
=Friday March 27 - Tuesday May 5=&lt;br /&gt;
Worked on &amp;quot;[https://docs.google.com/document/d/1_5LJo8GXV5Ct1f57bD4fB8xC0wyT9iANtgPVj-Dev0M/edit?usp=sharing ALT-L],&amp;quot; an accelerated mathematics and computer programming curriculum for secondary school students. The course is under development [https://drive.google.com/drive/folders/14da63JcyEaM5CfdXjSi5G1Vll_hHTj9k?usp=sharing here] with two groups of students from eight countries meeting twice weekly over Zoom. Created a related [https://docs.google.com/document/d/1QXsDVR2iXecT_T-NM8DEwA4o-Yh6eCNfLf4ze8VFVyM/edit?usp=sharing training manual] for the Guyana Prison system using open source technologies such as Linux and Python.&lt;br /&gt;
&lt;br /&gt;
=Sunday February 16 - Thursday March 26=&lt;br /&gt;
Work on OSE Challenging due to work, community and global crisis. &lt;br /&gt;
=Friday February 14 - Saturday February 15=&lt;br /&gt;
Personal Build Wishlist - Continued&lt;br /&gt;
=Friday February 7 - Thursday February 13=&lt;br /&gt;
[https://docs.google.com/document/d/11DUqroMKjpKGh2WxIpkJfl5HaPJJzIl8uK6saErtpgs/edit?usp=sharing William Neal Personal Build Wishlist] - Still under development&lt;br /&gt;
&lt;br /&gt;
=Monday, December 2 - Thursday Feb. 6, 2020=&lt;br /&gt;
End of semester disruption; start of semester disruption - a huge amount of time and effort spent on paperwork instead of education. Start of FRC robotics season. Start of computer programming and computer engineering classes. &lt;br /&gt;
=Saturday November 30 - Sunday December 1=&lt;br /&gt;
Finished OSE Prusa Build in Guyana. Used [https://www.repetier.com/documentation/repetier-firmware/ Repetier Firmware] and [https://www.repetier.com/ Repetier Host] to control the printer.&lt;br /&gt;
=Thursday November 28 - Friday November 29=&lt;br /&gt;
Workshop with the Guyana Prison Service - 12 prison staff from five facilities in Guyana. Reactivated 6 discarded computers using Ubuntu and OSE Linux. [[Introduction to Python]]. [https://m.facebook.com/groups/398759490316633?view=permalink&amp;amp;id=1215623975296843 OSE Prusa Build]&lt;br /&gt;
&lt;br /&gt;
=Saturday November 23  Wednesday November 27=&lt;br /&gt;
Workshop in Guyana with the Guyana Prison Service: The CSSP Project.  This project aims to replace the current model of prison management with an approach based on human nobility, education and rehabilitation.&lt;br /&gt;
=Thursday November 28=&lt;br /&gt;
[[OSE Linux]] - we got six old computers working on Ubuntu using flash drives.  Tomorrow will have an Open Source software workshop using OSE Linux on USB drives. We will use Python, FreeCAD, LibreOffice, etc. Showed the TED talk to our group of 12 prison officers from five facilities in Guyana.&lt;br /&gt;
&lt;br /&gt;
=Saturday November 2 - Friday November 22=&lt;br /&gt;
Worked on the [[OSE Prusa]] in order to support the establishment of a STEM centre in Trinidad and Tobago and to prepare for a workshop with the Government of Guyana.&lt;br /&gt;
#Items in a numbered list&lt;br /&gt;
#More Items&lt;br /&gt;
##Yet More&lt;br /&gt;
*Items in a bullet list&lt;br /&gt;
*More Items&lt;br /&gt;
**Yet More&lt;br /&gt;
&lt;br /&gt;
=Thursday October 24 - Friday November 1=&lt;br /&gt;
*Tested printing on the London replication of the D3D printer for the first time.&lt;br /&gt;
*Team of 9 students from Western university preparing a project around OSE - D3D replication + filament extruder replication + Chinese Reprap Prusa i3 reverse engineering.&lt;br /&gt;
=Sunday October 12 - Wednesday October 23=&lt;br /&gt;
*Updated some files used in the simple extruder build [https://wiki.opensourceecology.org/wiki/Simple_3D_Printer_Extruder#CAD here.]&lt;br /&gt;
&lt;br /&gt;
=Friday October 4 - Saturday October 11=&lt;br /&gt;
*Successfully tested D3D simple extruder based on Chinese Prusa i3.&lt;br /&gt;
*D3D challenge - Y axis end stop stopped working...&lt;br /&gt;
*Almost finished replicating first of two D3D printers in London Ontario.&lt;br /&gt;
*Preparing a D3D / Brushless motor workshop for the Guyana Prison Service. &lt;br /&gt;
*FreeCAD activity completed at Western University - varied response of individuals in the groups - the allocated time was too short. &lt;br /&gt;
=Friday September 27 - Thursday October 3=&lt;br /&gt;
*Continued work on D3D build.&lt;br /&gt;
*Experimenting with highly differentiated instruction unconstrained by government curricular concerns - our STEM club&#039;s three sections - Robotics / Computers and CAD / STEM projects have each gradually evolved over the last several weeks such that small groups of 1-4 students specialize on special tasks.&lt;br /&gt;
*Introduced FreeCAD to a group of junior youth from a local neighborhood. After about 40 minutes each group of two participants completed a motor rotor design.&lt;br /&gt;
*Second FreeCAD session with a group of 40 teacher candidate students at Western University&#039;s Althouse. Also used highly differentiated / interdisciplinary instruction with this group. After one hour and a half, most groups were able to generate several parts of a brushless motor and begin the process of parameterizing with a spreadsheet and creating an assembly.  Some trained engineers in the crowd generated excellent &amp;quot;propellers&amp;quot; for the motor using advanced features.&lt;br /&gt;
&lt;br /&gt;
=Tuesday, September 1 - Thursday, September 26=&lt;br /&gt;
*New School Year - over 40 students participating in our special STEM/Business/Arts program.&lt;br /&gt;
*Two sections of our program, STEM Projects and Computer Programming/CAD,  include OSE-related topics:&lt;br /&gt;
**Building 3D printers&lt;br /&gt;
**3D-printing&lt;br /&gt;
**OSE Motor design and fabrication&lt;br /&gt;
**Filament extruder&lt;br /&gt;
**CAD&lt;br /&gt;
*Building a 3D printer in collaboration with Bill Phelan, Vice President of Die-X Ltd.&lt;br /&gt;
*Remote collaboration with Branko Misovic in Holland.&lt;br /&gt;
*Preparing for a two-week 3D-printer build / open source hardware workshop in Guyana in November.&lt;br /&gt;
*Working on simple extruder for the D3D printer.&lt;br /&gt;
*Some 3D-printed parts for the D3D printer are not precise enough as they were printed with 1.0mm and 0.8mm nozzles.  We are switching to a 0.4mm nozzle and re-printing.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 27 - Monday September 1=&lt;br /&gt;
*Preparation for STEM camps in China. &lt;br /&gt;
*Travel to China.  Caught behind firewall - Internet was actually a large Intranet - difficult to post, communicate or access any useful sites. &lt;br /&gt;
*STEM Camp at Fujing Foreign language school - 10 days - 60 students, 1.5 hours daily - worked on FreeCAD and the OSE motor. &lt;br /&gt;
*Built OSE D3D printer with eight 9-11 year-old students (10 days, 3 hours daily) at EIC Education in Shenzhen.  The students assembled the axes and helped design some custom 3D-printed brackets for the frame which had to be made out of linear rail. The students learned FreeCAD and were able to design useful parts. Ganesh Ramsahai provided support in completing the build and configuration process. Presented the OSE D3D Shenzhen to the EIC Education Group with a half-hour overview and offer to provide remote support.&lt;br /&gt;
*STEM Camp at Zhangjiagang Foreign Language School in Jiangsu province. 30 students, 3 days, 6 hours per day.  Introduced FreeCAD and had the students design rotors and stators for the OSE brushless motor.&lt;br /&gt;
*Showed the TED talk to four different groups.&lt;br /&gt;
*Uploaded raw FreeCAD and stl files from the camps at Fujing Foreign Language School and Zhangjiagang Foreign Language School to [https://drive.google.com/open?id=1K7U8lEGqRgxwQf-WNX1Llbf-WE7LJCqL Google Drive]&lt;br /&gt;
*Uploaded [https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH custom files] generated during the build of the D3D 19.08 Shenzhen.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 20 - Friday July 26=&lt;br /&gt;
LIA summer STEM camp continued with 38 different students from Shenzhen, China.  The students discussed, in the context of Marcin&#039;s TED Talk, the concept that the human mind, focused and in collaboration with others, has the power to make positive changes in society.  Design of covers and caps for the OSE radial motor. Photos from the STEM Camp activities are [https://photos.app.goo.gl/zcpKk8jaFcDon31K7 here].  Trying to find the USB where we collected all the FreeCAD files.  These will be posted ASAP.&lt;br /&gt;
&lt;br /&gt;
=Monday July 15 - Friday July 19=&lt;br /&gt;
LIA summer STEM camp with 23 students from Vietnam and China. OSE Motor project part II - designing, printing and testing a radial motor. The motor concept was based on the following video: [https://www.youtube.com/watch?v=JkwLpAAfBVI 3D-Printed Axial Brushless Motor for Drones] Students were presented with the concept and asked to design such a motor from scratch using two rotors with eight disc magnets each and two sets of six wire loops.&lt;br /&gt;
&lt;br /&gt;
=Wednesday July 10 - Sunday July 14=&lt;br /&gt;
Preparation for summer STEM Camps at LIA.  Prepared 3D printers.  Began replication of two D3D v19.06 units.&lt;br /&gt;
=Friday June 28 - Tuesday July 9= &lt;br /&gt;
Open Source Ecology Microfactory STEAM Camp&lt;br /&gt;
=Thursday June 27=&lt;br /&gt;
Titan Aero finally working better with 1.5 full turns + a little bit more for good measure - has not jammed all afternoon now - three parts printed.  Logistics for Microfatory STEAM Camp - rented a vehicle and contacted a few participants. A prototype of the OSE extruder has been nearly completed. The extruder gear is scheduled to arrive at Factor e Farm by tomorrow. Then it will be ready for testing.  [https://photos.app.goo.gl/fWUX8ynAdqcn6Fvs6 OSE D3D Extruder - Photo Album][https://drive.google.com/open?id=17BLyvyk1EbrMOhkCfeSwByAq86SemSLX Files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 25 - Wednesday June 26=&lt;br /&gt;
OSE D3D Extruder.  Worked on attaching extruder to X-axis. Ordered extruder motor gears to arrive at FeF on Friday. Printed out bracket 1 successfully. Working on large aluminium block and designing x-axis adapter.&lt;br /&gt;
=Monday June 24=&lt;br /&gt;
Discussion about design of OSE Power Electronics. Problem - transformers are expensive and inflexible. Solution - research the feasibility of creating a 120V buck converter.  Would it be sufficiently efficient and would it be feasible to build?  Here are some potential parts to use: [https://www.digikey.ca/product-detail/en/comchip-technology/GBPC5010W-G/641-1389-ND/2074854 1kV Recifier] [https://www.digikey.ca/product-detail/en/ixys/IXFX120N65X2/IXFX120N65X2-ND/5629498?utm_adgroup=&amp;amp;mkwid=sFMkJ49os&amp;amp;pcrid=311971049444&amp;amp;pkw=&amp;amp;pmt=&amp;amp;pdv=c&amp;amp;productid=5629498&amp;amp;slid=&amp;amp;gclid=EAIaIQobChMIgbDd1fSC4wIVwkOGCh1f8gijEAQYAyABEgJGffD_BwE 650V MOSFET].  One problem seems to be that there may be a high level of energy loss in the circuit....[https://www.digikey.com/product-detail/en/everlight-electronics-co-ltd/H11L1S-TA/1080-1201-1-ND/2675935 Optocoupler] (to isolate the Arduino)[http://fpec.ucf.edu/teaching/EEL%205245%20Lectures/Lecture13%20Chapter4_BoostandBuckBoost_CCM_Analysis.pdf Some background theory]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 19 - Sunday June 23=&lt;br /&gt;
DIY Buck Converter based on the following video (and others): https://www.youtube.com/watch?v=L5oeY53pE0E&amp;amp;t=162s. [https://photos.app.goo.gl/kkHUwBQtD7h48mhB6 Photos.] All four 3D printers are down.  A crucial piece of the extruder of the most reliable printer finally broke. CAD already done for the replacement part. Got the OSE D3D working again on Friday.  Ready for printing on Monday - will print replacement part for other printer.  Other 2 printers almost working...&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 18=&lt;br /&gt;
[https://www.pythonpowerelectronics.com/ Python Power Electronics]&lt;br /&gt;
=Thursday June 13 - Monday June 17=&lt;br /&gt;
Buck Converters. OSE [[Power Electronics]] research. Arduino as controller of Power electronics - frequency issues / limitations. Scalability of Power electronics - can we add modular components to increase voltage, current, etc.?  &lt;br /&gt;
=Tuesday June 11 - Wednesday June 12=&lt;br /&gt;
Completed and sent CAD Drawings for OSE 3D Printer. Spent most of Wednesday working through a jam on the Titan Aero - it has jammed more in a few days than our other extruder has jammed in over three years.&lt;br /&gt;
=Monday June 10=&lt;br /&gt;
[https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH FreeCAD Drawings] for OSE 3D Printer. Note the use of parametric design in the CAD files - Spreadsheet values become variables used in constraint dimensions.&lt;br /&gt;
The following is my most recent FreeCAD Parametric Part Design and Drawing Workflow:[[FreeCAD Workflow]]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 5 - Sunday June 9=&lt;br /&gt;
[https://www.youtube.com/watch?v=CEhBN5_fO5o|DC-DC Buck Converters]&lt;br /&gt;
Power Supply: Transformer + Buck Converter + Ripple Smoothing Circuitry&lt;br /&gt;
=Tuesday June 4=&lt;br /&gt;
*[[Arduino Controlled Power Supply]] - ordered many components.&lt;br /&gt;
*Many electronic components specified in DIY articles and videos are now listed as obsolete.  Finding replacement parts is not easy. Case in point: LM338K Linear Voltage Regulators - Listed as obsolete on the Mouser website and selling for $91 or more on the Digi-key website.&lt;br /&gt;
*[https://www.eetimes.com/document.asp?doc_id=1333695# Article about obsolescence and demand and supply issues in the electronics industry]&lt;br /&gt;
&lt;br /&gt;
=Saturday June 1 - Monday June 3=&lt;br /&gt;
Reviewed [[OSE Design Guides]] Reviewed [[DIY Semiconductors]] Microfactory STEAM Camp Critical Path [[Arduino Controlled Power Supply]] Fabrication of aluminium blocks for hot end for OSE 3D printer extruder. Parametric modelling in FreeCAD.&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 28 - Friday May 31=&lt;br /&gt;
[[Halbach Array Brushless Motor]]&lt;br /&gt;
&lt;br /&gt;
=Monday May 27= &lt;br /&gt;
[https://www.youtube.com/watch?v=uOQk8SJso6Q How to Control an ESC with an Arduino] [https://photos.app.goo.gl/HMvWbigvuw3S26YG8 Test of the OSE Motor].&lt;br /&gt;
&lt;br /&gt;
=Friday May 24 - Sunday May 26= &lt;br /&gt;
Not all that much.&lt;br /&gt;
=Thursday May 23=&lt;br /&gt;
Thank you to Marcin and Catarina for a refreshing, enlightening and enjoyable visit to Factor e Farm and the Seed Ecohome. Returned to London.&lt;br /&gt;
=Wednesday May 22=&lt;br /&gt;
Skype appointment - 12pm Missouri time - friend in Colombia. Uploaded FreeCAD files for D3D v19.04 Power Plug Case to Wiki. [https://en.wikipedia.org/wiki/Buck_converter Buck Converter]&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 21=&lt;br /&gt;
[https://www.powerelectronicsnews.com/problems-solutions/power-supply-design-tutorial Power Supply Design Tutorial] Edited the [https://docs.google.com/document/d/1_3t_97giFOtqJ4ExPZdYeVEilCRhMmu0IWLLpBCrG-0/edit?usp=sharing Video Script] &lt;br /&gt;
Contacted STEM people in Nigeria and Pennsylvania based on the OSE STEAM Camp posted in this [https://www.facebook.com/groups/822455171229260/ Facebook Forum]&lt;br /&gt;
Further communication with friends in Mexico regarding the STEAM camp. Contacted a friend of a friend in Kansas City - Baha&#039;i Community.&lt;br /&gt;
&lt;br /&gt;
=Monday May 20=&lt;br /&gt;
Posted Microfactory STEAM camp on several Facebook STEM/STEAM Education pages. [[The Living Curriculum]] [https://github.com/MarlinFirmware/Marlin/issues/8903 Marlin Bed Temperature Settings] Worked on the Titan-Aero extruder repairs. The two parts of the extruder tube must be fairly tight (but not too tight!) to avoid leakage.&lt;br /&gt;
&lt;br /&gt;
=Sunday May 19=&lt;br /&gt;
Printing ABS using the OSE D3D - Set the bed temperature to 83 and the nozzle temperature to 255.  After 5 minutes of printing, several layers were adhering well. Thermal runaway. Tried 80 and 244; thermal runaway again. Joined several online STEM/Education groups.&lt;br /&gt;
&lt;br /&gt;
=Saturday May 18=&lt;br /&gt;
[[OSE Revenue Generation]] - Grameen Bank / Social Business - [[OSE Curriculum]]&lt;br /&gt;
&lt;br /&gt;
=Friday May 17=&lt;br /&gt;
[[OSE STEM Camp Marketing Strategy]]&lt;br /&gt;
=Friday May 10 - Thursday May 16= &lt;br /&gt;
Preparation for trip to Factor e Farm - gathered supplies - PCB boards, glossy paper, wire, magnets, electronic components, hardware, etc. Arrival at Factor e Farm. Work on D3D v. 19.04: [Photos - OSE D3D v19.04 Build at FeF https://www.facebook.com/photo.php?fbid=10161819908970597&amp;amp;set=pcb.1063740287151880&amp;amp;type=3&amp;amp;theater&amp;amp;ifg=1]&lt;br /&gt;
 &lt;br /&gt;
=Friday April 12 - Thursday May 9=&lt;br /&gt;
[https://drive.google.com/open?id=1-DpgMCARsA5iz4JLZtUeP3SD4a3UrXhj OSE Motor Completed] - ready for testing - Open Source Chinese Prusa i3 Printer Extruder - Configured and began printing with OSE D3D - printing very well at the moment - Booked a flight to Kansas City - heading to Factor e Farm soon!&lt;br /&gt;
&lt;br /&gt;
=Monday March 4 - Thursday April 11=&lt;br /&gt;
FRC Robotics - Ryerson University, Western University. OSE Motor - students have made some progress: [https://drive.google.com/open?id=1n99XWM8KMwvnV-tCmcWjImsBG27ReRSc OSE Brushless Motor] Additional work on the [[Simple 3D Printer Extruder]]&lt;br /&gt;
&lt;br /&gt;
=Sunday March 3=&lt;br /&gt;
Completed the first model of the most difficult part to CAD in the extruder - the X-Axis bracket.  Will now print CAD files and measure their accuracy before making changes to the CAD parameters.  Hopefully this process will result in more accurate parts.&lt;br /&gt;
&lt;br /&gt;
=Friday March 1 - Saturday March 2 =&lt;br /&gt;
Further work on open sourcing Chinese Prusa i3 3D printer extruder.&lt;br /&gt;
&lt;br /&gt;
=Monday February 18 - Thursday February 28=&lt;br /&gt;
Began the process of open-sourcing our 3D printer extruder: [[Simple 3D Printer Extruder]] (see photos and CAD files in the 3D Printer Folder) &lt;br /&gt;
Started a new unit in Computer Engineering Technology class.  Two groups of students are working on OSE materials:  &lt;br /&gt;
#The OSE Collaborative Contest&lt;br /&gt;
#The OSE Filament Extruder&lt;br /&gt;
&lt;br /&gt;
=Saturday February 9-Sunday February 17=&lt;br /&gt;
Hosted a group of six STEM students from School of the Nations in Georgetown, Guyana. STEM Camp at London International Academy.  Introduced the concept of the OSE collaborative contest. Introductory FreeCAD activities. Introduced Python computer programming.  Printed out various parts for an open source brushless motor.  [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX Link to CAD Files] (see School of the Nations sub-folder)[[file:Rotor.jpg|200px]] [http://guyanachronicle.com/2019/02/17/nations-benefits-from-robotics-training-in-canada Article in Guyana Chronicle]&lt;br /&gt;
&lt;br /&gt;
=Wednesday February 6= &lt;br /&gt;
[[OSE Coopetition]].  Discussed wiki + part library + documentation of OSE Coopetition.&lt;br /&gt;
&lt;br /&gt;
=Monday February 4=&lt;br /&gt;
Uploaded version 0.1 of the OSE Collaborative Contest Rules to [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest]&lt;br /&gt;
=Wednesday January 30 - Sunday February 3=&lt;br /&gt;
FRC Build season.  [https://drive.google.com/drive/folders/1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH?usp=sharing Team 6162 Cap Alpaca FreeCAD files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday January 29=&lt;br /&gt;
Collected FreeCAD files in a Google drive folder: [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest] &lt;br /&gt;
Summary of Nanjing group&#039;s schedule: [https://docs.google.com/document/d/1R-Dtu3kdZ0u8Qo5w3_vDuNEg5myr8mUmLjSpPOf-HoI/edit?usp=sharing | 2019 Winter Camp]&lt;br /&gt;
Here is some sample work from the FreeCAD workshop:&lt;br /&gt;
*[[File:ReyJessica.png|200px]]&lt;br /&gt;
*[[File:ZJHLSR.png|200px]]&lt;br /&gt;
&lt;br /&gt;
=Sunday January 27 - Monday January 28=&lt;br /&gt;
Discussed record keeping, file sharing and other skills for collaborative literacy. Created a sample page stub: [[Brushless Motor Design]].  Asked students to reflect on sessions learning FreeCAD.  Found that it is not necessary to learn a whole lot about FreeCAD in order to get students learning it.  Demonstrated two sample FreeCAD 0.17 design processes:&lt;br /&gt;
#Design a part like a motor adapter: body - sketch a circle - pad - sketch on a surface - pocket&lt;br /&gt;
#Design a sketch with constraints - some straight lines and some arcs closed in a loop with particular dimensions and angles.&lt;br /&gt;
After that, students were directed to Youtube videos that covered specific additional skills: &lt;br /&gt;
*Threading - inner and outer&lt;br /&gt;
*Polar patterns&lt;br /&gt;
Through this process, I learned how to do these skills from some students and was able to show other students the same, especially with polar patterns.&lt;br /&gt;
&lt;br /&gt;
=Sunday January, 20 - Saturday January 26, 2019=&lt;br /&gt;
Prepared for and welcomed 19 students from Jinling High School in China. Introduced the concept of the OSE Collaborative Contest.  Marcin spoke with the group over Jitsi on Thursday and on Saturday and proposed that the students participate in the OSE Collaborative Contest. It was well received despite the students&#039; fatigue from travel and skiing. Introduced FreeCAD and had students download and install it. Some computers do not immediately work with FreeCAD; hope that the problem may be solved. We plan to further discuss the students&#039; participation in the contest tomorrow and 3D print some of their early FreeCAD work on Monday. Created a link to LIA students&#039; FreeCAD work.  Currently the folder is being used for FRC preparation.  After the FRC robot is built, we are planning to transition to OSE-related work in this folder: [https://drive.google.com/open?id=1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH LIA OSE Club CAD Files]&lt;br /&gt;
&lt;br /&gt;
=Thursday January 10 - Saturday Jan 19, 2019=&lt;br /&gt;
Heaviest schedule of the year - January and February; progress slower during this time. Working on STEM Curriculum for FeF STEM Camps - [[Summer School 2019]].&lt;br /&gt;
&lt;br /&gt;
=Wed Jan 9, 2019=&lt;br /&gt;
*Use a presentation - template - make a copy - pass this to Heydar - document the simple 3D printing extruder for a low cost 3d printer - [https://docs.google.com/presentation/d/1_kUzO4eRCqrHVpqxSSTs17oLhtikTTyYe_1NxrTKlTI/edit#slide=id.g45ed589c64_0_0]&lt;br /&gt;
*Homework: Complete STEM Curriculum&lt;br /&gt;
&lt;br /&gt;
=January 2, 2019=&lt;br /&gt;
Ordered parts for a brushless motor to be constructed as part of the contest and part of the Computer Engineering Technology class at London International Academy.&lt;br /&gt;
In order to make the collaborative contest work, we will need to create a kit of parts to be easily shipped to participating schools.&lt;br /&gt;
&lt;br /&gt;
=December 24 2018-January 1, 2019=&lt;br /&gt;
Took a break. Reflected on plans for OSE London / OSE Club at London International Academy / OSE Collaborative Contest&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=December 23, 2018=&lt;br /&gt;
Defined particulars of [[OSE STEM Camps]].&lt;br /&gt;
&lt;br /&gt;
=December 22,2018=&lt;br /&gt;
[[William Conversation | Conversation with Marcin]]. Research on OSE Club Activities. Planning for winter semester courses&#039; links to OSE - Computer Engineering Technology and Computer Science. Plans to do the following in Computer Engineering Technology: build a brushless motor and ESC from scratch. Computer Science: Programming projects related to OSE - simulation program? Western University Introduction to STEM Class - offer the OSE Competition as a choice for a final project - help administer / judge / communicate / etc.&lt;br /&gt;
&lt;br /&gt;
=December 12-21, 2018=&lt;br /&gt;
Exams and marking - excellent ways to hinder educational progress. Discussed Canadian bill of materials with Russ Purvis. Discussed the upcoming OSE workshop in Prince George, BC currently in the planning phase. Several phone conversations with Charlie. Worked on some particulars for the upcoming OSE competition in January. Contacted a teacher in Iran to invite her to join the competition with her students. Sent a letter of reference to Russ with respect to hosting an OSE workshop.&lt;br /&gt;
&lt;br /&gt;
=December 8-11, 2018=&lt;br /&gt;
Spoke with Charlie about development of OSE workshops.  Spoke with Marcin and Catarina about the same. Updated Marcin about development of OSE club at London International Academy.  We now have plans to include at least four schools in our first design challenge - School of the Nations in Guyana, Fujing Foreign Language School in Shenzhen and Jinling School in Nanjing. Was approached by a friend to contact Makerspace managers in St. Thomas and Toronto. Arranged a meeting with the makerspace managers at Western University. OSE Marlin v18.10 works for printing with new printer. Successfully printed base layer of a file.  It seems that the extruder may have jammed.  Will check again as soon as possible. LIA students continue to develop their FreeCAD skills and are able to design parts in parallel according to a spacial plan and assemble them into a larger model. Installed OSE Linux on laptop now with a new old-school 1TcB hard drive. OSE Linux did not recognise the card reader; everything else seems to work very well. &amp;lt;strong&amp;gt;Note: Stepper motors on y axis of D3D became alarmingly hot after about 15 minutes of printing.&amp;lt;/strong&amp;gt; Perhaps this is a configuration issue; may need to resolve this before allowing the printer to do a full print.&lt;br /&gt;
&lt;br /&gt;
=December 7, 2018= &lt;br /&gt;
Using OSE Ubuntu on laptop with fried SSD. Internet has connection through ping but does not display pages in Chromium. D3D Marlin recent version from OSE website installed in printer. Autohome produces a collision of the z axis with the extruder as by default the z probe is off the plate.  Tried to move the y axis using various commands such as G0 Y40 and G1 Y40 all of which cause the Y axis to move until it hits the maximum physically possible position. Spoke with Johann Wong about the possibility of combining an OSE Makerspace skills (Arduino, CAD, etc.) + 3D printer workshop with Human Innovation PIE&#039;s soft skills innovation workshop through the London International Academy Foundation. Was using wrong Marlin file for D3D printer - will try correct one asap. Suggestions for D3D: use zip ties and clothespin springs for tensioning belts.  This has worked exceptionally well and reliably for our Chinese Prusa derivative; the belts have needed nearly no attention in three years.&lt;br /&gt;
&lt;br /&gt;
=December 6, 2018=&lt;br /&gt;
Was about to test print on OSE D3D when SSD crashed.  Did Ubuntu fry it?  Researching this.&lt;br /&gt;
&lt;br /&gt;
=December 5, 2018=&lt;br /&gt;
Introduced the OSE design challenge to OSE Club students at London International Academy.&lt;br /&gt;
&lt;br /&gt;
=December 4, 2018= &lt;br /&gt;
Held an informal Introduction to Arduino Workshop at London International Academy to help two grade 11 students with a project.  Spoke with Marcin about plans for the OSE design challenge, OSE club and possibility of a summer camp at FeF in May or June of 2019.&lt;br /&gt;
&lt;br /&gt;
=December 2, 2018=&lt;br /&gt;
 Created a document outlining a framework for OSL - Open Source London and shared it on Google Docs; visited Charlie to discuss the document.&lt;br /&gt;
&lt;br /&gt;
=November 29, 2018=&lt;br /&gt;
 Introduced OSE 3D Printer and Prusa i3 3D printer to parents and students at a local French Immersion school - PAFI.  Designed and printed various models using Blender and Repetier.&lt;br /&gt;
&lt;br /&gt;
=November 28, 2018=&lt;br /&gt;
*Updated OSECartCoin with letters. &lt;br /&gt;
**[[File:PAFI.stl]]&lt;br /&gt;
**[[File:PAFI.fcstd]]&lt;br /&gt;
*Call with Marcin regarding &#039;&#039;&#039;[[LIA OSE Club]]&#039;&#039;&#039;&lt;br /&gt;
*Build from last week - [https://www.facebook.com/groups/398759490316633/permalink/963594880499755/]&lt;br /&gt;
&lt;br /&gt;
=November 27, 2018=&lt;br /&gt;
Wrote the suggested intro to Marcin&#039;s next TED talk: [[Marcin&#039;s Next TED Talk]]&lt;br /&gt;
=November 26, 2018=&lt;br /&gt;
Uploaded FeF Brick Press Fabrication video from July 29, 2011 - [https://youtu.be/LwW8sOUO00s]&lt;br /&gt;
&amp;lt;p&amp;gt;Uploaded video of the &amp;quot;Cluckaphone&amp;quot; - July 29, 2011 - [https://www.youtube.com/watch?v=PNOhZX7ftLk&amp;amp;feature=youtu.be]&lt;br /&gt;
Call with Marcin, Catarina and Charlie - OSE Planning&lt;br /&gt;
&lt;br /&gt;
=November 25, 2018=&lt;br /&gt;
Consultation about the establishment of an OSE Club at London International Academy and future directions for the development of OSE Clubs and Makerspaces.&lt;br /&gt;
&lt;br /&gt;
=November 24, 2018=&lt;br /&gt;
We made an OSE Cart Coin with FreeCAD &lt;br /&gt;
Here are the files for OSE Cart Coin v0.1:&lt;br /&gt;
[[File:OSECartCoin.fcstd]]&lt;br /&gt;
[[File:OSECartCoin.stl]]&lt;br /&gt;
Attended Marcin&#039;s presentation entitled &amp;quot;Education for the Open Source Economy&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=November 23, 2018=&lt;br /&gt;
Built a an OSE 3D printer at London International Academy&lt;br /&gt;
&lt;br /&gt;
=November 23-25=&lt;br /&gt;
Attended first OSE Professional Development workshop at London International Academy with Charles Freer, Pascal Gingras, Marcin and Catarina.&lt;br /&gt;
&lt;br /&gt;
=November 18-22= &lt;br /&gt;
Prepared for the visit of Marcin and Catarina to London.&lt;br /&gt;
&lt;br /&gt;
=November 17, 2018=&lt;br /&gt;
Conversation about OSE development with Charlie.  In particular, discussion about education and its relationship to developing the capacity to lead a meaningful and productive life. Reference to overlap of Baha&#039;i means and principles with those of the OSE - elimination of the extremes of wealth and poverty, building capabilities in a population, individual agency and initiative within a systematically evolving framework, etc.&lt;br /&gt;
&lt;br /&gt;
=November 16, 2018=&lt;br /&gt;
*Received US $5000 Shuttleworth Foundation Flash Grant&lt;br /&gt;
*Conference call with Marcin and Charles Freer regarding Marcin and Catarina&#039;s upcoming visit to London, Ontario&lt;br /&gt;
&lt;br /&gt;
=November 15, 2018=&lt;br /&gt;
Engineering Club students designed and printed a part to add to the Lyman Filament Extruder repository - a bracket for a rocker switch&lt;br /&gt;
&lt;br /&gt;
[[File:SwitchBracket2.png]]&lt;br /&gt;
[[File:Switchbase2.stl]]&lt;br /&gt;
[[File:SwitchBracket.FCStd]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=May, 2012=&lt;br /&gt;
Started project to build metric version of OSE CEB Press in Nanjing, China&lt;br /&gt;
&lt;br /&gt;
=April, 2012=&lt;br /&gt;
Began 3D Printing project in physics class at London International Academy&lt;br /&gt;
&lt;br /&gt;
=July, 2011-October, 2018=&lt;br /&gt;
Many things happened including severe neglect of the OSE wiki&lt;br /&gt;
Some highlights:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Regular incorporation of OSE concepts into classes and presentations 2011-present&lt;br /&gt;
*May, 2013 - started collaboration with Human InnovationPIE, a London non-profit organization focused on providing soft skills education for innovation.&lt;br /&gt;
*April, 2014 - Recognized in local paper for 3D Printer build with students&lt;br /&gt;
*July, 2015 - Asked to start STEM program at London International Academy further to success and popularity of 3D printer project&lt;br /&gt;
*September, 2015 - Began building Farmbot with students&lt;br /&gt;
*January, 2017 - Began teaching an Introduction to STEM course at Western University with significant OSE-based content.&lt;br /&gt;
&lt;br /&gt;
=July 16, 2011=&lt;br /&gt;
Arrived at Factor e Farm with Haydar Neal&lt;br /&gt;
&lt;br /&gt;
=March,  2011=&lt;br /&gt;
Saw TED Talk and wrote away to Marcin immediately&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=225740</id>
		<title>William Neal Log</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=225740"/>
		<updated>2020-06-21T19:26:02Z</updated>

		<summary type="html">&lt;p&gt;Wneal: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{RightTOC}}&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;600&amp;quot; height=&amp;quot;600&amp;quot; src=&amp;quot;https://osedev.org/wiki/William?start=2/1/2017&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
=Monday June 1 - Sunday June 21=&lt;br /&gt;
[https://www.youtube.com/watch?v=G72eEatmIX0&amp;amp;t=10s ALT-L Introduction Video] ALT-L is presented as a preliminary step in developing an entire school curriculum based on the idea of coherence and connection. There is a potential to link this project to a wider set of Open Source Ecology workshops that consider an entirely different approach to the education system.&lt;br /&gt;
=Saturday May 9 - Sunday May 31=&lt;br /&gt;
More work on [https://drive.google.com/drive/folders/14da63JcyEaM5CfdXjSi5G1Vll_hHTj9k?usp=sharing ALT-L] - &amp;quot;Alternative Learning&amp;quot; - Accelerated math and computer programming course for secondary school students.&lt;br /&gt;
[https://youtu.be/xjL4-1S7Was Youtube video on use of Spreadsheets in FreeCAD]&lt;br /&gt;
 &lt;br /&gt;
=Wednesday May 6-Friday May 8=&lt;br /&gt;
[[Open Source Collaboration Mini Course]]&lt;br /&gt;
Call with Marcin - August Remote Camp.&lt;br /&gt;
https://wiki.opensourceecology.org/wiki/Andreas_Log#Thur-Fri_Apr_23-4.2C_2020&lt;br /&gt;
https://wiki.opensourceecology.org/wiki/Test&lt;br /&gt;
https://wiki.opensourceecology.org/wiki/OSE_Collaboration_Protocol&lt;br /&gt;
=Friday March 27 - Tuesday May 5=&lt;br /&gt;
Worked on &amp;quot;[https://docs.google.com/document/d/1_5LJo8GXV5Ct1f57bD4fB8xC0wyT9iANtgPVj-Dev0M/edit?usp=sharing ALT-L],&amp;quot; an accelerated mathematics and computer programming curriculum for secondary school students. The course is under development [https://drive.google.com/drive/folders/14da63JcyEaM5CfdXjSi5G1Vll_hHTj9k?usp=sharing here] with two groups of students from eight countries meeting twice weekly over Zoom. Created a related [https://docs.google.com/document/d/1QXsDVR2iXecT_T-NM8DEwA4o-Yh6eCNfLf4ze8VFVyM/edit?usp=sharing training manual] for the Guyana Prison system using open source technologies such as Linux and Python.&lt;br /&gt;
&lt;br /&gt;
=Sunday February 16 - Thursday March 26=&lt;br /&gt;
Work on OSE Challenging due to work, community and global crisis. &lt;br /&gt;
=Friday February 14 - Saturday February 15=&lt;br /&gt;
Personal Build Wishlist - Continued&lt;br /&gt;
=Friday February 7 - Thursday February 13=&lt;br /&gt;
[https://docs.google.com/document/d/11DUqroMKjpKGh2WxIpkJfl5HaPJJzIl8uK6saErtpgs/edit?usp=sharing William Neal Personal Build Wishlist] - Still under development&lt;br /&gt;
&lt;br /&gt;
=Monday, December 2 - Thursday Feb. 6, 2020=&lt;br /&gt;
End of semester disruption; start of semester disruption - a huge amount of time and effort spent on paperwork instead of education. Start of FRC robotics season. Start of computer programming and computer engineering classes. &lt;br /&gt;
=Saturday November 30 - Sunday December 1=&lt;br /&gt;
Finished OSE Prusa Build in Guyana. Used [https://www.repetier.com/documentation/repetier-firmware/ Repetier Firmware] and [https://www.repetier.com/ Repetier Host] to control the printer.&lt;br /&gt;
=Thursday November 28 - Friday November 29=&lt;br /&gt;
Workshop with the Guyana Prison Service - 12 prison staff from five facilities in Guyana. Reactivated 6 discarded computers using Ubuntu and OSE Linux. [[Introduction to Python]]. [https://m.facebook.com/groups/398759490316633?view=permalink&amp;amp;id=1215623975296843 OSE Prusa Build]&lt;br /&gt;
&lt;br /&gt;
=Saturday November 23  Wednesday November 27=&lt;br /&gt;
Workshop in Guyana with the Guyana Prison Service: The CSSP Project.  This project aims to replace the current model of prison management with an approach based on human nobility, education and rehabilitation.&lt;br /&gt;
=Thursday November 28=&lt;br /&gt;
[[OSE Linux]] - we got six old computers working on Ubuntu using flash drives.  Tomorrow will have an Open Source software workshop using OSE Linux on USB drives. We will use Python, FreeCAD, LibreOffice, etc. Showed the TED talk to our group of 12 prison officers from five facilities in Guyana.&lt;br /&gt;
&lt;br /&gt;
=Saturday November 2 - Friday November 22=&lt;br /&gt;
Worked on the [[OSE Prusa]] in order to support the establishment of a STEM centre in Trinidad and Tobago and to prepare for a workshop with the Government of Guyana.&lt;br /&gt;
#Items in a numbered list&lt;br /&gt;
#More Items&lt;br /&gt;
##Yet More&lt;br /&gt;
*Items in a bullet list&lt;br /&gt;
*More Items&lt;br /&gt;
**Yet More&lt;br /&gt;
&lt;br /&gt;
=Thursday October 24 - Friday November 1=&lt;br /&gt;
*Tested printing on the London replication of the D3D printer for the first time.&lt;br /&gt;
*Team of 9 students from Western university preparing a project around OSE - D3D replication + filament extruder replication + Chinese Reprap Prusa i3 reverse engineering.&lt;br /&gt;
=Sunday October 12 - Wednesday October 23=&lt;br /&gt;
*Updated some files used in the simple extruder build [https://wiki.opensourceecology.org/wiki/Simple_3D_Printer_Extruder#CAD here.]&lt;br /&gt;
&lt;br /&gt;
=Friday October 4 - Saturday October 11=&lt;br /&gt;
*Successfully tested D3D simple extruder based on Chinese Prusa i3.&lt;br /&gt;
*D3D challenge - Y axis end stop stopped working...&lt;br /&gt;
*Almost finished replicating first of two D3D printers in London Ontario.&lt;br /&gt;
*Preparing a D3D / Brushless motor workshop for the Guyana Prison Service. &lt;br /&gt;
*FreeCAD activity completed at Western University - varied response of individuals in the groups - the allocated time was too short. &lt;br /&gt;
=Friday September 27 - Thursday October 3=&lt;br /&gt;
*Continued work on D3D build.&lt;br /&gt;
*Experimenting with highly differentiated instruction unconstrained by government curricular concerns - our STEM club&#039;s three sections - Robotics / Computers and CAD / STEM projects have each gradually evolved over the last several weeks such that small groups of 1-4 students specialize on special tasks.&lt;br /&gt;
*Introduced FreeCAD to a group of junior youth from a local neighborhood. After about 40 minutes each group of two participants completed a motor rotor design.&lt;br /&gt;
*Second FreeCAD session with a group of 40 teacher candidate students at Western University&#039;s Althouse. Also used highly differentiated / interdisciplinary instruction with this group. After one hour and a half, most groups were able to generate several parts of a brushless motor and begin the process of parameterizing with a spreadsheet and creating an assembly.  Some trained engineers in the crowd generated excellent &amp;quot;propellers&amp;quot; for the motor using advanced features.&lt;br /&gt;
&lt;br /&gt;
=Tuesday, September 1 - Thursday, September 26=&lt;br /&gt;
*New School Year - over 40 students participating in our special STEM/Business/Arts program.&lt;br /&gt;
*Two sections of our program, STEM Projects and Computer Programming/CAD,  include OSE-related topics:&lt;br /&gt;
**Building 3D printers&lt;br /&gt;
**3D-printing&lt;br /&gt;
**OSE Motor design and fabrication&lt;br /&gt;
**Filament extruder&lt;br /&gt;
**CAD&lt;br /&gt;
*Building a 3D printer in collaboration with Bill Phelan, Vice President of Die-X Ltd.&lt;br /&gt;
*Remote collaboration with Branko Misovic in Holland.&lt;br /&gt;
*Preparing for a two-week 3D-printer build / open source hardware workshop in Guyana in November.&lt;br /&gt;
*Working on simple extruder for the D3D printer.&lt;br /&gt;
*Some 3D-printed parts for the D3D printer are not precise enough as they were printed with 1.0mm and 0.8mm nozzles.  We are switching to a 0.4mm nozzle and re-printing.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 27 - Monday September 1=&lt;br /&gt;
*Preparation for STEM camps in China. &lt;br /&gt;
*Travel to China.  Caught behind firewall - Internet was actually a large Intranet - difficult to post, communicate or access any useful sites. &lt;br /&gt;
*STEM Camp at Fujing Foreign language school - 10 days - 60 students, 1.5 hours daily - worked on FreeCAD and the OSE motor. &lt;br /&gt;
*Built OSE D3D printer with eight 9-11 year-old students (10 days, 3 hours daily) at EIC Education in Shenzhen.  The students assembled the axes and helped design some custom 3D-printed brackets for the frame which had to be made out of linear rail. The students learned FreeCAD and were able to design useful parts. Ganesh Ramsahai provided support in completing the build and configuration process. Presented the OSE D3D Shenzhen to the EIC Education Group with a half-hour overview and offer to provide remote support.&lt;br /&gt;
*STEM Camp at Zhangjiagang Foreign Language School in Jiangsu province. 30 students, 3 days, 6 hours per day.  Introduced FreeCAD and had the students design rotors and stators for the OSE brushless motor.&lt;br /&gt;
*Showed the TED talk to four different groups.&lt;br /&gt;
*Uploaded raw FreeCAD and stl files from the camps at Fujing Foreign Language School and Zhangjiagang Foreign Language School to [https://drive.google.com/open?id=1K7U8lEGqRgxwQf-WNX1Llbf-WE7LJCqL Google Drive]&lt;br /&gt;
*Uploaded [https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH custom files] generated during the build of the D3D 19.08 Shenzhen.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 20 - Friday July 26=&lt;br /&gt;
LIA summer STEM camp continued with 38 different students from Shenzhen, China.  The students discussed, in the context of Marcin&#039;s TED Talk, the concept that the human mind, focused and in collaboration with others, has the power to make positive changes in society.  Design of covers and caps for the OSE radial motor. Photos from the STEM Camp activities are [https://photos.app.goo.gl/zcpKk8jaFcDon31K7 here].  Trying to find the USB where we collected all the FreeCAD files.  These will be posted ASAP.&lt;br /&gt;
&lt;br /&gt;
=Monday July 15 - Friday July 19=&lt;br /&gt;
LIA summer STEM camp with 23 students from Vietnam and China. OSE Motor project part II - designing, printing and testing a radial motor. The motor concept was based on the following video: [https://www.youtube.com/watch?v=JkwLpAAfBVI 3D-Printed Axial Brushless Motor for Drones] Students were presented with the concept and asked to design such a motor from scratch using two rotors with eight disc magnets each and two sets of six wire loops.&lt;br /&gt;
&lt;br /&gt;
=Wednesday July 10 - Sunday July 14=&lt;br /&gt;
Preparation for summer STEM Camps at LIA.  Prepared 3D printers.  Began replication of two D3D v19.06 units.&lt;br /&gt;
=Friday June 28 - Tuesday July 9= &lt;br /&gt;
Open Source Ecology Microfactory STEAM Camp&lt;br /&gt;
=Thursday June 27=&lt;br /&gt;
Titan Aero finally working better with 1.5 full turns + a little bit more for good measure - has not jammed all afternoon now - three parts printed.  Logistics for Microfatory STEAM Camp - rented a vehicle and contacted a few participants. A prototype of the OSE extruder has been nearly completed. The extruder gear is scheduled to arrive at Factor e Farm by tomorrow. Then it will be ready for testing.  [https://photos.app.goo.gl/fWUX8ynAdqcn6Fvs6 OSE D3D Extruder - Photo Album][https://drive.google.com/open?id=17BLyvyk1EbrMOhkCfeSwByAq86SemSLX Files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 25 - Wednesday June 26=&lt;br /&gt;
OSE D3D Extruder.  Worked on attaching extruder to X-axis. Ordered extruder motor gears to arrive at FeF on Friday. Printed out bracket 1 successfully. Working on large aluminium block and designing x-axis adapter.&lt;br /&gt;
=Monday June 24=&lt;br /&gt;
Discussion about design of OSE Power Electronics. Problem - transformers are expensive and inflexible. Solution - research the feasibility of creating a 120V buck converter.  Would it be sufficiently efficient and would it be feasible to build?  Here are some potential parts to use: [https://www.digikey.ca/product-detail/en/comchip-technology/GBPC5010W-G/641-1389-ND/2074854 1kV Recifier] [https://www.digikey.ca/product-detail/en/ixys/IXFX120N65X2/IXFX120N65X2-ND/5629498?utm_adgroup=&amp;amp;mkwid=sFMkJ49os&amp;amp;pcrid=311971049444&amp;amp;pkw=&amp;amp;pmt=&amp;amp;pdv=c&amp;amp;productid=5629498&amp;amp;slid=&amp;amp;gclid=EAIaIQobChMIgbDd1fSC4wIVwkOGCh1f8gijEAQYAyABEgJGffD_BwE 650V MOSFET].  One problem seems to be that there may be a high level of energy loss in the circuit....[https://www.digikey.com/product-detail/en/everlight-electronics-co-ltd/H11L1S-TA/1080-1201-1-ND/2675935 Optocoupler] (to isolate the Arduino)[http://fpec.ucf.edu/teaching/EEL%205245%20Lectures/Lecture13%20Chapter4_BoostandBuckBoost_CCM_Analysis.pdf Some background theory]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 19 - Sunday June 23=&lt;br /&gt;
DIY Buck Converter based on the following video (and others): https://www.youtube.com/watch?v=L5oeY53pE0E&amp;amp;t=162s. [https://photos.app.goo.gl/kkHUwBQtD7h48mhB6 Photos.] All four 3D printers are down.  A crucial piece of the extruder of the most reliable printer finally broke. CAD already done for the replacement part. Got the OSE D3D working again on Friday.  Ready for printing on Monday - will print replacement part for other printer.  Other 2 printers almost working...&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 18=&lt;br /&gt;
[https://www.pythonpowerelectronics.com/ Python Power Electronics]&lt;br /&gt;
=Thursday June 13 - Monday June 17=&lt;br /&gt;
Buck Converters. OSE [[Power Electronics]] research. Arduino as controller of Power electronics - frequency issues / limitations. Scalability of Power electronics - can we add modular components to increase voltage, current, etc.?  &lt;br /&gt;
=Tuesday June 11 - Wednesday June 12=&lt;br /&gt;
Completed and sent CAD Drawings for OSE 3D Printer. Spent most of Wednesday working through a jam on the Titan Aero - it has jammed more in a few days than our other extruder has jammed in over three years.&lt;br /&gt;
=Monday June 10=&lt;br /&gt;
[https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH FreeCAD Drawings] for OSE 3D Printer. Note the use of parametric design in the CAD files - Spreadsheet values become variables used in constraint dimensions.&lt;br /&gt;
The following is my most recent FreeCAD Parametric Part Design and Drawing Workflow:[[FreeCAD Workflow]]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 5 - Sunday June 9=&lt;br /&gt;
[https://www.youtube.com/watch?v=CEhBN5_fO5o|DC-DC Buck Converters]&lt;br /&gt;
Power Supply: Transformer + Buck Converter + Ripple Smoothing Circuitry&lt;br /&gt;
=Tuesday June 4=&lt;br /&gt;
*[[Arduino Controlled Power Supply]] - ordered many components.&lt;br /&gt;
*Many electronic components specified in DIY articles and videos are now listed as obsolete.  Finding replacement parts is not easy. Case in point: LM338K Linear Voltage Regulators - Listed as obsolete on the Mouser website and selling for $91 or more on the Digi-key website.&lt;br /&gt;
*[https://www.eetimes.com/document.asp?doc_id=1333695# Article about obsolescence and demand and supply issues in the electronics industry]&lt;br /&gt;
&lt;br /&gt;
=Saturday June 1 - Monday June 3=&lt;br /&gt;
Reviewed [[OSE Design Guides]] Reviewed [[DIY Semiconductors]] Microfactory STEAM Camp Critical Path [[Arduino Controlled Power Supply]] Fabrication of aluminium blocks for hot end for OSE 3D printer extruder. Parametric modelling in FreeCAD.&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 28 - Friday May 31=&lt;br /&gt;
[[Halbach Array Brushless Motor]]&lt;br /&gt;
&lt;br /&gt;
=Monday May 27= &lt;br /&gt;
[https://www.youtube.com/watch?v=uOQk8SJso6Q How to Control an ESC with an Arduino] [https://photos.app.goo.gl/HMvWbigvuw3S26YG8 Test of the OSE Motor].&lt;br /&gt;
&lt;br /&gt;
=Friday May 24 - Sunday May 26= &lt;br /&gt;
Not all that much.&lt;br /&gt;
=Thursday May 23=&lt;br /&gt;
Thank you to Marcin and Catarina for a refreshing, enlightening and enjoyable visit to Factor e Farm and the Seed Ecohome. Returned to London.&lt;br /&gt;
=Wednesday May 22=&lt;br /&gt;
Skype appointment - 12pm Missouri time - friend in Colombia. Uploaded FreeCAD files for D3D v19.04 Power Plug Case to Wiki. [https://en.wikipedia.org/wiki/Buck_converter Buck Converter]&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 21=&lt;br /&gt;
[https://www.powerelectronicsnews.com/problems-solutions/power-supply-design-tutorial Power Supply Design Tutorial] Edited the [https://docs.google.com/document/d/1_3t_97giFOtqJ4ExPZdYeVEilCRhMmu0IWLLpBCrG-0/edit?usp=sharing Video Script] &lt;br /&gt;
Contacted STEM people in Nigeria and Pennsylvania based on the OSE STEAM Camp posted in this [https://www.facebook.com/groups/822455171229260/ Facebook Forum]&lt;br /&gt;
Further communication with friends in Mexico regarding the STEAM camp. Contacted a friend of a friend in Kansas City - Baha&#039;i Community.&lt;br /&gt;
&lt;br /&gt;
=Monday May 20=&lt;br /&gt;
Posted Microfactory STEAM camp on several Facebook STEM/STEAM Education pages. [[The Living Curriculum]] [https://github.com/MarlinFirmware/Marlin/issues/8903 Marlin Bed Temperature Settings] Worked on the Titan-Aero extruder repairs. The two parts of the extruder tube must be fairly tight (but not too tight!) to avoid leakage.&lt;br /&gt;
&lt;br /&gt;
=Sunday May 19=&lt;br /&gt;
Printing ABS using the OSE D3D - Set the bed temperature to 83 and the nozzle temperature to 255.  After 5 minutes of printing, several layers were adhering well. Thermal runaway. Tried 80 and 244; thermal runaway again. Joined several online STEM/Education groups.&lt;br /&gt;
&lt;br /&gt;
=Saturday May 18=&lt;br /&gt;
[[OSE Revenue Generation]] - Grameen Bank / Social Business - [[OSE Curriculum]]&lt;br /&gt;
&lt;br /&gt;
=Friday May 17=&lt;br /&gt;
[[OSE STEM Camp Marketing Strategy]]&lt;br /&gt;
=Friday May 10 - Thursday May 16= &lt;br /&gt;
Preparation for trip to Factor e Farm - gathered supplies - PCB boards, glossy paper, wire, magnets, electronic components, hardware, etc. Arrival at Factor e Farm. Work on D3D v. 19.04: [Photos - OSE D3D v19.04 Build at FeF https://www.facebook.com/photo.php?fbid=10161819908970597&amp;amp;set=pcb.1063740287151880&amp;amp;type=3&amp;amp;theater&amp;amp;ifg=1]&lt;br /&gt;
 &lt;br /&gt;
=Friday April 12 - Thursday May 9=&lt;br /&gt;
[https://drive.google.com/open?id=1-DpgMCARsA5iz4JLZtUeP3SD4a3UrXhj OSE Motor Completed] - ready for testing - Open Source Chinese Prusa i3 Printer Extruder - Configured and began printing with OSE D3D - printing very well at the moment - Booked a flight to Kansas City - heading to Factor e Farm soon!&lt;br /&gt;
&lt;br /&gt;
=Monday March 4 - Thursday April 11=&lt;br /&gt;
FRC Robotics - Ryerson University, Western University. OSE Motor - students have made some progress: [https://drive.google.com/open?id=1n99XWM8KMwvnV-tCmcWjImsBG27ReRSc OSE Brushless Motor] Additional work on the [[Simple 3D Printer Extruder]]&lt;br /&gt;
&lt;br /&gt;
=Sunday March 3=&lt;br /&gt;
Completed the first model of the most difficult part to CAD in the extruder - the X-Axis bracket.  Will now print CAD files and measure their accuracy before making changes to the CAD parameters.  Hopefully this process will result in more accurate parts.&lt;br /&gt;
&lt;br /&gt;
=Friday March 1 - Saturday March 2 =&lt;br /&gt;
Further work on open sourcing Chinese Prusa i3 3D printer extruder.&lt;br /&gt;
&lt;br /&gt;
=Monday February 18 - Thursday February 28=&lt;br /&gt;
Began the process of open-sourcing our 3D printer extruder: [[Simple 3D Printer Extruder]] (see photos and CAD files in the 3D Printer Folder) &lt;br /&gt;
Started a new unit in Computer Engineering Technology class.  Two groups of students are working on OSE materials:  &lt;br /&gt;
#The OSE Collaborative Contest&lt;br /&gt;
#The OSE Filament Extruder&lt;br /&gt;
&lt;br /&gt;
=Saturday February 9-Sunday February 17=&lt;br /&gt;
Hosted a group of six STEM students from School of the Nations in Georgetown, Guyana. STEM Camp at London International Academy.  Introduced the concept of the OSE collaborative contest. Introductory FreeCAD activities. Introduced Python computer programming.  Printed out various parts for an open source brushless motor.  [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX Link to CAD Files] (see School of the Nations sub-folder)[[file:Rotor.jpg|200px]] [http://guyanachronicle.com/2019/02/17/nations-benefits-from-robotics-training-in-canada Article in Guyana Chronicle]&lt;br /&gt;
&lt;br /&gt;
=Wednesday February 6= &lt;br /&gt;
[[OSE Coopetition]].  Discussed wiki + part library + documentation of OSE Coopetition.&lt;br /&gt;
&lt;br /&gt;
=Monday February 4=&lt;br /&gt;
Uploaded version 0.1 of the OSE Collaborative Contest Rules to [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest]&lt;br /&gt;
=Wednesday January 30 - Sunday February 3=&lt;br /&gt;
FRC Build season.  [https://drive.google.com/drive/folders/1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH?usp=sharing Team 6162 Cap Alpaca FreeCAD files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday January 29=&lt;br /&gt;
Collected FreeCAD files in a Google drive folder: [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest] &lt;br /&gt;
Summary of Nanjing group&#039;s schedule: [https://docs.google.com/document/d/1R-Dtu3kdZ0u8Qo5w3_vDuNEg5myr8mUmLjSpPOf-HoI/edit?usp=sharing | 2019 Winter Camp]&lt;br /&gt;
Here is some sample work from the FreeCAD workshop:&lt;br /&gt;
*[[File:ReyJessica.png|200px]]&lt;br /&gt;
*[[File:ZJHLSR.png|200px]]&lt;br /&gt;
&lt;br /&gt;
=Sunday January 27 - Monday January 28=&lt;br /&gt;
Discussed record keeping, file sharing and other skills for collaborative literacy. Created a sample page stub: [[Brushless Motor Design]].  Asked students to reflect on sessions learning FreeCAD.  Found that it is not necessary to learn a whole lot about FreeCAD in order to get students learning it.  Demonstrated two sample FreeCAD 0.17 design processes:&lt;br /&gt;
#Design a part like a motor adapter: body - sketch a circle - pad - sketch on a surface - pocket&lt;br /&gt;
#Design a sketch with constraints - some straight lines and some arcs closed in a loop with particular dimensions and angles.&lt;br /&gt;
After that, students were directed to Youtube videos that covered specific additional skills: &lt;br /&gt;
*Threading - inner and outer&lt;br /&gt;
*Polar patterns&lt;br /&gt;
Through this process, I learned how to do these skills from some students and was able to show other students the same, especially with polar patterns.&lt;br /&gt;
&lt;br /&gt;
=Sunday January, 20 - Saturday January 26, 2019=&lt;br /&gt;
Prepared for and welcomed 19 students from Jinling High School in China. Introduced the concept of the OSE Collaborative Contest.  Marcin spoke with the group over Jitsi on Thursday and on Saturday and proposed that the students participate in the OSE Collaborative Contest. It was well received despite the students&#039; fatigue from travel and skiing. Introduced FreeCAD and had students download and install it. Some computers do not immediately work with FreeCAD; hope that the problem may be solved. We plan to further discuss the students&#039; participation in the contest tomorrow and 3D print some of their early FreeCAD work on Monday. Created a link to LIA students&#039; FreeCAD work.  Currently the folder is being used for FRC preparation.  After the FRC robot is built, we are planning to transition to OSE-related work in this folder: [https://drive.google.com/open?id=1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH LIA OSE Club CAD Files]&lt;br /&gt;
&lt;br /&gt;
=Thursday January 10 - Saturday Jan 19, 2019=&lt;br /&gt;
Heaviest schedule of the year - January and February; progress slower during this time. Working on STEM Curriculum for FeF STEM Camps - [[Summer School 2019]].&lt;br /&gt;
&lt;br /&gt;
=Wed Jan 9, 2019=&lt;br /&gt;
*Use a presentation - template - make a copy - pass this to Heydar - document the simple 3D printing extruder for a low cost 3d printer - [https://docs.google.com/presentation/d/1_kUzO4eRCqrHVpqxSSTs17oLhtikTTyYe_1NxrTKlTI/edit#slide=id.g45ed589c64_0_0]&lt;br /&gt;
*Homework: Complete STEM Curriculum&lt;br /&gt;
&lt;br /&gt;
=January 2, 2019=&lt;br /&gt;
Ordered parts for a brushless motor to be constructed as part of the contest and part of the Computer Engineering Technology class at London International Academy.&lt;br /&gt;
In order to make the collaborative contest work, we will need to create a kit of parts to be easily shipped to participating schools.&lt;br /&gt;
&lt;br /&gt;
=December 24 2018-January 1, 2019=&lt;br /&gt;
Took a break. Reflected on plans for OSE London / OSE Club at London International Academy / OSE Collaborative Contest&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=December 23, 2018=&lt;br /&gt;
Defined particulars of [[OSE STEM Camps]].&lt;br /&gt;
&lt;br /&gt;
=December 22,2018=&lt;br /&gt;
[[William Conversation | Conversation with Marcin]]. Research on OSE Club Activities. Planning for winter semester courses&#039; links to OSE - Computer Engineering Technology and Computer Science. Plans to do the following in Computer Engineering Technology: build a brushless motor and ESC from scratch. Computer Science: Programming projects related to OSE - simulation program? Western University Introduction to STEM Class - offer the OSE Competition as a choice for a final project - help administer / judge / communicate / etc.&lt;br /&gt;
&lt;br /&gt;
=December 12-21, 2018=&lt;br /&gt;
Exams and marking - excellent ways to hinder educational progress. Discussed Canadian bill of materials with Russ Purvis. Discussed the upcoming OSE workshop in Prince George, BC currently in the planning phase. Several phone conversations with Charlie. Worked on some particulars for the upcoming OSE competition in January. Contacted a teacher in Iran to invite her to join the competition with her students. Sent a letter of reference to Russ with respect to hosting an OSE workshop.&lt;br /&gt;
&lt;br /&gt;
=December 8-11, 2018=&lt;br /&gt;
Spoke with Charlie about development of OSE workshops.  Spoke with Marcin and Catarina about the same. Updated Marcin about development of OSE club at London International Academy.  We now have plans to include at least four schools in our first design challenge - School of the Nations in Guyana, Fujing Foreign Language School in Shenzhen and Jinling School in Nanjing. Was approached by a friend to contact Makerspace managers in St. Thomas and Toronto. Arranged a meeting with the makerspace managers at Western University. OSE Marlin v18.10 works for printing with new printer. Successfully printed base layer of a file.  It seems that the extruder may have jammed.  Will check again as soon as possible. LIA students continue to develop their FreeCAD skills and are able to design parts in parallel according to a spacial plan and assemble them into a larger model. Installed OSE Linux on laptop now with a new old-school 1TcB hard drive. OSE Linux did not recognise the card reader; everything else seems to work very well. &amp;lt;strong&amp;gt;Note: Stepper motors on y axis of D3D became alarmingly hot after about 15 minutes of printing.&amp;lt;/strong&amp;gt; Perhaps this is a configuration issue; may need to resolve this before allowing the printer to do a full print.&lt;br /&gt;
&lt;br /&gt;
=December 7, 2018= &lt;br /&gt;
Using OSE Ubuntu on laptop with fried SSD. Internet has connection through ping but does not display pages in Chromium. D3D Marlin recent version from OSE website installed in printer. Autohome produces a collision of the z axis with the extruder as by default the z probe is off the plate.  Tried to move the y axis using various commands such as G0 Y40 and G1 Y40 all of which cause the Y axis to move until it hits the maximum physically possible position. Spoke with Johann Wong about the possibility of combining an OSE Makerspace skills (Arduino, CAD, etc.) + 3D printer workshop with Human Innovation PIE&#039;s soft skills innovation workshop through the London International Academy Foundation. Was using wrong Marlin file for D3D printer - will try correct one asap. Suggestions for D3D: use zip ties and clothespin springs for tensioning belts.  This has worked exceptionally well and reliably for our Chinese Prusa derivative; the belts have needed nearly no attention in three years.&lt;br /&gt;
&lt;br /&gt;
=December 6, 2018=&lt;br /&gt;
Was about to test print on OSE D3D when SSD crashed.  Did Ubuntu fry it?  Researching this.&lt;br /&gt;
&lt;br /&gt;
=December 5, 2018=&lt;br /&gt;
Introduced the OSE design challenge to OSE Club students at London International Academy.&lt;br /&gt;
&lt;br /&gt;
=December 4, 2018= &lt;br /&gt;
Held an informal Introduction to Arduino Workshop at London International Academy to help two grade 11 students with a project.  Spoke with Marcin about plans for the OSE design challenge, OSE club and possibility of a summer camp at FeF in May or June of 2019.&lt;br /&gt;
&lt;br /&gt;
=December 2, 2018=&lt;br /&gt;
 Created a document outlining a framework for OSL - Open Source London and shared it on Google Docs; visited Charlie to discuss the document.&lt;br /&gt;
&lt;br /&gt;
=November 29, 2018=&lt;br /&gt;
 Introduced OSE 3D Printer and Prusa i3 3D printer to parents and students at a local French Immersion school - PAFI.  Designed and printed various models using Blender and Repetier.&lt;br /&gt;
&lt;br /&gt;
=November 28, 2018=&lt;br /&gt;
*Updated OSECartCoin with letters. &lt;br /&gt;
**[[File:PAFI.stl]]&lt;br /&gt;
**[[File:PAFI.fcstd]]&lt;br /&gt;
*Call with Marcin regarding &#039;&#039;&#039;[[LIA OSE Club]]&#039;&#039;&#039;&lt;br /&gt;
*Build from last week - [https://www.facebook.com/groups/398759490316633/permalink/963594880499755/]&lt;br /&gt;
&lt;br /&gt;
=November 27, 2018=&lt;br /&gt;
Wrote the suggested intro to Marcin&#039;s next TED talk: [[Marcin&#039;s Next TED Talk]]&lt;br /&gt;
=November 26, 2018=&lt;br /&gt;
Uploaded FeF Brick Press Fabrication video from July 29, 2011 - [https://youtu.be/LwW8sOUO00s]&lt;br /&gt;
&amp;lt;p&amp;gt;Uploaded video of the &amp;quot;Cluckaphone&amp;quot; - July 29, 2011 - [https://www.youtube.com/watch?v=PNOhZX7ftLk&amp;amp;feature=youtu.be]&lt;br /&gt;
Call with Marcin, Catarina and Charlie - OSE Planning&lt;br /&gt;
&lt;br /&gt;
=November 25, 2018=&lt;br /&gt;
Consultation about the establishment of an OSE Club at London International Academy and future directions for the development of OSE Clubs and Makerspaces.&lt;br /&gt;
&lt;br /&gt;
=November 24, 2018=&lt;br /&gt;
We made an OSE Cart Coin with FreeCAD &lt;br /&gt;
Here are the files for OSE Cart Coin v0.1:&lt;br /&gt;
[[File:OSECartCoin.fcstd]]&lt;br /&gt;
[[File:OSECartCoin.stl]]&lt;br /&gt;
Attended Marcin&#039;s presentation entitled &amp;quot;Education for the Open Source Economy&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=November 23, 2018=&lt;br /&gt;
Built a an OSE 3D printer at London International Academy&lt;br /&gt;
&lt;br /&gt;
=November 23-25=&lt;br /&gt;
Attended first OSE Professional Development workshop at London International Academy with Charles Freer, Pascal Gingras, Marcin and Catarina.&lt;br /&gt;
&lt;br /&gt;
=November 18-22= &lt;br /&gt;
Prepared for the visit of Marcin and Catarina to London.&lt;br /&gt;
&lt;br /&gt;
=November 17, 2018=&lt;br /&gt;
Conversation about OSE development with Charlie.  In particular, discussion about education and its relationship to developing the capacity to lead a meaningful and productive life. Reference to overlap of Baha&#039;i means and principles with those of the OSE - elimination of the extremes of wealth and poverty, building capabilities in a population, individual agency and initiative within a systematically evolving framework, etc.&lt;br /&gt;
&lt;br /&gt;
=November 16, 2018=&lt;br /&gt;
*Received US $5000 Shuttleworth Foundation Flash Grant&lt;br /&gt;
*Conference call with Marcin and Charles Freer regarding Marcin and Catarina&#039;s upcoming visit to London, Ontario&lt;br /&gt;
&lt;br /&gt;
=November 15, 2018=&lt;br /&gt;
Engineering Club students designed and printed a part to add to the Lyman Filament Extruder repository - a bracket for a rocker switch&lt;br /&gt;
&lt;br /&gt;
[[File:SwitchBracket2.png]]&lt;br /&gt;
[[File:Switchbase2.stl]]&lt;br /&gt;
[[File:SwitchBracket.FCStd]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=May, 2012=&lt;br /&gt;
Started project to build metric version of OSE CEB Press in Nanjing, China&lt;br /&gt;
&lt;br /&gt;
=April, 2012=&lt;br /&gt;
Began 3D Printing project in physics class at London International Academy&lt;br /&gt;
&lt;br /&gt;
=July, 2011-October, 2018=&lt;br /&gt;
Many things happened including severe neglect of the OSE wiki&lt;br /&gt;
Some highlights:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Regular incorporation of OSE concepts into classes and presentations 2011-present&lt;br /&gt;
*May, 2013 - started collaboration with Human InnovationPIE, a London non-profit organization focused on providing soft skills education for innovation.&lt;br /&gt;
*April, 2014 - Recognized in local paper for 3D Printer build with students&lt;br /&gt;
*July, 2015 - Asked to start STEM program at London International Academy further to success and popularity of 3D printer project&lt;br /&gt;
*September, 2015 - Began building Farmbot with students&lt;br /&gt;
*January, 2017 - Began teaching an Introduction to STEM course at Western University with significant OSE-based content.&lt;br /&gt;
&lt;br /&gt;
=July 16, 2011=&lt;br /&gt;
Arrived at Factor e Farm with Haydar Neal&lt;br /&gt;
&lt;br /&gt;
=March,  2011=&lt;br /&gt;
Saw TED Talk and wrote away to Marcin immediately&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=223408</id>
		<title>William Neal Log</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=223408"/>
		<updated>2020-05-31T20:41:12Z</updated>

		<summary type="html">&lt;p&gt;Wneal: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{RightTOC}}&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;600&amp;quot; height=&amp;quot;600&amp;quot; src=&amp;quot;https://osedev.org/wiki/William?start=2/1/2017&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
=Saturday May 9 - Sunday May 31=&lt;br /&gt;
More work on [https://drive.google.com/drive/folders/14da63JcyEaM5CfdXjSi5G1Vll_hHTj9k?usp=sharing ALT-L] - &amp;quot;Alternative Learning&amp;quot; - Accelerated math and computer programming course for secondary school students.&lt;br /&gt;
[https://youtu.be/xjL4-1S7Was Youtube video on use of Spreadsheets in FreeCAD]&lt;br /&gt;
 &lt;br /&gt;
=Wednesday May 6-Friday May 8=&lt;br /&gt;
[[Open Source Collaboration Mini Course]]&lt;br /&gt;
Call with Marcin - August Remote Camp.&lt;br /&gt;
https://wiki.opensourceecology.org/wiki/Andreas_Log#Thur-Fri_Apr_23-4.2C_2020&lt;br /&gt;
https://wiki.opensourceecology.org/wiki/Test&lt;br /&gt;
https://wiki.opensourceecology.org/wiki/OSE_Collaboration_Protocol&lt;br /&gt;
=Friday March 27 - Tuesday May 5=&lt;br /&gt;
Worked on &amp;quot;[https://docs.google.com/document/d/1_5LJo8GXV5Ct1f57bD4fB8xC0wyT9iANtgPVj-Dev0M/edit?usp=sharing ALT-L],&amp;quot; an accelerated mathematics and computer programming curriculum for secondary school students. The course is under development [https://drive.google.com/drive/folders/14da63JcyEaM5CfdXjSi5G1Vll_hHTj9k?usp=sharing here] with two groups of students from eight countries meeting twice weekly over Zoom. Created a related [https://docs.google.com/document/d/1QXsDVR2iXecT_T-NM8DEwA4o-Yh6eCNfLf4ze8VFVyM/edit?usp=sharing training manual] for the Guyana Prison system using open source technologies such as Linux and Python.&lt;br /&gt;
&lt;br /&gt;
=Sunday February 16 - Thursday March 26=&lt;br /&gt;
Work on OSE Challenging due to work, community and global crisis. &lt;br /&gt;
=Friday February 14 - Saturday February 15=&lt;br /&gt;
Personal Build Wishlist - Continued&lt;br /&gt;
=Friday February 7 - Thursday February 13=&lt;br /&gt;
[https://docs.google.com/document/d/11DUqroMKjpKGh2WxIpkJfl5HaPJJzIl8uK6saErtpgs/edit?usp=sharing William Neal Personal Build Wishlist] - Still under development&lt;br /&gt;
&lt;br /&gt;
=Monday, December 2 - Thursday Feb. 6, 2020=&lt;br /&gt;
End of semester disruption; start of semester disruption - a huge amount of time and effort spent on paperwork instead of education. Start of FRC robotics season. Start of computer programming and computer engineering classes. &lt;br /&gt;
=Saturday November 30 - Sunday December 1=&lt;br /&gt;
Finished OSE Prusa Build in Guyana. Used [https://www.repetier.com/documentation/repetier-firmware/ Repetier Firmware] and [https://www.repetier.com/ Repetier Host] to control the printer.&lt;br /&gt;
=Thursday November 28 - Friday November 29=&lt;br /&gt;
Workshop with the Guyana Prison Service - 12 prison staff from five facilities in Guyana. Reactivated 6 discarded computers using Ubuntu and OSE Linux. [[Introduction to Python]]. [https://m.facebook.com/groups/398759490316633?view=permalink&amp;amp;id=1215623975296843 OSE Prusa Build]&lt;br /&gt;
&lt;br /&gt;
=Saturday November 23  Wednesday November 27=&lt;br /&gt;
Workshop in Guyana with the Guyana Prison Service: The CSSP Project.  This project aims to replace the current model of prison management with an approach based on human nobility, education and rehabilitation.&lt;br /&gt;
=Thursday November 28=&lt;br /&gt;
[[OSE Linux]] - we got six old computers working on Ubuntu using flash drives.  Tomorrow will have an Open Source software workshop using OSE Linux on USB drives. We will use Python, FreeCAD, LibreOffice, etc. Showed the TED talk to our group of 12 prison officers from five facilities in Guyana.&lt;br /&gt;
&lt;br /&gt;
=Saturday November 2 - Friday November 22=&lt;br /&gt;
Worked on the [[OSE Prusa]] in order to support the establishment of a STEM centre in Trinidad and Tobago and to prepare for a workshop with the Government of Guyana.&lt;br /&gt;
#Items in a numbered list&lt;br /&gt;
#More Items&lt;br /&gt;
##Yet More&lt;br /&gt;
*Items in a bullet list&lt;br /&gt;
*More Items&lt;br /&gt;
**Yet More&lt;br /&gt;
&lt;br /&gt;
=Thursday October 24 - Friday November 1=&lt;br /&gt;
*Tested printing on the London replication of the D3D printer for the first time.&lt;br /&gt;
*Team of 9 students from Western university preparing a project around OSE - D3D replication + filament extruder replication + Chinese Reprap Prusa i3 reverse engineering.&lt;br /&gt;
=Sunday October 12 - Wednesday October 23=&lt;br /&gt;
*Updated some files used in the simple extruder build [https://wiki.opensourceecology.org/wiki/Simple_3D_Printer_Extruder#CAD here.]&lt;br /&gt;
&lt;br /&gt;
=Friday October 4 - Saturday October 11=&lt;br /&gt;
*Successfully tested D3D simple extruder based on Chinese Prusa i3.&lt;br /&gt;
*D3D challenge - Y axis end stop stopped working...&lt;br /&gt;
*Almost finished replicating first of two D3D printers in London Ontario.&lt;br /&gt;
*Preparing a D3D / Brushless motor workshop for the Guyana Prison Service. &lt;br /&gt;
*FreeCAD activity completed at Western University - varied response of individuals in the groups - the allocated time was too short. &lt;br /&gt;
=Friday September 27 - Thursday October 3=&lt;br /&gt;
*Continued work on D3D build.&lt;br /&gt;
*Experimenting with highly differentiated instruction unconstrained by government curricular concerns - our STEM club&#039;s three sections - Robotics / Computers and CAD / STEM projects have each gradually evolved over the last several weeks such that small groups of 1-4 students specialize on special tasks.&lt;br /&gt;
*Introduced FreeCAD to a group of junior youth from a local neighborhood. After about 40 minutes each group of two participants completed a motor rotor design.&lt;br /&gt;
*Second FreeCAD session with a group of 40 teacher candidate students at Western University&#039;s Althouse. Also used highly differentiated / interdisciplinary instruction with this group. After one hour and a half, most groups were able to generate several parts of a brushless motor and begin the process of parameterizing with a spreadsheet and creating an assembly.  Some trained engineers in the crowd generated excellent &amp;quot;propellers&amp;quot; for the motor using advanced features.&lt;br /&gt;
&lt;br /&gt;
=Tuesday, September 1 - Thursday, September 26=&lt;br /&gt;
*New School Year - over 40 students participating in our special STEM/Business/Arts program.&lt;br /&gt;
*Two sections of our program, STEM Projects and Computer Programming/CAD,  include OSE-related topics:&lt;br /&gt;
**Building 3D printers&lt;br /&gt;
**3D-printing&lt;br /&gt;
**OSE Motor design and fabrication&lt;br /&gt;
**Filament extruder&lt;br /&gt;
**CAD&lt;br /&gt;
*Building a 3D printer in collaboration with Bill Phelan, Vice President of Die-X Ltd.&lt;br /&gt;
*Remote collaboration with Branko Misovic in Holland.&lt;br /&gt;
*Preparing for a two-week 3D-printer build / open source hardware workshop in Guyana in November.&lt;br /&gt;
*Working on simple extruder for the D3D printer.&lt;br /&gt;
*Some 3D-printed parts for the D3D printer are not precise enough as they were printed with 1.0mm and 0.8mm nozzles.  We are switching to a 0.4mm nozzle and re-printing.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 27 - Monday September 1=&lt;br /&gt;
*Preparation for STEM camps in China. &lt;br /&gt;
*Travel to China.  Caught behind firewall - Internet was actually a large Intranet - difficult to post, communicate or access any useful sites. &lt;br /&gt;
*STEM Camp at Fujing Foreign language school - 10 days - 60 students, 1.5 hours daily - worked on FreeCAD and the OSE motor. &lt;br /&gt;
*Built OSE D3D printer with eight 9-11 year-old students (10 days, 3 hours daily) at EIC Education in Shenzhen.  The students assembled the axes and helped design some custom 3D-printed brackets for the frame which had to be made out of linear rail. The students learned FreeCAD and were able to design useful parts. Ganesh Ramsahai provided support in completing the build and configuration process. Presented the OSE D3D Shenzhen to the EIC Education Group with a half-hour overview and offer to provide remote support.&lt;br /&gt;
*STEM Camp at Zhangjiagang Foreign Language School in Jiangsu province. 30 students, 3 days, 6 hours per day.  Introduced FreeCAD and had the students design rotors and stators for the OSE brushless motor.&lt;br /&gt;
*Showed the TED talk to four different groups.&lt;br /&gt;
*Uploaded raw FreeCAD and stl files from the camps at Fujing Foreign Language School and Zhangjiagang Foreign Language School to [https://drive.google.com/open?id=1K7U8lEGqRgxwQf-WNX1Llbf-WE7LJCqL Google Drive]&lt;br /&gt;
*Uploaded [https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH custom files] generated during the build of the D3D 19.08 Shenzhen.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 20 - Friday July 26=&lt;br /&gt;
LIA summer STEM camp continued with 38 different students from Shenzhen, China.  The students discussed, in the context of Marcin&#039;s TED Talk, the concept that the human mind, focused and in collaboration with others, has the power to make positive changes in society.  Design of covers and caps for the OSE radial motor. Photos from the STEM Camp activities are [https://photos.app.goo.gl/zcpKk8jaFcDon31K7 here].  Trying to find the USB where we collected all the FreeCAD files.  These will be posted ASAP.&lt;br /&gt;
&lt;br /&gt;
=Monday July 15 - Friday July 19=&lt;br /&gt;
LIA summer STEM camp with 23 students from Vietnam and China. OSE Motor project part II - designing, printing and testing a radial motor. The motor concept was based on the following video: [https://www.youtube.com/watch?v=JkwLpAAfBVI 3D-Printed Axial Brushless Motor for Drones] Students were presented with the concept and asked to design such a motor from scratch using two rotors with eight disc magnets each and two sets of six wire loops.&lt;br /&gt;
&lt;br /&gt;
=Wednesday July 10 - Sunday July 14=&lt;br /&gt;
Preparation for summer STEM Camps at LIA.  Prepared 3D printers.  Began replication of two D3D v19.06 units.&lt;br /&gt;
=Friday June 28 - Tuesday July 9= &lt;br /&gt;
Open Source Ecology Microfactory STEAM Camp&lt;br /&gt;
=Thursday June 27=&lt;br /&gt;
Titan Aero finally working better with 1.5 full turns + a little bit more for good measure - has not jammed all afternoon now - three parts printed.  Logistics for Microfatory STEAM Camp - rented a vehicle and contacted a few participants. A prototype of the OSE extruder has been nearly completed. The extruder gear is scheduled to arrive at Factor e Farm by tomorrow. Then it will be ready for testing.  [https://photos.app.goo.gl/fWUX8ynAdqcn6Fvs6 OSE D3D Extruder - Photo Album][https://drive.google.com/open?id=17BLyvyk1EbrMOhkCfeSwByAq86SemSLX Files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 25 - Wednesday June 26=&lt;br /&gt;
OSE D3D Extruder.  Worked on attaching extruder to X-axis. Ordered extruder motor gears to arrive at FeF on Friday. Printed out bracket 1 successfully. Working on large aluminium block and designing x-axis adapter.&lt;br /&gt;
=Monday June 24=&lt;br /&gt;
Discussion about design of OSE Power Electronics. Problem - transformers are expensive and inflexible. Solution - research the feasibility of creating a 120V buck converter.  Would it be sufficiently efficient and would it be feasible to build?  Here are some potential parts to use: [https://www.digikey.ca/product-detail/en/comchip-technology/GBPC5010W-G/641-1389-ND/2074854 1kV Recifier] [https://www.digikey.ca/product-detail/en/ixys/IXFX120N65X2/IXFX120N65X2-ND/5629498?utm_adgroup=&amp;amp;mkwid=sFMkJ49os&amp;amp;pcrid=311971049444&amp;amp;pkw=&amp;amp;pmt=&amp;amp;pdv=c&amp;amp;productid=5629498&amp;amp;slid=&amp;amp;gclid=EAIaIQobChMIgbDd1fSC4wIVwkOGCh1f8gijEAQYAyABEgJGffD_BwE 650V MOSFET].  One problem seems to be that there may be a high level of energy loss in the circuit....[https://www.digikey.com/product-detail/en/everlight-electronics-co-ltd/H11L1S-TA/1080-1201-1-ND/2675935 Optocoupler] (to isolate the Arduino)[http://fpec.ucf.edu/teaching/EEL%205245%20Lectures/Lecture13%20Chapter4_BoostandBuckBoost_CCM_Analysis.pdf Some background theory]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 19 - Sunday June 23=&lt;br /&gt;
DIY Buck Converter based on the following video (and others): https://www.youtube.com/watch?v=L5oeY53pE0E&amp;amp;t=162s. [https://photos.app.goo.gl/kkHUwBQtD7h48mhB6 Photos.] All four 3D printers are down.  A crucial piece of the extruder of the most reliable printer finally broke. CAD already done for the replacement part. Got the OSE D3D working again on Friday.  Ready for printing on Monday - will print replacement part for other printer.  Other 2 printers almost working...&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 18=&lt;br /&gt;
[https://www.pythonpowerelectronics.com/ Python Power Electronics]&lt;br /&gt;
=Thursday June 13 - Monday June 17=&lt;br /&gt;
Buck Converters. OSE [[Power Electronics]] research. Arduino as controller of Power electronics - frequency issues / limitations. Scalability of Power electronics - can we add modular components to increase voltage, current, etc.?  &lt;br /&gt;
=Tuesday June 11 - Wednesday June 12=&lt;br /&gt;
Completed and sent CAD Drawings for OSE 3D Printer. Spent most of Wednesday working through a jam on the Titan Aero - it has jammed more in a few days than our other extruder has jammed in over three years.&lt;br /&gt;
=Monday June 10=&lt;br /&gt;
[https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH FreeCAD Drawings] for OSE 3D Printer. Note the use of parametric design in the CAD files - Spreadsheet values become variables used in constraint dimensions.&lt;br /&gt;
The following is my most recent FreeCAD Parametric Part Design and Drawing Workflow:[[FreeCAD Workflow]]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 5 - Sunday June 9=&lt;br /&gt;
[https://www.youtube.com/watch?v=CEhBN5_fO5o|DC-DC Buck Converters]&lt;br /&gt;
Power Supply: Transformer + Buck Converter + Ripple Smoothing Circuitry&lt;br /&gt;
=Tuesday June 4=&lt;br /&gt;
*[[Arduino Controlled Power Supply]] - ordered many components.&lt;br /&gt;
*Many electronic components specified in DIY articles and videos are now listed as obsolete.  Finding replacement parts is not easy. Case in point: LM338K Linear Voltage Regulators - Listed as obsolete on the Mouser website and selling for $91 or more on the Digi-key website.&lt;br /&gt;
*[https://www.eetimes.com/document.asp?doc_id=1333695# Article about obsolescence and demand and supply issues in the electronics industry]&lt;br /&gt;
&lt;br /&gt;
=Saturday June 1 - Monday June 3=&lt;br /&gt;
Reviewed [[OSE Design Guides]] Reviewed [[DIY Semiconductors]] Microfactory STEAM Camp Critical Path [[Arduino Controlled Power Supply]] Fabrication of aluminium blocks for hot end for OSE 3D printer extruder. Parametric modelling in FreeCAD.&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 28 - Friday May 31=&lt;br /&gt;
[[Halbach Array Brushless Motor]]&lt;br /&gt;
&lt;br /&gt;
=Monday May 27= &lt;br /&gt;
[https://www.youtube.com/watch?v=uOQk8SJso6Q How to Control an ESC with an Arduino] [https://photos.app.goo.gl/HMvWbigvuw3S26YG8 Test of the OSE Motor].&lt;br /&gt;
&lt;br /&gt;
=Friday May 24 - Sunday May 26= &lt;br /&gt;
Not all that much.&lt;br /&gt;
=Thursday May 23=&lt;br /&gt;
Thank you to Marcin and Catarina for a refreshing, enlightening and enjoyable visit to Factor e Farm and the Seed Ecohome. Returned to London.&lt;br /&gt;
=Wednesday May 22=&lt;br /&gt;
Skype appointment - 12pm Missouri time - friend in Colombia. Uploaded FreeCAD files for D3D v19.04 Power Plug Case to Wiki. [https://en.wikipedia.org/wiki/Buck_converter Buck Converter]&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 21=&lt;br /&gt;
[https://www.powerelectronicsnews.com/problems-solutions/power-supply-design-tutorial Power Supply Design Tutorial] Edited the [https://docs.google.com/document/d/1_3t_97giFOtqJ4ExPZdYeVEilCRhMmu0IWLLpBCrG-0/edit?usp=sharing Video Script] &lt;br /&gt;
Contacted STEM people in Nigeria and Pennsylvania based on the OSE STEAM Camp posted in this [https://www.facebook.com/groups/822455171229260/ Facebook Forum]&lt;br /&gt;
Further communication with friends in Mexico regarding the STEAM camp. Contacted a friend of a friend in Kansas City - Baha&#039;i Community.&lt;br /&gt;
&lt;br /&gt;
=Monday May 20=&lt;br /&gt;
Posted Microfactory STEAM camp on several Facebook STEM/STEAM Education pages. [[The Living Curriculum]] [https://github.com/MarlinFirmware/Marlin/issues/8903 Marlin Bed Temperature Settings] Worked on the Titan-Aero extruder repairs. The two parts of the extruder tube must be fairly tight (but not too tight!) to avoid leakage.&lt;br /&gt;
&lt;br /&gt;
=Sunday May 19=&lt;br /&gt;
Printing ABS using the OSE D3D - Set the bed temperature to 83 and the nozzle temperature to 255.  After 5 minutes of printing, several layers were adhering well. Thermal runaway. Tried 80 and 244; thermal runaway again. Joined several online STEM/Education groups.&lt;br /&gt;
&lt;br /&gt;
=Saturday May 18=&lt;br /&gt;
[[OSE Revenue Generation]] - Grameen Bank / Social Business - [[OSE Curriculum]]&lt;br /&gt;
&lt;br /&gt;
=Friday May 17=&lt;br /&gt;
[[OSE STEM Camp Marketing Strategy]]&lt;br /&gt;
=Friday May 10 - Thursday May 16= &lt;br /&gt;
Preparation for trip to Factor e Farm - gathered supplies - PCB boards, glossy paper, wire, magnets, electronic components, hardware, etc. Arrival at Factor e Farm. Work on D3D v. 19.04: [Photos - OSE D3D v19.04 Build at FeF https://www.facebook.com/photo.php?fbid=10161819908970597&amp;amp;set=pcb.1063740287151880&amp;amp;type=3&amp;amp;theater&amp;amp;ifg=1]&lt;br /&gt;
 &lt;br /&gt;
=Friday April 12 - Thursday May 9=&lt;br /&gt;
[https://drive.google.com/open?id=1-DpgMCARsA5iz4JLZtUeP3SD4a3UrXhj OSE Motor Completed] - ready for testing - Open Source Chinese Prusa i3 Printer Extruder - Configured and began printing with OSE D3D - printing very well at the moment - Booked a flight to Kansas City - heading to Factor e Farm soon!&lt;br /&gt;
&lt;br /&gt;
=Monday March 4 - Thursday April 11=&lt;br /&gt;
FRC Robotics - Ryerson University, Western University. OSE Motor - students have made some progress: [https://drive.google.com/open?id=1n99XWM8KMwvnV-tCmcWjImsBG27ReRSc OSE Brushless Motor] Additional work on the [[Simple 3D Printer Extruder]]&lt;br /&gt;
&lt;br /&gt;
=Sunday March 3=&lt;br /&gt;
Completed the first model of the most difficult part to CAD in the extruder - the X-Axis bracket.  Will now print CAD files and measure their accuracy before making changes to the CAD parameters.  Hopefully this process will result in more accurate parts.&lt;br /&gt;
&lt;br /&gt;
=Friday March 1 - Saturday March 2 =&lt;br /&gt;
Further work on open sourcing Chinese Prusa i3 3D printer extruder.&lt;br /&gt;
&lt;br /&gt;
=Monday February 18 - Thursday February 28=&lt;br /&gt;
Began the process of open-sourcing our 3D printer extruder: [[Simple 3D Printer Extruder]] (see photos and CAD files in the 3D Printer Folder) &lt;br /&gt;
Started a new unit in Computer Engineering Technology class.  Two groups of students are working on OSE materials:  &lt;br /&gt;
#The OSE Collaborative Contest&lt;br /&gt;
#The OSE Filament Extruder&lt;br /&gt;
&lt;br /&gt;
=Saturday February 9-Sunday February 17=&lt;br /&gt;
Hosted a group of six STEM students from School of the Nations in Georgetown, Guyana. STEM Camp at London International Academy.  Introduced the concept of the OSE collaborative contest. Introductory FreeCAD activities. Introduced Python computer programming.  Printed out various parts for an open source brushless motor.  [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX Link to CAD Files] (see School of the Nations sub-folder)[[file:Rotor.jpg|200px]] [http://guyanachronicle.com/2019/02/17/nations-benefits-from-robotics-training-in-canada Article in Guyana Chronicle]&lt;br /&gt;
&lt;br /&gt;
=Wednesday February 6= &lt;br /&gt;
[[OSE Coopetition]].  Discussed wiki + part library + documentation of OSE Coopetition.&lt;br /&gt;
&lt;br /&gt;
=Monday February 4=&lt;br /&gt;
Uploaded version 0.1 of the OSE Collaborative Contest Rules to [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest]&lt;br /&gt;
=Wednesday January 30 - Sunday February 3=&lt;br /&gt;
FRC Build season.  [https://drive.google.com/drive/folders/1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH?usp=sharing Team 6162 Cap Alpaca FreeCAD files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday January 29=&lt;br /&gt;
Collected FreeCAD files in a Google drive folder: [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest] &lt;br /&gt;
Summary of Nanjing group&#039;s schedule: [https://docs.google.com/document/d/1R-Dtu3kdZ0u8Qo5w3_vDuNEg5myr8mUmLjSpPOf-HoI/edit?usp=sharing | 2019 Winter Camp]&lt;br /&gt;
Here is some sample work from the FreeCAD workshop:&lt;br /&gt;
*[[File:ReyJessica.png|200px]]&lt;br /&gt;
*[[File:ZJHLSR.png|200px]]&lt;br /&gt;
&lt;br /&gt;
=Sunday January 27 - Monday January 28=&lt;br /&gt;
Discussed record keeping, file sharing and other skills for collaborative literacy. Created a sample page stub: [[Brushless Motor Design]].  Asked students to reflect on sessions learning FreeCAD.  Found that it is not necessary to learn a whole lot about FreeCAD in order to get students learning it.  Demonstrated two sample FreeCAD 0.17 design processes:&lt;br /&gt;
#Design a part like a motor adapter: body - sketch a circle - pad - sketch on a surface - pocket&lt;br /&gt;
#Design a sketch with constraints - some straight lines and some arcs closed in a loop with particular dimensions and angles.&lt;br /&gt;
After that, students were directed to Youtube videos that covered specific additional skills: &lt;br /&gt;
*Threading - inner and outer&lt;br /&gt;
*Polar patterns&lt;br /&gt;
Through this process, I learned how to do these skills from some students and was able to show other students the same, especially with polar patterns.&lt;br /&gt;
&lt;br /&gt;
=Sunday January, 20 - Saturday January 26, 2019=&lt;br /&gt;
Prepared for and welcomed 19 students from Jinling High School in China. Introduced the concept of the OSE Collaborative Contest.  Marcin spoke with the group over Jitsi on Thursday and on Saturday and proposed that the students participate in the OSE Collaborative Contest. It was well received despite the students&#039; fatigue from travel and skiing. Introduced FreeCAD and had students download and install it. Some computers do not immediately work with FreeCAD; hope that the problem may be solved. We plan to further discuss the students&#039; participation in the contest tomorrow and 3D print some of their early FreeCAD work on Monday. Created a link to LIA students&#039; FreeCAD work.  Currently the folder is being used for FRC preparation.  After the FRC robot is built, we are planning to transition to OSE-related work in this folder: [https://drive.google.com/open?id=1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH LIA OSE Club CAD Files]&lt;br /&gt;
&lt;br /&gt;
=Thursday January 10 - Saturday Jan 19, 2019=&lt;br /&gt;
Heaviest schedule of the year - January and February; progress slower during this time. Working on STEM Curriculum for FeF STEM Camps - [[Summer School 2019]].&lt;br /&gt;
&lt;br /&gt;
=Wed Jan 9, 2019=&lt;br /&gt;
*Use a presentation - template - make a copy - pass this to Heydar - document the simple 3D printing extruder for a low cost 3d printer - [https://docs.google.com/presentation/d/1_kUzO4eRCqrHVpqxSSTs17oLhtikTTyYe_1NxrTKlTI/edit#slide=id.g45ed589c64_0_0]&lt;br /&gt;
*Homework: Complete STEM Curriculum&lt;br /&gt;
&lt;br /&gt;
=January 2, 2019=&lt;br /&gt;
Ordered parts for a brushless motor to be constructed as part of the contest and part of the Computer Engineering Technology class at London International Academy.&lt;br /&gt;
In order to make the collaborative contest work, we will need to create a kit of parts to be easily shipped to participating schools.&lt;br /&gt;
&lt;br /&gt;
=December 24 2018-January 1, 2019=&lt;br /&gt;
Took a break. Reflected on plans for OSE London / OSE Club at London International Academy / OSE Collaborative Contest&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=December 23, 2018=&lt;br /&gt;
Defined particulars of [[OSE STEM Camps]].&lt;br /&gt;
&lt;br /&gt;
=December 22,2018=&lt;br /&gt;
[[William Conversation | Conversation with Marcin]]. Research on OSE Club Activities. Planning for winter semester courses&#039; links to OSE - Computer Engineering Technology and Computer Science. Plans to do the following in Computer Engineering Technology: build a brushless motor and ESC from scratch. Computer Science: Programming projects related to OSE - simulation program? Western University Introduction to STEM Class - offer the OSE Competition as a choice for a final project - help administer / judge / communicate / etc.&lt;br /&gt;
&lt;br /&gt;
=December 12-21, 2018=&lt;br /&gt;
Exams and marking - excellent ways to hinder educational progress. Discussed Canadian bill of materials with Russ Purvis. Discussed the upcoming OSE workshop in Prince George, BC currently in the planning phase. Several phone conversations with Charlie. Worked on some particulars for the upcoming OSE competition in January. Contacted a teacher in Iran to invite her to join the competition with her students. Sent a letter of reference to Russ with respect to hosting an OSE workshop.&lt;br /&gt;
&lt;br /&gt;
=December 8-11, 2018=&lt;br /&gt;
Spoke with Charlie about development of OSE workshops.  Spoke with Marcin and Catarina about the same. Updated Marcin about development of OSE club at London International Academy.  We now have plans to include at least four schools in our first design challenge - School of the Nations in Guyana, Fujing Foreign Language School in Shenzhen and Jinling School in Nanjing. Was approached by a friend to contact Makerspace managers in St. Thomas and Toronto. Arranged a meeting with the makerspace managers at Western University. OSE Marlin v18.10 works for printing with new printer. Successfully printed base layer of a file.  It seems that the extruder may have jammed.  Will check again as soon as possible. LIA students continue to develop their FreeCAD skills and are able to design parts in parallel according to a spacial plan and assemble them into a larger model. Installed OSE Linux on laptop now with a new old-school 1TcB hard drive. OSE Linux did not recognise the card reader; everything else seems to work very well. &amp;lt;strong&amp;gt;Note: Stepper motors on y axis of D3D became alarmingly hot after about 15 minutes of printing.&amp;lt;/strong&amp;gt; Perhaps this is a configuration issue; may need to resolve this before allowing the printer to do a full print.&lt;br /&gt;
&lt;br /&gt;
=December 7, 2018= &lt;br /&gt;
Using OSE Ubuntu on laptop with fried SSD. Internet has connection through ping but does not display pages in Chromium. D3D Marlin recent version from OSE website installed in printer. Autohome produces a collision of the z axis with the extruder as by default the z probe is off the plate.  Tried to move the y axis using various commands such as G0 Y40 and G1 Y40 all of which cause the Y axis to move until it hits the maximum physically possible position. Spoke with Johann Wong about the possibility of combining an OSE Makerspace skills (Arduino, CAD, etc.) + 3D printer workshop with Human Innovation PIE&#039;s soft skills innovation workshop through the London International Academy Foundation. Was using wrong Marlin file for D3D printer - will try correct one asap. Suggestions for D3D: use zip ties and clothespin springs for tensioning belts.  This has worked exceptionally well and reliably for our Chinese Prusa derivative; the belts have needed nearly no attention in three years.&lt;br /&gt;
&lt;br /&gt;
=December 6, 2018=&lt;br /&gt;
Was about to test print on OSE D3D when SSD crashed.  Did Ubuntu fry it?  Researching this.&lt;br /&gt;
&lt;br /&gt;
=December 5, 2018=&lt;br /&gt;
Introduced the OSE design challenge to OSE Club students at London International Academy.&lt;br /&gt;
&lt;br /&gt;
=December 4, 2018= &lt;br /&gt;
Held an informal Introduction to Arduino Workshop at London International Academy to help two grade 11 students with a project.  Spoke with Marcin about plans for the OSE design challenge, OSE club and possibility of a summer camp at FeF in May or June of 2019.&lt;br /&gt;
&lt;br /&gt;
=December 2, 2018=&lt;br /&gt;
 Created a document outlining a framework for OSL - Open Source London and shared it on Google Docs; visited Charlie to discuss the document.&lt;br /&gt;
&lt;br /&gt;
=November 29, 2018=&lt;br /&gt;
 Introduced OSE 3D Printer and Prusa i3 3D printer to parents and students at a local French Immersion school - PAFI.  Designed and printed various models using Blender and Repetier.&lt;br /&gt;
&lt;br /&gt;
=November 28, 2018=&lt;br /&gt;
*Updated OSECartCoin with letters. &lt;br /&gt;
**[[File:PAFI.stl]]&lt;br /&gt;
**[[File:PAFI.fcstd]]&lt;br /&gt;
*Call with Marcin regarding &#039;&#039;&#039;[[LIA OSE Club]]&#039;&#039;&#039;&lt;br /&gt;
*Build from last week - [https://www.facebook.com/groups/398759490316633/permalink/963594880499755/]&lt;br /&gt;
&lt;br /&gt;
=November 27, 2018=&lt;br /&gt;
Wrote the suggested intro to Marcin&#039;s next TED talk: [[Marcin&#039;s Next TED Talk]]&lt;br /&gt;
=November 26, 2018=&lt;br /&gt;
Uploaded FeF Brick Press Fabrication video from July 29, 2011 - [https://youtu.be/LwW8sOUO00s]&lt;br /&gt;
&amp;lt;p&amp;gt;Uploaded video of the &amp;quot;Cluckaphone&amp;quot; - July 29, 2011 - [https://www.youtube.com/watch?v=PNOhZX7ftLk&amp;amp;feature=youtu.be]&lt;br /&gt;
Call with Marcin, Catarina and Charlie - OSE Planning&lt;br /&gt;
&lt;br /&gt;
=November 25, 2018=&lt;br /&gt;
Consultation about the establishment of an OSE Club at London International Academy and future directions for the development of OSE Clubs and Makerspaces.&lt;br /&gt;
&lt;br /&gt;
=November 24, 2018=&lt;br /&gt;
We made an OSE Cart Coin with FreeCAD &lt;br /&gt;
Here are the files for OSE Cart Coin v0.1:&lt;br /&gt;
[[File:OSECartCoin.fcstd]]&lt;br /&gt;
[[File:OSECartCoin.stl]]&lt;br /&gt;
Attended Marcin&#039;s presentation entitled &amp;quot;Education for the Open Source Economy&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=November 23, 2018=&lt;br /&gt;
Built a an OSE 3D printer at London International Academy&lt;br /&gt;
&lt;br /&gt;
=November 23-25=&lt;br /&gt;
Attended first OSE Professional Development workshop at London International Academy with Charles Freer, Pascal Gingras, Marcin and Catarina.&lt;br /&gt;
&lt;br /&gt;
=November 18-22= &lt;br /&gt;
Prepared for the visit of Marcin and Catarina to London.&lt;br /&gt;
&lt;br /&gt;
=November 17, 2018=&lt;br /&gt;
Conversation about OSE development with Charlie.  In particular, discussion about education and its relationship to developing the capacity to lead a meaningful and productive life. Reference to overlap of Baha&#039;i means and principles with those of the OSE - elimination of the extremes of wealth and poverty, building capabilities in a population, individual agency and initiative within a systematically evolving framework, etc.&lt;br /&gt;
&lt;br /&gt;
=November 16, 2018=&lt;br /&gt;
*Received US $5000 Shuttleworth Foundation Flash Grant&lt;br /&gt;
*Conference call with Marcin and Charles Freer regarding Marcin and Catarina&#039;s upcoming visit to London, Ontario&lt;br /&gt;
&lt;br /&gt;
=November 15, 2018=&lt;br /&gt;
Engineering Club students designed and printed a part to add to the Lyman Filament Extruder repository - a bracket for a rocker switch&lt;br /&gt;
&lt;br /&gt;
[[File:SwitchBracket2.png]]&lt;br /&gt;
[[File:Switchbase2.stl]]&lt;br /&gt;
[[File:SwitchBracket.FCStd]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=May, 2012=&lt;br /&gt;
Started project to build metric version of OSE CEB Press in Nanjing, China&lt;br /&gt;
&lt;br /&gt;
=April, 2012=&lt;br /&gt;
Began 3D Printing project in physics class at London International Academy&lt;br /&gt;
&lt;br /&gt;
=July, 2011-October, 2018=&lt;br /&gt;
Many things happened including severe neglect of the OSE wiki&lt;br /&gt;
Some highlights:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Regular incorporation of OSE concepts into classes and presentations 2011-present&lt;br /&gt;
*May, 2013 - started collaboration with Human InnovationPIE, a London non-profit organization focused on providing soft skills education for innovation.&lt;br /&gt;
*April, 2014 - Recognized in local paper for 3D Printer build with students&lt;br /&gt;
*July, 2015 - Asked to start STEM program at London International Academy further to success and popularity of 3D printer project&lt;br /&gt;
*September, 2015 - Began building Farmbot with students&lt;br /&gt;
*January, 2017 - Began teaching an Introduction to STEM course at Western University with significant OSE-based content.&lt;br /&gt;
&lt;br /&gt;
=July 16, 2011=&lt;br /&gt;
Arrived at Factor e Farm with Haydar Neal&lt;br /&gt;
&lt;br /&gt;
=March,  2011=&lt;br /&gt;
Saw TED Talk and wrote away to Marcin immediately&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=220123</id>
		<title>William Neal Log</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=220123"/>
		<updated>2020-05-08T19:47:45Z</updated>

		<summary type="html">&lt;p&gt;Wneal: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{RightTOC}}&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;600&amp;quot; height=&amp;quot;600&amp;quot; src=&amp;quot;https://osedev.org/wiki/William?start=2/1/2017&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
=Wednesday May 6-Friday May 8=&lt;br /&gt;
[[Open Source Collaboration Mini Course]]&lt;br /&gt;
Call with Marcin - August Remote Camp.&lt;br /&gt;
https://wiki.opensourceecology.org/wiki/Andreas_Log#Thur-Fri_Apr_23-4.2C_2020&lt;br /&gt;
https://wiki.opensourceecology.org/wiki/Test&lt;br /&gt;
https://wiki.opensourceecology.org/wiki/OSE_Collaboration_Protocol&lt;br /&gt;
=Friday March 27 - Tuesday May 5=&lt;br /&gt;
Worked on &amp;quot;[https://docs.google.com/document/d/1_5LJo8GXV5Ct1f57bD4fB8xC0wyT9iANtgPVj-Dev0M/edit?usp=sharing ALT-L],&amp;quot; an accelerated mathematics and computer programming curriculum for secondary school students. The course is under development [https://drive.google.com/drive/folders/14da63JcyEaM5CfdXjSi5G1Vll_hHTj9k?usp=sharing here] with two groups of students from eight countries meeting twice weekly over Zoom. Created a related [https://docs.google.com/document/d/1QXsDVR2iXecT_T-NM8DEwA4o-Yh6eCNfLf4ze8VFVyM/edit?usp=sharing training manual] for the Guyana Prison system using open source technologies such as Linux and Python.&lt;br /&gt;
&lt;br /&gt;
=Sunday February 16 - Thursday March 26=&lt;br /&gt;
Work on OSE Challenging due to work, community and global crisis. &lt;br /&gt;
=Friday February 14 - Saturday February 15=&lt;br /&gt;
Personal Build Wishlist - Continued&lt;br /&gt;
=Friday February 7 - Thursday February 13=&lt;br /&gt;
[https://docs.google.com/document/d/11DUqroMKjpKGh2WxIpkJfl5HaPJJzIl8uK6saErtpgs/edit?usp=sharing William Neal Personal Build Wishlist] - Still under development&lt;br /&gt;
&lt;br /&gt;
=Monday, December 2 - Thursday Feb. 6, 2020=&lt;br /&gt;
End of semester disruption; start of semester disruption - a huge amount of time and effort spent on paperwork instead of education. Start of FRC robotics season. Start of computer programming and computer engineering classes. &lt;br /&gt;
=Saturday November 30 - Sunday December 1=&lt;br /&gt;
Finished OSE Prusa Build in Guyana. Used [https://www.repetier.com/documentation/repetier-firmware/ Repetier Firmware] and [https://www.repetier.com/ Repetier Host] to control the printer.&lt;br /&gt;
=Thursday November 28 - Friday November 29=&lt;br /&gt;
Workshop with the Guyana Prison Service - 12 prison staff from five facilities in Guyana. Reactivated 6 discarded computers using Ubuntu and OSE Linux. [[Introduction to Python]]. [https://m.facebook.com/groups/398759490316633?view=permalink&amp;amp;id=1215623975296843 OSE Prusa Build]&lt;br /&gt;
&lt;br /&gt;
=Saturday November 23  Wednesday November 27=&lt;br /&gt;
Workshop in Guyana with the Guyana Prison Service: The CSSP Project.  This project aims to replace the current model of prison management with an approach based on human nobility, education and rehabilitation.&lt;br /&gt;
=Thursday November 28=&lt;br /&gt;
[[OSE Linux]] - we got six old computers working on Ubuntu using flash drives.  Tomorrow will have an Open Source software workshop using OSE Linux on USB drives. We will use Python, FreeCAD, LibreOffice, etc. Showed the TED talk to our group of 12 prison officers from five facilities in Guyana.&lt;br /&gt;
&lt;br /&gt;
=Saturday November 2 - Friday November 22=&lt;br /&gt;
Worked on the [[OSE Prusa]] in order to support the establishment of a STEM centre in Trinidad and Tobago and to prepare for a workshop with the Government of Guyana.&lt;br /&gt;
#Items in a numbered list&lt;br /&gt;
#More Items&lt;br /&gt;
##Yet More&lt;br /&gt;
*Items in a bullet list&lt;br /&gt;
*More Items&lt;br /&gt;
**Yet More&lt;br /&gt;
&lt;br /&gt;
=Thursday October 24 - Friday November 1=&lt;br /&gt;
*Tested printing on the London replication of the D3D printer for the first time.&lt;br /&gt;
*Team of 9 students from Western university preparing a project around OSE - D3D replication + filament extruder replication + Chinese Reprap Prusa i3 reverse engineering.&lt;br /&gt;
=Sunday October 12 - Wednesday October 23=&lt;br /&gt;
*Updated some files used in the simple extruder build [https://wiki.opensourceecology.org/wiki/Simple_3D_Printer_Extruder#CAD here.]&lt;br /&gt;
&lt;br /&gt;
=Friday October 4 - Saturday October 11=&lt;br /&gt;
*Successfully tested D3D simple extruder based on Chinese Prusa i3.&lt;br /&gt;
*D3D challenge - Y axis end stop stopped working...&lt;br /&gt;
*Almost finished replicating first of two D3D printers in London Ontario.&lt;br /&gt;
*Preparing a D3D / Brushless motor workshop for the Guyana Prison Service. &lt;br /&gt;
*FreeCAD activity completed at Western University - varied response of individuals in the groups - the allocated time was too short. &lt;br /&gt;
=Friday September 27 - Thursday October 3=&lt;br /&gt;
*Continued work on D3D build.&lt;br /&gt;
*Experimenting with highly differentiated instruction unconstrained by government curricular concerns - our STEM club&#039;s three sections - Robotics / Computers and CAD / STEM projects have each gradually evolved over the last several weeks such that small groups of 1-4 students specialize on special tasks.&lt;br /&gt;
*Introduced FreeCAD to a group of junior youth from a local neighborhood. After about 40 minutes each group of two participants completed a motor rotor design.&lt;br /&gt;
*Second FreeCAD session with a group of 40 teacher candidate students at Western University&#039;s Althouse. Also used highly differentiated / interdisciplinary instruction with this group. After one hour and a half, most groups were able to generate several parts of a brushless motor and begin the process of parameterizing with a spreadsheet and creating an assembly.  Some trained engineers in the crowd generated excellent &amp;quot;propellers&amp;quot; for the motor using advanced features.&lt;br /&gt;
&lt;br /&gt;
=Tuesday, September 1 - Thursday, September 26=&lt;br /&gt;
*New School Year - over 40 students participating in our special STEM/Business/Arts program.&lt;br /&gt;
*Two sections of our program, STEM Projects and Computer Programming/CAD,  include OSE-related topics:&lt;br /&gt;
**Building 3D printers&lt;br /&gt;
**3D-printing&lt;br /&gt;
**OSE Motor design and fabrication&lt;br /&gt;
**Filament extruder&lt;br /&gt;
**CAD&lt;br /&gt;
*Building a 3D printer in collaboration with Bill Phelan, Vice President of Die-X Ltd.&lt;br /&gt;
*Remote collaboration with Branko Misovic in Holland.&lt;br /&gt;
*Preparing for a two-week 3D-printer build / open source hardware workshop in Guyana in November.&lt;br /&gt;
*Working on simple extruder for the D3D printer.&lt;br /&gt;
*Some 3D-printed parts for the D3D printer are not precise enough as they were printed with 1.0mm and 0.8mm nozzles.  We are switching to a 0.4mm nozzle and re-printing.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 27 - Monday September 1=&lt;br /&gt;
*Preparation for STEM camps in China. &lt;br /&gt;
*Travel to China.  Caught behind firewall - Internet was actually a large Intranet - difficult to post, communicate or access any useful sites. &lt;br /&gt;
*STEM Camp at Fujing Foreign language school - 10 days - 60 students, 1.5 hours daily - worked on FreeCAD and the OSE motor. &lt;br /&gt;
*Built OSE D3D printer with eight 9-11 year-old students (10 days, 3 hours daily) at EIC Education in Shenzhen.  The students assembled the axes and helped design some custom 3D-printed brackets for the frame which had to be made out of linear rail. The students learned FreeCAD and were able to design useful parts. Ganesh Ramsahai provided support in completing the build and configuration process. Presented the OSE D3D Shenzhen to the EIC Education Group with a half-hour overview and offer to provide remote support.&lt;br /&gt;
*STEM Camp at Zhangjiagang Foreign Language School in Jiangsu province. 30 students, 3 days, 6 hours per day.  Introduced FreeCAD and had the students design rotors and stators for the OSE brushless motor.&lt;br /&gt;
*Showed the TED talk to four different groups.&lt;br /&gt;
*Uploaded raw FreeCAD and stl files from the camps at Fujing Foreign Language School and Zhangjiagang Foreign Language School to [https://drive.google.com/open?id=1K7U8lEGqRgxwQf-WNX1Llbf-WE7LJCqL Google Drive]&lt;br /&gt;
*Uploaded [https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH custom files] generated during the build of the D3D 19.08 Shenzhen.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 20 - Friday July 26=&lt;br /&gt;
LIA summer STEM camp continued with 38 different students from Shenzhen, China.  The students discussed, in the context of Marcin&#039;s TED Talk, the concept that the human mind, focused and in collaboration with others, has the power to make positive changes in society.  Design of covers and caps for the OSE radial motor. Photos from the STEM Camp activities are [https://photos.app.goo.gl/zcpKk8jaFcDon31K7 here].  Trying to find the USB where we collected all the FreeCAD files.  These will be posted ASAP.&lt;br /&gt;
&lt;br /&gt;
=Monday July 15 - Friday July 19=&lt;br /&gt;
LIA summer STEM camp with 23 students from Vietnam and China. OSE Motor project part II - designing, printing and testing a radial motor. The motor concept was based on the following video: [https://www.youtube.com/watch?v=JkwLpAAfBVI 3D-Printed Axial Brushless Motor for Drones] Students were presented with the concept and asked to design such a motor from scratch using two rotors with eight disc magnets each and two sets of six wire loops.&lt;br /&gt;
&lt;br /&gt;
=Wednesday July 10 - Sunday July 14=&lt;br /&gt;
Preparation for summer STEM Camps at LIA.  Prepared 3D printers.  Began replication of two D3D v19.06 units.&lt;br /&gt;
=Friday June 28 - Tuesday July 9= &lt;br /&gt;
Open Source Ecology Microfactory STEAM Camp&lt;br /&gt;
=Thursday June 27=&lt;br /&gt;
Titan Aero finally working better with 1.5 full turns + a little bit more for good measure - has not jammed all afternoon now - three parts printed.  Logistics for Microfatory STEAM Camp - rented a vehicle and contacted a few participants. A prototype of the OSE extruder has been nearly completed. The extruder gear is scheduled to arrive at Factor e Farm by tomorrow. Then it will be ready for testing.  [https://photos.app.goo.gl/fWUX8ynAdqcn6Fvs6 OSE D3D Extruder - Photo Album][https://drive.google.com/open?id=17BLyvyk1EbrMOhkCfeSwByAq86SemSLX Files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 25 - Wednesday June 26=&lt;br /&gt;
OSE D3D Extruder.  Worked on attaching extruder to X-axis. Ordered extruder motor gears to arrive at FeF on Friday. Printed out bracket 1 successfully. Working on large aluminium block and designing x-axis adapter.&lt;br /&gt;
=Monday June 24=&lt;br /&gt;
Discussion about design of OSE Power Electronics. Problem - transformers are expensive and inflexible. Solution - research the feasibility of creating a 120V buck converter.  Would it be sufficiently efficient and would it be feasible to build?  Here are some potential parts to use: [https://www.digikey.ca/product-detail/en/comchip-technology/GBPC5010W-G/641-1389-ND/2074854 1kV Recifier] [https://www.digikey.ca/product-detail/en/ixys/IXFX120N65X2/IXFX120N65X2-ND/5629498?utm_adgroup=&amp;amp;mkwid=sFMkJ49os&amp;amp;pcrid=311971049444&amp;amp;pkw=&amp;amp;pmt=&amp;amp;pdv=c&amp;amp;productid=5629498&amp;amp;slid=&amp;amp;gclid=EAIaIQobChMIgbDd1fSC4wIVwkOGCh1f8gijEAQYAyABEgJGffD_BwE 650V MOSFET].  One problem seems to be that there may be a high level of energy loss in the circuit....[https://www.digikey.com/product-detail/en/everlight-electronics-co-ltd/H11L1S-TA/1080-1201-1-ND/2675935 Optocoupler] (to isolate the Arduino)[http://fpec.ucf.edu/teaching/EEL%205245%20Lectures/Lecture13%20Chapter4_BoostandBuckBoost_CCM_Analysis.pdf Some background theory]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 19 - Sunday June 23=&lt;br /&gt;
DIY Buck Converter based on the following video (and others): https://www.youtube.com/watch?v=L5oeY53pE0E&amp;amp;t=162s. [https://photos.app.goo.gl/kkHUwBQtD7h48mhB6 Photos.] All four 3D printers are down.  A crucial piece of the extruder of the most reliable printer finally broke. CAD already done for the replacement part. Got the OSE D3D working again on Friday.  Ready for printing on Monday - will print replacement part for other printer.  Other 2 printers almost working...&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 18=&lt;br /&gt;
[https://www.pythonpowerelectronics.com/ Python Power Electronics]&lt;br /&gt;
=Thursday June 13 - Monday June 17=&lt;br /&gt;
Buck Converters. OSE [[Power Electronics]] research. Arduino as controller of Power electronics - frequency issues / limitations. Scalability of Power electronics - can we add modular components to increase voltage, current, etc.?  &lt;br /&gt;
=Tuesday June 11 - Wednesday June 12=&lt;br /&gt;
Completed and sent CAD Drawings for OSE 3D Printer. Spent most of Wednesday working through a jam on the Titan Aero - it has jammed more in a few days than our other extruder has jammed in over three years.&lt;br /&gt;
=Monday June 10=&lt;br /&gt;
[https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH FreeCAD Drawings] for OSE 3D Printer. Note the use of parametric design in the CAD files - Spreadsheet values become variables used in constraint dimensions.&lt;br /&gt;
The following is my most recent FreeCAD Parametric Part Design and Drawing Workflow:[[FreeCAD Workflow]]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 5 - Sunday June 9=&lt;br /&gt;
[https://www.youtube.com/watch?v=CEhBN5_fO5o|DC-DC Buck Converters]&lt;br /&gt;
Power Supply: Transformer + Buck Converter + Ripple Smoothing Circuitry&lt;br /&gt;
=Tuesday June 4=&lt;br /&gt;
*[[Arduino Controlled Power Supply]] - ordered many components.&lt;br /&gt;
*Many electronic components specified in DIY articles and videos are now listed as obsolete.  Finding replacement parts is not easy. Case in point: LM338K Linear Voltage Regulators - Listed as obsolete on the Mouser website and selling for $91 or more on the Digi-key website.&lt;br /&gt;
*[https://www.eetimes.com/document.asp?doc_id=1333695# Article about obsolescence and demand and supply issues in the electronics industry]&lt;br /&gt;
&lt;br /&gt;
=Saturday June 1 - Monday June 3=&lt;br /&gt;
Reviewed [[OSE Design Guides]] Reviewed [[DIY Semiconductors]] Microfactory STEAM Camp Critical Path [[Arduino Controlled Power Supply]] Fabrication of aluminium blocks for hot end for OSE 3D printer extruder. Parametric modelling in FreeCAD.&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 28 - Friday May 31=&lt;br /&gt;
[[Halbach Array Brushless Motor]]&lt;br /&gt;
&lt;br /&gt;
=Monday May 27= &lt;br /&gt;
[https://www.youtube.com/watch?v=uOQk8SJso6Q How to Control an ESC with an Arduino] [https://photos.app.goo.gl/HMvWbigvuw3S26YG8 Test of the OSE Motor].&lt;br /&gt;
&lt;br /&gt;
=Friday May 24 - Sunday May 26= &lt;br /&gt;
Not all that much.&lt;br /&gt;
=Thursday May 23=&lt;br /&gt;
Thank you to Marcin and Catarina for a refreshing, enlightening and enjoyable visit to Factor e Farm and the Seed Ecohome. Returned to London.&lt;br /&gt;
=Wednesday May 22=&lt;br /&gt;
Skype appointment - 12pm Missouri time - friend in Colombia. Uploaded FreeCAD files for D3D v19.04 Power Plug Case to Wiki. [https://en.wikipedia.org/wiki/Buck_converter Buck Converter]&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 21=&lt;br /&gt;
[https://www.powerelectronicsnews.com/problems-solutions/power-supply-design-tutorial Power Supply Design Tutorial] Edited the [https://docs.google.com/document/d/1_3t_97giFOtqJ4ExPZdYeVEilCRhMmu0IWLLpBCrG-0/edit?usp=sharing Video Script] &lt;br /&gt;
Contacted STEM people in Nigeria and Pennsylvania based on the OSE STEAM Camp posted in this [https://www.facebook.com/groups/822455171229260/ Facebook Forum]&lt;br /&gt;
Further communication with friends in Mexico regarding the STEAM camp. Contacted a friend of a friend in Kansas City - Baha&#039;i Community.&lt;br /&gt;
&lt;br /&gt;
=Monday May 20=&lt;br /&gt;
Posted Microfactory STEAM camp on several Facebook STEM/STEAM Education pages. [[The Living Curriculum]] [https://github.com/MarlinFirmware/Marlin/issues/8903 Marlin Bed Temperature Settings] Worked on the Titan-Aero extruder repairs. The two parts of the extruder tube must be fairly tight (but not too tight!) to avoid leakage.&lt;br /&gt;
&lt;br /&gt;
=Sunday May 19=&lt;br /&gt;
Printing ABS using the OSE D3D - Set the bed temperature to 83 and the nozzle temperature to 255.  After 5 minutes of printing, several layers were adhering well. Thermal runaway. Tried 80 and 244; thermal runaway again. Joined several online STEM/Education groups.&lt;br /&gt;
&lt;br /&gt;
=Saturday May 18=&lt;br /&gt;
[[OSE Revenue Generation]] - Grameen Bank / Social Business - [[OSE Curriculum]]&lt;br /&gt;
&lt;br /&gt;
=Friday May 17=&lt;br /&gt;
[[OSE STEM Camp Marketing Strategy]]&lt;br /&gt;
=Friday May 10 - Thursday May 16= &lt;br /&gt;
Preparation for trip to Factor e Farm - gathered supplies - PCB boards, glossy paper, wire, magnets, electronic components, hardware, etc. Arrival at Factor e Farm. Work on D3D v. 19.04: [Photos - OSE D3D v19.04 Build at FeF https://www.facebook.com/photo.php?fbid=10161819908970597&amp;amp;set=pcb.1063740287151880&amp;amp;type=3&amp;amp;theater&amp;amp;ifg=1]&lt;br /&gt;
 &lt;br /&gt;
=Friday April 12 - Thursday May 9=&lt;br /&gt;
[https://drive.google.com/open?id=1-DpgMCARsA5iz4JLZtUeP3SD4a3UrXhj OSE Motor Completed] - ready for testing - Open Source Chinese Prusa i3 Printer Extruder - Configured and began printing with OSE D3D - printing very well at the moment - Booked a flight to Kansas City - heading to Factor e Farm soon!&lt;br /&gt;
&lt;br /&gt;
=Monday March 4 - Thursday April 11=&lt;br /&gt;
FRC Robotics - Ryerson University, Western University. OSE Motor - students have made some progress: [https://drive.google.com/open?id=1n99XWM8KMwvnV-tCmcWjImsBG27ReRSc OSE Brushless Motor] Additional work on the [[Simple 3D Printer Extruder]]&lt;br /&gt;
&lt;br /&gt;
=Sunday March 3=&lt;br /&gt;
Completed the first model of the most difficult part to CAD in the extruder - the X-Axis bracket.  Will now print CAD files and measure their accuracy before making changes to the CAD parameters.  Hopefully this process will result in more accurate parts.&lt;br /&gt;
&lt;br /&gt;
=Friday March 1 - Saturday March 2 =&lt;br /&gt;
Further work on open sourcing Chinese Prusa i3 3D printer extruder.&lt;br /&gt;
&lt;br /&gt;
=Monday February 18 - Thursday February 28=&lt;br /&gt;
Began the process of open-sourcing our 3D printer extruder: [[Simple 3D Printer Extruder]] (see photos and CAD files in the 3D Printer Folder) &lt;br /&gt;
Started a new unit in Computer Engineering Technology class.  Two groups of students are working on OSE materials:  &lt;br /&gt;
#The OSE Collaborative Contest&lt;br /&gt;
#The OSE Filament Extruder&lt;br /&gt;
&lt;br /&gt;
=Saturday February 9-Sunday February 17=&lt;br /&gt;
Hosted a group of six STEM students from School of the Nations in Georgetown, Guyana. STEM Camp at London International Academy.  Introduced the concept of the OSE collaborative contest. Introductory FreeCAD activities. Introduced Python computer programming.  Printed out various parts for an open source brushless motor.  [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX Link to CAD Files] (see School of the Nations sub-folder)[[file:Rotor.jpg|200px]] [http://guyanachronicle.com/2019/02/17/nations-benefits-from-robotics-training-in-canada Article in Guyana Chronicle]&lt;br /&gt;
&lt;br /&gt;
=Wednesday February 6= &lt;br /&gt;
[[OSE Coopetition]].  Discussed wiki + part library + documentation of OSE Coopetition.&lt;br /&gt;
&lt;br /&gt;
=Monday February 4=&lt;br /&gt;
Uploaded version 0.1 of the OSE Collaborative Contest Rules to [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest]&lt;br /&gt;
=Wednesday January 30 - Sunday February 3=&lt;br /&gt;
FRC Build season.  [https://drive.google.com/drive/folders/1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH?usp=sharing Team 6162 Cap Alpaca FreeCAD files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday January 29=&lt;br /&gt;
Collected FreeCAD files in a Google drive folder: [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest] &lt;br /&gt;
Summary of Nanjing group&#039;s schedule: [https://docs.google.com/document/d/1R-Dtu3kdZ0u8Qo5w3_vDuNEg5myr8mUmLjSpPOf-HoI/edit?usp=sharing | 2019 Winter Camp]&lt;br /&gt;
Here is some sample work from the FreeCAD workshop:&lt;br /&gt;
*[[File:ReyJessica.png|200px]]&lt;br /&gt;
*[[File:ZJHLSR.png|200px]]&lt;br /&gt;
&lt;br /&gt;
=Sunday January 27 - Monday January 28=&lt;br /&gt;
Discussed record keeping, file sharing and other skills for collaborative literacy. Created a sample page stub: [[Brushless Motor Design]].  Asked students to reflect on sessions learning FreeCAD.  Found that it is not necessary to learn a whole lot about FreeCAD in order to get students learning it.  Demonstrated two sample FreeCAD 0.17 design processes:&lt;br /&gt;
#Design a part like a motor adapter: body - sketch a circle - pad - sketch on a surface - pocket&lt;br /&gt;
#Design a sketch with constraints - some straight lines and some arcs closed in a loop with particular dimensions and angles.&lt;br /&gt;
After that, students were directed to Youtube videos that covered specific additional skills: &lt;br /&gt;
*Threading - inner and outer&lt;br /&gt;
*Polar patterns&lt;br /&gt;
Through this process, I learned how to do these skills from some students and was able to show other students the same, especially with polar patterns.&lt;br /&gt;
&lt;br /&gt;
=Sunday January, 20 - Saturday January 26, 2019=&lt;br /&gt;
Prepared for and welcomed 19 students from Jinling High School in China. Introduced the concept of the OSE Collaborative Contest.  Marcin spoke with the group over Jitsi on Thursday and on Saturday and proposed that the students participate in the OSE Collaborative Contest. It was well received despite the students&#039; fatigue from travel and skiing. Introduced FreeCAD and had students download and install it. Some computers do not immediately work with FreeCAD; hope that the problem may be solved. We plan to further discuss the students&#039; participation in the contest tomorrow and 3D print some of their early FreeCAD work on Monday. Created a link to LIA students&#039; FreeCAD work.  Currently the folder is being used for FRC preparation.  After the FRC robot is built, we are planning to transition to OSE-related work in this folder: [https://drive.google.com/open?id=1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH LIA OSE Club CAD Files]&lt;br /&gt;
&lt;br /&gt;
=Thursday January 10 - Saturday Jan 19, 2019=&lt;br /&gt;
Heaviest schedule of the year - January and February; progress slower during this time. Working on STEM Curriculum for FeF STEM Camps - [[Summer School 2019]].&lt;br /&gt;
&lt;br /&gt;
=Wed Jan 9, 2019=&lt;br /&gt;
*Use a presentation - template - make a copy - pass this to Heydar - document the simple 3D printing extruder for a low cost 3d printer - [https://docs.google.com/presentation/d/1_kUzO4eRCqrHVpqxSSTs17oLhtikTTyYe_1NxrTKlTI/edit#slide=id.g45ed589c64_0_0]&lt;br /&gt;
*Homework: Complete STEM Curriculum&lt;br /&gt;
&lt;br /&gt;
=January 2, 2019=&lt;br /&gt;
Ordered parts for a brushless motor to be constructed as part of the contest and part of the Computer Engineering Technology class at London International Academy.&lt;br /&gt;
In order to make the collaborative contest work, we will need to create a kit of parts to be easily shipped to participating schools.&lt;br /&gt;
&lt;br /&gt;
=December 24 2018-January 1, 2019=&lt;br /&gt;
Took a break. Reflected on plans for OSE London / OSE Club at London International Academy / OSE Collaborative Contest&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=December 23, 2018=&lt;br /&gt;
Defined particulars of [[OSE STEM Camps]].&lt;br /&gt;
&lt;br /&gt;
=December 22,2018=&lt;br /&gt;
[[William Conversation | Conversation with Marcin]]. Research on OSE Club Activities. Planning for winter semester courses&#039; links to OSE - Computer Engineering Technology and Computer Science. Plans to do the following in Computer Engineering Technology: build a brushless motor and ESC from scratch. Computer Science: Programming projects related to OSE - simulation program? Western University Introduction to STEM Class - offer the OSE Competition as a choice for a final project - help administer / judge / communicate / etc.&lt;br /&gt;
&lt;br /&gt;
=December 12-21, 2018=&lt;br /&gt;
Exams and marking - excellent ways to hinder educational progress. Discussed Canadian bill of materials with Russ Purvis. Discussed the upcoming OSE workshop in Prince George, BC currently in the planning phase. Several phone conversations with Charlie. Worked on some particulars for the upcoming OSE competition in January. Contacted a teacher in Iran to invite her to join the competition with her students. Sent a letter of reference to Russ with respect to hosting an OSE workshop.&lt;br /&gt;
&lt;br /&gt;
=December 8-11, 2018=&lt;br /&gt;
Spoke with Charlie about development of OSE workshops.  Spoke with Marcin and Catarina about the same. Updated Marcin about development of OSE club at London International Academy.  We now have plans to include at least four schools in our first design challenge - School of the Nations in Guyana, Fujing Foreign Language School in Shenzhen and Jinling School in Nanjing. Was approached by a friend to contact Makerspace managers in St. Thomas and Toronto. Arranged a meeting with the makerspace managers at Western University. OSE Marlin v18.10 works for printing with new printer. Successfully printed base layer of a file.  It seems that the extruder may have jammed.  Will check again as soon as possible. LIA students continue to develop their FreeCAD skills and are able to design parts in parallel according to a spacial plan and assemble them into a larger model. Installed OSE Linux on laptop now with a new old-school 1TcB hard drive. OSE Linux did not recognise the card reader; everything else seems to work very well. &amp;lt;strong&amp;gt;Note: Stepper motors on y axis of D3D became alarmingly hot after about 15 minutes of printing.&amp;lt;/strong&amp;gt; Perhaps this is a configuration issue; may need to resolve this before allowing the printer to do a full print.&lt;br /&gt;
&lt;br /&gt;
=December 7, 2018= &lt;br /&gt;
Using OSE Ubuntu on laptop with fried SSD. Internet has connection through ping but does not display pages in Chromium. D3D Marlin recent version from OSE website installed in printer. Autohome produces a collision of the z axis with the extruder as by default the z probe is off the plate.  Tried to move the y axis using various commands such as G0 Y40 and G1 Y40 all of which cause the Y axis to move until it hits the maximum physically possible position. Spoke with Johann Wong about the possibility of combining an OSE Makerspace skills (Arduino, CAD, etc.) + 3D printer workshop with Human Innovation PIE&#039;s soft skills innovation workshop through the London International Academy Foundation. Was using wrong Marlin file for D3D printer - will try correct one asap. Suggestions for D3D: use zip ties and clothespin springs for tensioning belts.  This has worked exceptionally well and reliably for our Chinese Prusa derivative; the belts have needed nearly no attention in three years.&lt;br /&gt;
&lt;br /&gt;
=December 6, 2018=&lt;br /&gt;
Was about to test print on OSE D3D when SSD crashed.  Did Ubuntu fry it?  Researching this.&lt;br /&gt;
&lt;br /&gt;
=December 5, 2018=&lt;br /&gt;
Introduced the OSE design challenge to OSE Club students at London International Academy.&lt;br /&gt;
&lt;br /&gt;
=December 4, 2018= &lt;br /&gt;
Held an informal Introduction to Arduino Workshop at London International Academy to help two grade 11 students with a project.  Spoke with Marcin about plans for the OSE design challenge, OSE club and possibility of a summer camp at FeF in May or June of 2019.&lt;br /&gt;
&lt;br /&gt;
=December 2, 2018=&lt;br /&gt;
 Created a document outlining a framework for OSL - Open Source London and shared it on Google Docs; visited Charlie to discuss the document.&lt;br /&gt;
&lt;br /&gt;
=November 29, 2018=&lt;br /&gt;
 Introduced OSE 3D Printer and Prusa i3 3D printer to parents and students at a local French Immersion school - PAFI.  Designed and printed various models using Blender and Repetier.&lt;br /&gt;
&lt;br /&gt;
=November 28, 2018=&lt;br /&gt;
*Updated OSECartCoin with letters. &lt;br /&gt;
**[[File:PAFI.stl]]&lt;br /&gt;
**[[File:PAFI.fcstd]]&lt;br /&gt;
*Call with Marcin regarding &#039;&#039;&#039;[[LIA OSE Club]]&#039;&#039;&#039;&lt;br /&gt;
*Build from last week - [https://www.facebook.com/groups/398759490316633/permalink/963594880499755/]&lt;br /&gt;
&lt;br /&gt;
=November 27, 2018=&lt;br /&gt;
Wrote the suggested intro to Marcin&#039;s next TED talk: [[Marcin&#039;s Next TED Talk]]&lt;br /&gt;
=November 26, 2018=&lt;br /&gt;
Uploaded FeF Brick Press Fabrication video from July 29, 2011 - [https://youtu.be/LwW8sOUO00s]&lt;br /&gt;
&amp;lt;p&amp;gt;Uploaded video of the &amp;quot;Cluckaphone&amp;quot; - July 29, 2011 - [https://www.youtube.com/watch?v=PNOhZX7ftLk&amp;amp;feature=youtu.be]&lt;br /&gt;
Call with Marcin, Catarina and Charlie - OSE Planning&lt;br /&gt;
&lt;br /&gt;
=November 25, 2018=&lt;br /&gt;
Consultation about the establishment of an OSE Club at London International Academy and future directions for the development of OSE Clubs and Makerspaces.&lt;br /&gt;
&lt;br /&gt;
=November 24, 2018=&lt;br /&gt;
We made an OSE Cart Coin with FreeCAD &lt;br /&gt;
Here are the files for OSE Cart Coin v0.1:&lt;br /&gt;
[[File:OSECartCoin.fcstd]]&lt;br /&gt;
[[File:OSECartCoin.stl]]&lt;br /&gt;
Attended Marcin&#039;s presentation entitled &amp;quot;Education for the Open Source Economy&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=November 23, 2018=&lt;br /&gt;
Built a an OSE 3D printer at London International Academy&lt;br /&gt;
&lt;br /&gt;
=November 23-25=&lt;br /&gt;
Attended first OSE Professional Development workshop at London International Academy with Charles Freer, Pascal Gingras, Marcin and Catarina.&lt;br /&gt;
&lt;br /&gt;
=November 18-22= &lt;br /&gt;
Prepared for the visit of Marcin and Catarina to London.&lt;br /&gt;
&lt;br /&gt;
=November 17, 2018=&lt;br /&gt;
Conversation about OSE development with Charlie.  In particular, discussion about education and its relationship to developing the capacity to lead a meaningful and productive life. Reference to overlap of Baha&#039;i means and principles with those of the OSE - elimination of the extremes of wealth and poverty, building capabilities in a population, individual agency and initiative within a systematically evolving framework, etc.&lt;br /&gt;
&lt;br /&gt;
=November 16, 2018=&lt;br /&gt;
*Received US $5000 Shuttleworth Foundation Flash Grant&lt;br /&gt;
*Conference call with Marcin and Charles Freer regarding Marcin and Catarina&#039;s upcoming visit to London, Ontario&lt;br /&gt;
&lt;br /&gt;
=November 15, 2018=&lt;br /&gt;
Engineering Club students designed and printed a part to add to the Lyman Filament Extruder repository - a bracket for a rocker switch&lt;br /&gt;
&lt;br /&gt;
[[File:SwitchBracket2.png]]&lt;br /&gt;
[[File:Switchbase2.stl]]&lt;br /&gt;
[[File:SwitchBracket.FCStd]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=May, 2012=&lt;br /&gt;
Started project to build metric version of OSE CEB Press in Nanjing, China&lt;br /&gt;
&lt;br /&gt;
=April, 2012=&lt;br /&gt;
Began 3D Printing project in physics class at London International Academy&lt;br /&gt;
&lt;br /&gt;
=July, 2011-October, 2018=&lt;br /&gt;
Many things happened including severe neglect of the OSE wiki&lt;br /&gt;
Some highlights:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Regular incorporation of OSE concepts into classes and presentations 2011-present&lt;br /&gt;
*May, 2013 - started collaboration with Human InnovationPIE, a London non-profit organization focused on providing soft skills education for innovation.&lt;br /&gt;
*April, 2014 - Recognized in local paper for 3D Printer build with students&lt;br /&gt;
*July, 2015 - Asked to start STEM program at London International Academy further to success and popularity of 3D printer project&lt;br /&gt;
*September, 2015 - Began building Farmbot with students&lt;br /&gt;
*January, 2017 - Began teaching an Introduction to STEM course at Western University with significant OSE-based content.&lt;br /&gt;
&lt;br /&gt;
=July 16, 2011=&lt;br /&gt;
Arrived at Factor e Farm with Haydar Neal&lt;br /&gt;
&lt;br /&gt;
=March,  2011=&lt;br /&gt;
Saw TED Talk and wrote away to Marcin immediately&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=220121</id>
		<title>William Neal Log</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=220121"/>
		<updated>2020-05-08T19:31:37Z</updated>

		<summary type="html">&lt;p&gt;Wneal: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{RightTOC}}&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;600&amp;quot; height=&amp;quot;600&amp;quot; src=&amp;quot;https://osedev.org/wiki/William?start=2/1/2017&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
=Wednesday May 6-Friday May 8=&lt;br /&gt;
Call with Marcin - August Remote Camp.&lt;br /&gt;
https://wiki.opensourceecology.org/wiki/Andreas_Log#Thur-Fri_Apr_23-4.2C_2020&lt;br /&gt;
https://wiki.opensourceecology.org/wiki/Test&lt;br /&gt;
https://wiki.opensourceecology.org/wiki/OSE_Collaboration_Protocol&lt;br /&gt;
=Friday March 27 - Tuesday May 5=&lt;br /&gt;
Worked on &amp;quot;[https://docs.google.com/document/d/1_5LJo8GXV5Ct1f57bD4fB8xC0wyT9iANtgPVj-Dev0M/edit?usp=sharing ALT-L],&amp;quot; an accelerated mathematics and computer programming curriculum for secondary school students. The course is under development [https://drive.google.com/drive/folders/14da63JcyEaM5CfdXjSi5G1Vll_hHTj9k?usp=sharing here] with two groups of students from eight countries meeting twice weekly over Zoom. Created a related [https://docs.google.com/document/d/1QXsDVR2iXecT_T-NM8DEwA4o-Yh6eCNfLf4ze8VFVyM/edit?usp=sharing training manual] for the Guyana Prison system using open source technologies such as Linux and Python.&lt;br /&gt;
&lt;br /&gt;
=Sunday February 16 - Thursday March 26=&lt;br /&gt;
Work on OSE Challenging due to work, community and global crisis. &lt;br /&gt;
=Friday February 14 - Saturday February 15=&lt;br /&gt;
Personal Build Wishlist - Continued&lt;br /&gt;
=Friday February 7 - Thursday February 13=&lt;br /&gt;
[https://docs.google.com/document/d/11DUqroMKjpKGh2WxIpkJfl5HaPJJzIl8uK6saErtpgs/edit?usp=sharing William Neal Personal Build Wishlist] - Still under development&lt;br /&gt;
&lt;br /&gt;
=Monday, December 2 - Thursday Feb. 6, 2020=&lt;br /&gt;
End of semester disruption; start of semester disruption - a huge amount of time and effort spent on paperwork instead of education. Start of FRC robotics season. Start of computer programming and computer engineering classes. &lt;br /&gt;
=Saturday November 30 - Sunday December 1=&lt;br /&gt;
Finished OSE Prusa Build in Guyana. Used [https://www.repetier.com/documentation/repetier-firmware/ Repetier Firmware] and [https://www.repetier.com/ Repetier Host] to control the printer.&lt;br /&gt;
=Thursday November 28 - Friday November 29=&lt;br /&gt;
Workshop with the Guyana Prison Service - 12 prison staff from five facilities in Guyana. Reactivated 6 discarded computers using Ubuntu and OSE Linux. [[Introduction to Python]]. [https://m.facebook.com/groups/398759490316633?view=permalink&amp;amp;id=1215623975296843 OSE Prusa Build]&lt;br /&gt;
&lt;br /&gt;
=Saturday November 23  Wednesday November 27=&lt;br /&gt;
Workshop in Guyana with the Guyana Prison Service: The CSSP Project.  This project aims to replace the current model of prison management with an approach based on human nobility, education and rehabilitation.&lt;br /&gt;
=Thursday November 28=&lt;br /&gt;
[[OSE Linux]] - we got six old computers working on Ubuntu using flash drives.  Tomorrow will have an Open Source software workshop using OSE Linux on USB drives. We will use Python, FreeCAD, LibreOffice, etc. Showed the TED talk to our group of 12 prison officers from five facilities in Guyana.&lt;br /&gt;
&lt;br /&gt;
=Saturday November 2 - Friday November 22=&lt;br /&gt;
Worked on the [[OSE Prusa]] in order to support the establishment of a STEM centre in Trinidad and Tobago and to prepare for a workshop with the Government of Guyana.&lt;br /&gt;
#Items in a numbered list&lt;br /&gt;
#More Items&lt;br /&gt;
##Yet More&lt;br /&gt;
*Items in a bullet list&lt;br /&gt;
*More Items&lt;br /&gt;
**Yet More&lt;br /&gt;
&lt;br /&gt;
=Thursday October 24 - Friday November 1=&lt;br /&gt;
*Tested printing on the London replication of the D3D printer for the first time.&lt;br /&gt;
*Team of 9 students from Western university preparing a project around OSE - D3D replication + filament extruder replication + Chinese Reprap Prusa i3 reverse engineering.&lt;br /&gt;
=Sunday October 12 - Wednesday October 23=&lt;br /&gt;
*Updated some files used in the simple extruder build [https://wiki.opensourceecology.org/wiki/Simple_3D_Printer_Extruder#CAD here.]&lt;br /&gt;
&lt;br /&gt;
=Friday October 4 - Saturday October 11=&lt;br /&gt;
*Successfully tested D3D simple extruder based on Chinese Prusa i3.&lt;br /&gt;
*D3D challenge - Y axis end stop stopped working...&lt;br /&gt;
*Almost finished replicating first of two D3D printers in London Ontario.&lt;br /&gt;
*Preparing a D3D / Brushless motor workshop for the Guyana Prison Service. &lt;br /&gt;
*FreeCAD activity completed at Western University - varied response of individuals in the groups - the allocated time was too short. &lt;br /&gt;
=Friday September 27 - Thursday October 3=&lt;br /&gt;
*Continued work on D3D build.&lt;br /&gt;
*Experimenting with highly differentiated instruction unconstrained by government curricular concerns - our STEM club&#039;s three sections - Robotics / Computers and CAD / STEM projects have each gradually evolved over the last several weeks such that small groups of 1-4 students specialize on special tasks.&lt;br /&gt;
*Introduced FreeCAD to a group of junior youth from a local neighborhood. After about 40 minutes each group of two participants completed a motor rotor design.&lt;br /&gt;
*Second FreeCAD session with a group of 40 teacher candidate students at Western University&#039;s Althouse. Also used highly differentiated / interdisciplinary instruction with this group. After one hour and a half, most groups were able to generate several parts of a brushless motor and begin the process of parameterizing with a spreadsheet and creating an assembly.  Some trained engineers in the crowd generated excellent &amp;quot;propellers&amp;quot; for the motor using advanced features.&lt;br /&gt;
&lt;br /&gt;
=Tuesday, September 1 - Thursday, September 26=&lt;br /&gt;
*New School Year - over 40 students participating in our special STEM/Business/Arts program.&lt;br /&gt;
*Two sections of our program, STEM Projects and Computer Programming/CAD,  include OSE-related topics:&lt;br /&gt;
**Building 3D printers&lt;br /&gt;
**3D-printing&lt;br /&gt;
**OSE Motor design and fabrication&lt;br /&gt;
**Filament extruder&lt;br /&gt;
**CAD&lt;br /&gt;
*Building a 3D printer in collaboration with Bill Phelan, Vice President of Die-X Ltd.&lt;br /&gt;
*Remote collaboration with Branko Misovic in Holland.&lt;br /&gt;
*Preparing for a two-week 3D-printer build / open source hardware workshop in Guyana in November.&lt;br /&gt;
*Working on simple extruder for the D3D printer.&lt;br /&gt;
*Some 3D-printed parts for the D3D printer are not precise enough as they were printed with 1.0mm and 0.8mm nozzles.  We are switching to a 0.4mm nozzle and re-printing.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 27 - Monday September 1=&lt;br /&gt;
*Preparation for STEM camps in China. &lt;br /&gt;
*Travel to China.  Caught behind firewall - Internet was actually a large Intranet - difficult to post, communicate or access any useful sites. &lt;br /&gt;
*STEM Camp at Fujing Foreign language school - 10 days - 60 students, 1.5 hours daily - worked on FreeCAD and the OSE motor. &lt;br /&gt;
*Built OSE D3D printer with eight 9-11 year-old students (10 days, 3 hours daily) at EIC Education in Shenzhen.  The students assembled the axes and helped design some custom 3D-printed brackets for the frame which had to be made out of linear rail. The students learned FreeCAD and were able to design useful parts. Ganesh Ramsahai provided support in completing the build and configuration process. Presented the OSE D3D Shenzhen to the EIC Education Group with a half-hour overview and offer to provide remote support.&lt;br /&gt;
*STEM Camp at Zhangjiagang Foreign Language School in Jiangsu province. 30 students, 3 days, 6 hours per day.  Introduced FreeCAD and had the students design rotors and stators for the OSE brushless motor.&lt;br /&gt;
*Showed the TED talk to four different groups.&lt;br /&gt;
*Uploaded raw FreeCAD and stl files from the camps at Fujing Foreign Language School and Zhangjiagang Foreign Language School to [https://drive.google.com/open?id=1K7U8lEGqRgxwQf-WNX1Llbf-WE7LJCqL Google Drive]&lt;br /&gt;
*Uploaded [https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH custom files] generated during the build of the D3D 19.08 Shenzhen.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 20 - Friday July 26=&lt;br /&gt;
LIA summer STEM camp continued with 38 different students from Shenzhen, China.  The students discussed, in the context of Marcin&#039;s TED Talk, the concept that the human mind, focused and in collaboration with others, has the power to make positive changes in society.  Design of covers and caps for the OSE radial motor. Photos from the STEM Camp activities are [https://photos.app.goo.gl/zcpKk8jaFcDon31K7 here].  Trying to find the USB where we collected all the FreeCAD files.  These will be posted ASAP.&lt;br /&gt;
&lt;br /&gt;
=Monday July 15 - Friday July 19=&lt;br /&gt;
LIA summer STEM camp with 23 students from Vietnam and China. OSE Motor project part II - designing, printing and testing a radial motor. The motor concept was based on the following video: [https://www.youtube.com/watch?v=JkwLpAAfBVI 3D-Printed Axial Brushless Motor for Drones] Students were presented with the concept and asked to design such a motor from scratch using two rotors with eight disc magnets each and two sets of six wire loops.&lt;br /&gt;
&lt;br /&gt;
=Wednesday July 10 - Sunday July 14=&lt;br /&gt;
Preparation for summer STEM Camps at LIA.  Prepared 3D printers.  Began replication of two D3D v19.06 units.&lt;br /&gt;
=Friday June 28 - Tuesday July 9= &lt;br /&gt;
Open Source Ecology Microfactory STEAM Camp&lt;br /&gt;
=Thursday June 27=&lt;br /&gt;
Titan Aero finally working better with 1.5 full turns + a little bit more for good measure - has not jammed all afternoon now - three parts printed.  Logistics for Microfatory STEAM Camp - rented a vehicle and contacted a few participants. A prototype of the OSE extruder has been nearly completed. The extruder gear is scheduled to arrive at Factor e Farm by tomorrow. Then it will be ready for testing.  [https://photos.app.goo.gl/fWUX8ynAdqcn6Fvs6 OSE D3D Extruder - Photo Album][https://drive.google.com/open?id=17BLyvyk1EbrMOhkCfeSwByAq86SemSLX Files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 25 - Wednesday June 26=&lt;br /&gt;
OSE D3D Extruder.  Worked on attaching extruder to X-axis. Ordered extruder motor gears to arrive at FeF on Friday. Printed out bracket 1 successfully. Working on large aluminium block and designing x-axis adapter.&lt;br /&gt;
=Monday June 24=&lt;br /&gt;
Discussion about design of OSE Power Electronics. Problem - transformers are expensive and inflexible. Solution - research the feasibility of creating a 120V buck converter.  Would it be sufficiently efficient and would it be feasible to build?  Here are some potential parts to use: [https://www.digikey.ca/product-detail/en/comchip-technology/GBPC5010W-G/641-1389-ND/2074854 1kV Recifier] [https://www.digikey.ca/product-detail/en/ixys/IXFX120N65X2/IXFX120N65X2-ND/5629498?utm_adgroup=&amp;amp;mkwid=sFMkJ49os&amp;amp;pcrid=311971049444&amp;amp;pkw=&amp;amp;pmt=&amp;amp;pdv=c&amp;amp;productid=5629498&amp;amp;slid=&amp;amp;gclid=EAIaIQobChMIgbDd1fSC4wIVwkOGCh1f8gijEAQYAyABEgJGffD_BwE 650V MOSFET].  One problem seems to be that there may be a high level of energy loss in the circuit....[https://www.digikey.com/product-detail/en/everlight-electronics-co-ltd/H11L1S-TA/1080-1201-1-ND/2675935 Optocoupler] (to isolate the Arduino)[http://fpec.ucf.edu/teaching/EEL%205245%20Lectures/Lecture13%20Chapter4_BoostandBuckBoost_CCM_Analysis.pdf Some background theory]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 19 - Sunday June 23=&lt;br /&gt;
DIY Buck Converter based on the following video (and others): https://www.youtube.com/watch?v=L5oeY53pE0E&amp;amp;t=162s. [https://photos.app.goo.gl/kkHUwBQtD7h48mhB6 Photos.] All four 3D printers are down.  A crucial piece of the extruder of the most reliable printer finally broke. CAD already done for the replacement part. Got the OSE D3D working again on Friday.  Ready for printing on Monday - will print replacement part for other printer.  Other 2 printers almost working...&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 18=&lt;br /&gt;
[https://www.pythonpowerelectronics.com/ Python Power Electronics]&lt;br /&gt;
=Thursday June 13 - Monday June 17=&lt;br /&gt;
Buck Converters. OSE [[Power Electronics]] research. Arduino as controller of Power electronics - frequency issues / limitations. Scalability of Power electronics - can we add modular components to increase voltage, current, etc.?  &lt;br /&gt;
=Tuesday June 11 - Wednesday June 12=&lt;br /&gt;
Completed and sent CAD Drawings for OSE 3D Printer. Spent most of Wednesday working through a jam on the Titan Aero - it has jammed more in a few days than our other extruder has jammed in over three years.&lt;br /&gt;
=Monday June 10=&lt;br /&gt;
[https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH FreeCAD Drawings] for OSE 3D Printer. Note the use of parametric design in the CAD files - Spreadsheet values become variables used in constraint dimensions.&lt;br /&gt;
The following is my most recent FreeCAD Parametric Part Design and Drawing Workflow:[[FreeCAD Workflow]]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 5 - Sunday June 9=&lt;br /&gt;
[https://www.youtube.com/watch?v=CEhBN5_fO5o|DC-DC Buck Converters]&lt;br /&gt;
Power Supply: Transformer + Buck Converter + Ripple Smoothing Circuitry&lt;br /&gt;
=Tuesday June 4=&lt;br /&gt;
*[[Arduino Controlled Power Supply]] - ordered many components.&lt;br /&gt;
*Many electronic components specified in DIY articles and videos are now listed as obsolete.  Finding replacement parts is not easy. Case in point: LM338K Linear Voltage Regulators - Listed as obsolete on the Mouser website and selling for $91 or more on the Digi-key website.&lt;br /&gt;
*[https://www.eetimes.com/document.asp?doc_id=1333695# Article about obsolescence and demand and supply issues in the electronics industry]&lt;br /&gt;
&lt;br /&gt;
=Saturday June 1 - Monday June 3=&lt;br /&gt;
Reviewed [[OSE Design Guides]] Reviewed [[DIY Semiconductors]] Microfactory STEAM Camp Critical Path [[Arduino Controlled Power Supply]] Fabrication of aluminium blocks for hot end for OSE 3D printer extruder. Parametric modelling in FreeCAD.&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 28 - Friday May 31=&lt;br /&gt;
[[Halbach Array Brushless Motor]]&lt;br /&gt;
&lt;br /&gt;
=Monday May 27= &lt;br /&gt;
[https://www.youtube.com/watch?v=uOQk8SJso6Q How to Control an ESC with an Arduino] [https://photos.app.goo.gl/HMvWbigvuw3S26YG8 Test of the OSE Motor].&lt;br /&gt;
&lt;br /&gt;
=Friday May 24 - Sunday May 26= &lt;br /&gt;
Not all that much.&lt;br /&gt;
=Thursday May 23=&lt;br /&gt;
Thank you to Marcin and Catarina for a refreshing, enlightening and enjoyable visit to Factor e Farm and the Seed Ecohome. Returned to London.&lt;br /&gt;
=Wednesday May 22=&lt;br /&gt;
Skype appointment - 12pm Missouri time - friend in Colombia. Uploaded FreeCAD files for D3D v19.04 Power Plug Case to Wiki. [https://en.wikipedia.org/wiki/Buck_converter Buck Converter]&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 21=&lt;br /&gt;
[https://www.powerelectronicsnews.com/problems-solutions/power-supply-design-tutorial Power Supply Design Tutorial] Edited the [https://docs.google.com/document/d/1_3t_97giFOtqJ4ExPZdYeVEilCRhMmu0IWLLpBCrG-0/edit?usp=sharing Video Script] &lt;br /&gt;
Contacted STEM people in Nigeria and Pennsylvania based on the OSE STEAM Camp posted in this [https://www.facebook.com/groups/822455171229260/ Facebook Forum]&lt;br /&gt;
Further communication with friends in Mexico regarding the STEAM camp. Contacted a friend of a friend in Kansas City - Baha&#039;i Community.&lt;br /&gt;
&lt;br /&gt;
=Monday May 20=&lt;br /&gt;
Posted Microfactory STEAM camp on several Facebook STEM/STEAM Education pages. [[The Living Curriculum]] [https://github.com/MarlinFirmware/Marlin/issues/8903 Marlin Bed Temperature Settings] Worked on the Titan-Aero extruder repairs. The two parts of the extruder tube must be fairly tight (but not too tight!) to avoid leakage.&lt;br /&gt;
&lt;br /&gt;
=Sunday May 19=&lt;br /&gt;
Printing ABS using the OSE D3D - Set the bed temperature to 83 and the nozzle temperature to 255.  After 5 minutes of printing, several layers were adhering well. Thermal runaway. Tried 80 and 244; thermal runaway again. Joined several online STEM/Education groups.&lt;br /&gt;
&lt;br /&gt;
=Saturday May 18=&lt;br /&gt;
[[OSE Revenue Generation]] - Grameen Bank / Social Business - [[OSE Curriculum]]&lt;br /&gt;
&lt;br /&gt;
=Friday May 17=&lt;br /&gt;
[[OSE STEM Camp Marketing Strategy]]&lt;br /&gt;
=Friday May 10 - Thursday May 16= &lt;br /&gt;
Preparation for trip to Factor e Farm - gathered supplies - PCB boards, glossy paper, wire, magnets, electronic components, hardware, etc. Arrival at Factor e Farm. Work on D3D v. 19.04: [Photos - OSE D3D v19.04 Build at FeF https://www.facebook.com/photo.php?fbid=10161819908970597&amp;amp;set=pcb.1063740287151880&amp;amp;type=3&amp;amp;theater&amp;amp;ifg=1]&lt;br /&gt;
 &lt;br /&gt;
=Friday April 12 - Thursday May 9=&lt;br /&gt;
[https://drive.google.com/open?id=1-DpgMCARsA5iz4JLZtUeP3SD4a3UrXhj OSE Motor Completed] - ready for testing - Open Source Chinese Prusa i3 Printer Extruder - Configured and began printing with OSE D3D - printing very well at the moment - Booked a flight to Kansas City - heading to Factor e Farm soon!&lt;br /&gt;
&lt;br /&gt;
=Monday March 4 - Thursday April 11=&lt;br /&gt;
FRC Robotics - Ryerson University, Western University. OSE Motor - students have made some progress: [https://drive.google.com/open?id=1n99XWM8KMwvnV-tCmcWjImsBG27ReRSc OSE Brushless Motor] Additional work on the [[Simple 3D Printer Extruder]]&lt;br /&gt;
&lt;br /&gt;
=Sunday March 3=&lt;br /&gt;
Completed the first model of the most difficult part to CAD in the extruder - the X-Axis bracket.  Will now print CAD files and measure their accuracy before making changes to the CAD parameters.  Hopefully this process will result in more accurate parts.&lt;br /&gt;
&lt;br /&gt;
=Friday March 1 - Saturday March 2 =&lt;br /&gt;
Further work on open sourcing Chinese Prusa i3 3D printer extruder.&lt;br /&gt;
&lt;br /&gt;
=Monday February 18 - Thursday February 28=&lt;br /&gt;
Began the process of open-sourcing our 3D printer extruder: [[Simple 3D Printer Extruder]] (see photos and CAD files in the 3D Printer Folder) &lt;br /&gt;
Started a new unit in Computer Engineering Technology class.  Two groups of students are working on OSE materials:  &lt;br /&gt;
#The OSE Collaborative Contest&lt;br /&gt;
#The OSE Filament Extruder&lt;br /&gt;
&lt;br /&gt;
=Saturday February 9-Sunday February 17=&lt;br /&gt;
Hosted a group of six STEM students from School of the Nations in Georgetown, Guyana. STEM Camp at London International Academy.  Introduced the concept of the OSE collaborative contest. Introductory FreeCAD activities. Introduced Python computer programming.  Printed out various parts for an open source brushless motor.  [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX Link to CAD Files] (see School of the Nations sub-folder)[[file:Rotor.jpg|200px]] [http://guyanachronicle.com/2019/02/17/nations-benefits-from-robotics-training-in-canada Article in Guyana Chronicle]&lt;br /&gt;
&lt;br /&gt;
=Wednesday February 6= &lt;br /&gt;
[[OSE Coopetition]].  Discussed wiki + part library + documentation of OSE Coopetition.&lt;br /&gt;
&lt;br /&gt;
=Monday February 4=&lt;br /&gt;
Uploaded version 0.1 of the OSE Collaborative Contest Rules to [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest]&lt;br /&gt;
=Wednesday January 30 - Sunday February 3=&lt;br /&gt;
FRC Build season.  [https://drive.google.com/drive/folders/1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH?usp=sharing Team 6162 Cap Alpaca FreeCAD files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday January 29=&lt;br /&gt;
Collected FreeCAD files in a Google drive folder: [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest] &lt;br /&gt;
Summary of Nanjing group&#039;s schedule: [https://docs.google.com/document/d/1R-Dtu3kdZ0u8Qo5w3_vDuNEg5myr8mUmLjSpPOf-HoI/edit?usp=sharing | 2019 Winter Camp]&lt;br /&gt;
Here is some sample work from the FreeCAD workshop:&lt;br /&gt;
*[[File:ReyJessica.png|200px]]&lt;br /&gt;
*[[File:ZJHLSR.png|200px]]&lt;br /&gt;
&lt;br /&gt;
=Sunday January 27 - Monday January 28=&lt;br /&gt;
Discussed record keeping, file sharing and other skills for collaborative literacy. Created a sample page stub: [[Brushless Motor Design]].  Asked students to reflect on sessions learning FreeCAD.  Found that it is not necessary to learn a whole lot about FreeCAD in order to get students learning it.  Demonstrated two sample FreeCAD 0.17 design processes:&lt;br /&gt;
#Design a part like a motor adapter: body - sketch a circle - pad - sketch on a surface - pocket&lt;br /&gt;
#Design a sketch with constraints - some straight lines and some arcs closed in a loop with particular dimensions and angles.&lt;br /&gt;
After that, students were directed to Youtube videos that covered specific additional skills: &lt;br /&gt;
*Threading - inner and outer&lt;br /&gt;
*Polar patterns&lt;br /&gt;
Through this process, I learned how to do these skills from some students and was able to show other students the same, especially with polar patterns.&lt;br /&gt;
&lt;br /&gt;
=Sunday January, 20 - Saturday January 26, 2019=&lt;br /&gt;
Prepared for and welcomed 19 students from Jinling High School in China. Introduced the concept of the OSE Collaborative Contest.  Marcin spoke with the group over Jitsi on Thursday and on Saturday and proposed that the students participate in the OSE Collaborative Contest. It was well received despite the students&#039; fatigue from travel and skiing. Introduced FreeCAD and had students download and install it. Some computers do not immediately work with FreeCAD; hope that the problem may be solved. We plan to further discuss the students&#039; participation in the contest tomorrow and 3D print some of their early FreeCAD work on Monday. Created a link to LIA students&#039; FreeCAD work.  Currently the folder is being used for FRC preparation.  After the FRC robot is built, we are planning to transition to OSE-related work in this folder: [https://drive.google.com/open?id=1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH LIA OSE Club CAD Files]&lt;br /&gt;
&lt;br /&gt;
=Thursday January 10 - Saturday Jan 19, 2019=&lt;br /&gt;
Heaviest schedule of the year - January and February; progress slower during this time. Working on STEM Curriculum for FeF STEM Camps - [[Summer School 2019]].&lt;br /&gt;
&lt;br /&gt;
=Wed Jan 9, 2019=&lt;br /&gt;
*Use a presentation - template - make a copy - pass this to Heydar - document the simple 3D printing extruder for a low cost 3d printer - [https://docs.google.com/presentation/d/1_kUzO4eRCqrHVpqxSSTs17oLhtikTTyYe_1NxrTKlTI/edit#slide=id.g45ed589c64_0_0]&lt;br /&gt;
*Homework: Complete STEM Curriculum&lt;br /&gt;
&lt;br /&gt;
=January 2, 2019=&lt;br /&gt;
Ordered parts for a brushless motor to be constructed as part of the contest and part of the Computer Engineering Technology class at London International Academy.&lt;br /&gt;
In order to make the collaborative contest work, we will need to create a kit of parts to be easily shipped to participating schools.&lt;br /&gt;
&lt;br /&gt;
=December 24 2018-January 1, 2019=&lt;br /&gt;
Took a break. Reflected on plans for OSE London / OSE Club at London International Academy / OSE Collaborative Contest&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=December 23, 2018=&lt;br /&gt;
Defined particulars of [[OSE STEM Camps]].&lt;br /&gt;
&lt;br /&gt;
=December 22,2018=&lt;br /&gt;
[[William Conversation | Conversation with Marcin]]. Research on OSE Club Activities. Planning for winter semester courses&#039; links to OSE - Computer Engineering Technology and Computer Science. Plans to do the following in Computer Engineering Technology: build a brushless motor and ESC from scratch. Computer Science: Programming projects related to OSE - simulation program? Western University Introduction to STEM Class - offer the OSE Competition as a choice for a final project - help administer / judge / communicate / etc.&lt;br /&gt;
&lt;br /&gt;
=December 12-21, 2018=&lt;br /&gt;
Exams and marking - excellent ways to hinder educational progress. Discussed Canadian bill of materials with Russ Purvis. Discussed the upcoming OSE workshop in Prince George, BC currently in the planning phase. Several phone conversations with Charlie. Worked on some particulars for the upcoming OSE competition in January. Contacted a teacher in Iran to invite her to join the competition with her students. Sent a letter of reference to Russ with respect to hosting an OSE workshop.&lt;br /&gt;
&lt;br /&gt;
=December 8-11, 2018=&lt;br /&gt;
Spoke with Charlie about development of OSE workshops.  Spoke with Marcin and Catarina about the same. Updated Marcin about development of OSE club at London International Academy.  We now have plans to include at least four schools in our first design challenge - School of the Nations in Guyana, Fujing Foreign Language School in Shenzhen and Jinling School in Nanjing. Was approached by a friend to contact Makerspace managers in St. Thomas and Toronto. Arranged a meeting with the makerspace managers at Western University. OSE Marlin v18.10 works for printing with new printer. Successfully printed base layer of a file.  It seems that the extruder may have jammed.  Will check again as soon as possible. LIA students continue to develop their FreeCAD skills and are able to design parts in parallel according to a spacial plan and assemble them into a larger model. Installed OSE Linux on laptop now with a new old-school 1TcB hard drive. OSE Linux did not recognise the card reader; everything else seems to work very well. &amp;lt;strong&amp;gt;Note: Stepper motors on y axis of D3D became alarmingly hot after about 15 minutes of printing.&amp;lt;/strong&amp;gt; Perhaps this is a configuration issue; may need to resolve this before allowing the printer to do a full print.&lt;br /&gt;
&lt;br /&gt;
=December 7, 2018= &lt;br /&gt;
Using OSE Ubuntu on laptop with fried SSD. Internet has connection through ping but does not display pages in Chromium. D3D Marlin recent version from OSE website installed in printer. Autohome produces a collision of the z axis with the extruder as by default the z probe is off the plate.  Tried to move the y axis using various commands such as G0 Y40 and G1 Y40 all of which cause the Y axis to move until it hits the maximum physically possible position. Spoke with Johann Wong about the possibility of combining an OSE Makerspace skills (Arduino, CAD, etc.) + 3D printer workshop with Human Innovation PIE&#039;s soft skills innovation workshop through the London International Academy Foundation. Was using wrong Marlin file for D3D printer - will try correct one asap. Suggestions for D3D: use zip ties and clothespin springs for tensioning belts.  This has worked exceptionally well and reliably for our Chinese Prusa derivative; the belts have needed nearly no attention in three years.&lt;br /&gt;
&lt;br /&gt;
=December 6, 2018=&lt;br /&gt;
Was about to test print on OSE D3D when SSD crashed.  Did Ubuntu fry it?  Researching this.&lt;br /&gt;
&lt;br /&gt;
=December 5, 2018=&lt;br /&gt;
Introduced the OSE design challenge to OSE Club students at London International Academy.&lt;br /&gt;
&lt;br /&gt;
=December 4, 2018= &lt;br /&gt;
Held an informal Introduction to Arduino Workshop at London International Academy to help two grade 11 students with a project.  Spoke with Marcin about plans for the OSE design challenge, OSE club and possibility of a summer camp at FeF in May or June of 2019.&lt;br /&gt;
&lt;br /&gt;
=December 2, 2018=&lt;br /&gt;
 Created a document outlining a framework for OSL - Open Source London and shared it on Google Docs; visited Charlie to discuss the document.&lt;br /&gt;
&lt;br /&gt;
=November 29, 2018=&lt;br /&gt;
 Introduced OSE 3D Printer and Prusa i3 3D printer to parents and students at a local French Immersion school - PAFI.  Designed and printed various models using Blender and Repetier.&lt;br /&gt;
&lt;br /&gt;
=November 28, 2018=&lt;br /&gt;
*Updated OSECartCoin with letters. &lt;br /&gt;
**[[File:PAFI.stl]]&lt;br /&gt;
**[[File:PAFI.fcstd]]&lt;br /&gt;
*Call with Marcin regarding &#039;&#039;&#039;[[LIA OSE Club]]&#039;&#039;&#039;&lt;br /&gt;
*Build from last week - [https://www.facebook.com/groups/398759490316633/permalink/963594880499755/]&lt;br /&gt;
&lt;br /&gt;
=November 27, 2018=&lt;br /&gt;
Wrote the suggested intro to Marcin&#039;s next TED talk: [[Marcin&#039;s Next TED Talk]]&lt;br /&gt;
=November 26, 2018=&lt;br /&gt;
Uploaded FeF Brick Press Fabrication video from July 29, 2011 - [https://youtu.be/LwW8sOUO00s]&lt;br /&gt;
&amp;lt;p&amp;gt;Uploaded video of the &amp;quot;Cluckaphone&amp;quot; - July 29, 2011 - [https://www.youtube.com/watch?v=PNOhZX7ftLk&amp;amp;feature=youtu.be]&lt;br /&gt;
Call with Marcin, Catarina and Charlie - OSE Planning&lt;br /&gt;
&lt;br /&gt;
=November 25, 2018=&lt;br /&gt;
Consultation about the establishment of an OSE Club at London International Academy and future directions for the development of OSE Clubs and Makerspaces.&lt;br /&gt;
&lt;br /&gt;
=November 24, 2018=&lt;br /&gt;
We made an OSE Cart Coin with FreeCAD &lt;br /&gt;
Here are the files for OSE Cart Coin v0.1:&lt;br /&gt;
[[File:OSECartCoin.fcstd]]&lt;br /&gt;
[[File:OSECartCoin.stl]]&lt;br /&gt;
Attended Marcin&#039;s presentation entitled &amp;quot;Education for the Open Source Economy&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=November 23, 2018=&lt;br /&gt;
Built a an OSE 3D printer at London International Academy&lt;br /&gt;
&lt;br /&gt;
=November 23-25=&lt;br /&gt;
Attended first OSE Professional Development workshop at London International Academy with Charles Freer, Pascal Gingras, Marcin and Catarina.&lt;br /&gt;
&lt;br /&gt;
=November 18-22= &lt;br /&gt;
Prepared for the visit of Marcin and Catarina to London.&lt;br /&gt;
&lt;br /&gt;
=November 17, 2018=&lt;br /&gt;
Conversation about OSE development with Charlie.  In particular, discussion about education and its relationship to developing the capacity to lead a meaningful and productive life. Reference to overlap of Baha&#039;i means and principles with those of the OSE - elimination of the extremes of wealth and poverty, building capabilities in a population, individual agency and initiative within a systematically evolving framework, etc.&lt;br /&gt;
&lt;br /&gt;
=November 16, 2018=&lt;br /&gt;
*Received US $5000 Shuttleworth Foundation Flash Grant&lt;br /&gt;
*Conference call with Marcin and Charles Freer regarding Marcin and Catarina&#039;s upcoming visit to London, Ontario&lt;br /&gt;
&lt;br /&gt;
=November 15, 2018=&lt;br /&gt;
Engineering Club students designed and printed a part to add to the Lyman Filament Extruder repository - a bracket for a rocker switch&lt;br /&gt;
&lt;br /&gt;
[[File:SwitchBracket2.png]]&lt;br /&gt;
[[File:Switchbase2.stl]]&lt;br /&gt;
[[File:SwitchBracket.FCStd]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=May, 2012=&lt;br /&gt;
Started project to build metric version of OSE CEB Press in Nanjing, China&lt;br /&gt;
&lt;br /&gt;
=April, 2012=&lt;br /&gt;
Began 3D Printing project in physics class at London International Academy&lt;br /&gt;
&lt;br /&gt;
=July, 2011-October, 2018=&lt;br /&gt;
Many things happened including severe neglect of the OSE wiki&lt;br /&gt;
Some highlights:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Regular incorporation of OSE concepts into classes and presentations 2011-present&lt;br /&gt;
*May, 2013 - started collaboration with Human InnovationPIE, a London non-profit organization focused on providing soft skills education for innovation.&lt;br /&gt;
*April, 2014 - Recognized in local paper for 3D Printer build with students&lt;br /&gt;
*July, 2015 - Asked to start STEM program at London International Academy further to success and popularity of 3D printer project&lt;br /&gt;
*September, 2015 - Began building Farmbot with students&lt;br /&gt;
*January, 2017 - Began teaching an Introduction to STEM course at Western University with significant OSE-based content.&lt;br /&gt;
&lt;br /&gt;
=July 16, 2011=&lt;br /&gt;
Arrived at Factor e Farm with Haydar Neal&lt;br /&gt;
&lt;br /&gt;
=March,  2011=&lt;br /&gt;
Saw TED Talk and wrote away to Marcin immediately&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=219621</id>
		<title>William Neal Log</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=219621"/>
		<updated>2020-05-05T19:03:15Z</updated>

		<summary type="html">&lt;p&gt;Wneal: /* Friday March 27-Tuesday May 5 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{RightTOC}}&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;600&amp;quot; height=&amp;quot;600&amp;quot; src=&amp;quot;https://osedev.org/wiki/William?start=2/1/2017&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
=Friday March 27 - Tuesday May 5=&lt;br /&gt;
Worked on &amp;quot;[https://docs.google.com/document/d/1_5LJo8GXV5Ct1f57bD4fB8xC0wyT9iANtgPVj-Dev0M/edit?usp=sharing ALT-L],&amp;quot; an accelerated mathematics and computer programming curriculum for secondary school students. The course is under development [https://drive.google.com/drive/folders/14da63JcyEaM5CfdXjSi5G1Vll_hHTj9k?usp=sharing here] with two groups of students from eight countries meeting twice weekly over Zoom. Created a related [https://docs.google.com/document/d/1QXsDVR2iXecT_T-NM8DEwA4o-Yh6eCNfLf4ze8VFVyM/edit?usp=sharing training manual] for the Guyana Prison system using open source technologies such as Linux and Python.&lt;br /&gt;
&lt;br /&gt;
=Sunday February 16 - Thursday March 26=&lt;br /&gt;
Work on OSE Challenging due to work, community and global crisis. &lt;br /&gt;
=Friday February 14 - Saturday February 15=&lt;br /&gt;
Personal Build Wishlist - Continued&lt;br /&gt;
=Friday February 7 - Thursday February 13=&lt;br /&gt;
[https://docs.google.com/document/d/11DUqroMKjpKGh2WxIpkJfl5HaPJJzIl8uK6saErtpgs/edit?usp=sharing William Neal Personal Build Wishlist] - Still under development&lt;br /&gt;
&lt;br /&gt;
=Monday, December 2 - Thursday Feb. 6, 2020=&lt;br /&gt;
End of semester disruption; start of semester disruption - a huge amount of time and effort spent on paperwork instead of education. Start of FRC robotics season. Start of computer programming and computer engineering classes. &lt;br /&gt;
=Saturday November 30 - Sunday December 1=&lt;br /&gt;
Finished OSE Prusa Build in Guyana. Used [https://www.repetier.com/documentation/repetier-firmware/ Repetier Firmware] and [https://www.repetier.com/ Repetier Host] to control the printer.&lt;br /&gt;
=Thursday November 28 - Friday November 29=&lt;br /&gt;
Workshop with the Guyana Prison Service - 12 prison staff from five facilities in Guyana. Reactivated 6 discarded computers using Ubuntu and OSE Linux. [[Introduction to Python]]. [https://m.facebook.com/groups/398759490316633?view=permalink&amp;amp;id=1215623975296843 OSE Prusa Build]&lt;br /&gt;
&lt;br /&gt;
=Saturday November 23  Wednesday November 27=&lt;br /&gt;
Workshop in Guyana with the Guyana Prison Service: The CSSP Project.  This project aims to replace the current model of prison management with an approach based on human nobility, education and rehabilitation.&lt;br /&gt;
=Thursday November 28=&lt;br /&gt;
[[OSE Linux]] - we got six old computers working on Ubuntu using flash drives.  Tomorrow will have an Open Source software workshop using OSE Linux on USB drives. We will use Python, FreeCAD, LibreOffice, etc. Showed the TED talk to our group of 12 prison officers from five facilities in Guyana.&lt;br /&gt;
&lt;br /&gt;
=Saturday November 2 - Friday November 22=&lt;br /&gt;
Worked on the [[OSE Prusa]] in order to support the establishment of a STEM centre in Trinidad and Tobago and to prepare for a workshop with the Government of Guyana.&lt;br /&gt;
#Items in a numbered list&lt;br /&gt;
#More Items&lt;br /&gt;
##Yet More&lt;br /&gt;
*Items in a bullet list&lt;br /&gt;
*More Items&lt;br /&gt;
**Yet More&lt;br /&gt;
&lt;br /&gt;
=Thursday October 24 - Friday November 1=&lt;br /&gt;
*Tested printing on the London replication of the D3D printer for the first time.&lt;br /&gt;
*Team of 9 students from Western university preparing a project around OSE - D3D replication + filament extruder replication + Chinese Reprap Prusa i3 reverse engineering.&lt;br /&gt;
=Sunday October 12 - Wednesday October 23=&lt;br /&gt;
*Updated some files used in the simple extruder build [https://wiki.opensourceecology.org/wiki/Simple_3D_Printer_Extruder#CAD here.]&lt;br /&gt;
&lt;br /&gt;
=Friday October 4 - Saturday October 11=&lt;br /&gt;
*Successfully tested D3D simple extruder based on Chinese Prusa i3.&lt;br /&gt;
*D3D challenge - Y axis end stop stopped working...&lt;br /&gt;
*Almost finished replicating first of two D3D printers in London Ontario.&lt;br /&gt;
*Preparing a D3D / Brushless motor workshop for the Guyana Prison Service. &lt;br /&gt;
*FreeCAD activity completed at Western University - varied response of individuals in the groups - the allocated time was too short. &lt;br /&gt;
=Friday September 27 - Thursday October 3=&lt;br /&gt;
*Continued work on D3D build.&lt;br /&gt;
*Experimenting with highly differentiated instruction unconstrained by government curricular concerns - our STEM club&#039;s three sections - Robotics / Computers and CAD / STEM projects have each gradually evolved over the last several weeks such that small groups of 1-4 students specialize on special tasks.&lt;br /&gt;
*Introduced FreeCAD to a group of junior youth from a local neighborhood. After about 40 minutes each group of two participants completed a motor rotor design.&lt;br /&gt;
*Second FreeCAD session with a group of 40 teacher candidate students at Western University&#039;s Althouse. Also used highly differentiated / interdisciplinary instruction with this group. After one hour and a half, most groups were able to generate several parts of a brushless motor and begin the process of parameterizing with a spreadsheet and creating an assembly.  Some trained engineers in the crowd generated excellent &amp;quot;propellers&amp;quot; for the motor using advanced features.&lt;br /&gt;
&lt;br /&gt;
=Tuesday, September 1 - Thursday, September 26=&lt;br /&gt;
*New School Year - over 40 students participating in our special STEM/Business/Arts program.&lt;br /&gt;
*Two sections of our program, STEM Projects and Computer Programming/CAD,  include OSE-related topics:&lt;br /&gt;
**Building 3D printers&lt;br /&gt;
**3D-printing&lt;br /&gt;
**OSE Motor design and fabrication&lt;br /&gt;
**Filament extruder&lt;br /&gt;
**CAD&lt;br /&gt;
*Building a 3D printer in collaboration with Bill Phelan, Vice President of Die-X Ltd.&lt;br /&gt;
*Remote collaboration with Branko Misovic in Holland.&lt;br /&gt;
*Preparing for a two-week 3D-printer build / open source hardware workshop in Guyana in November.&lt;br /&gt;
*Working on simple extruder for the D3D printer.&lt;br /&gt;
*Some 3D-printed parts for the D3D printer are not precise enough as they were printed with 1.0mm and 0.8mm nozzles.  We are switching to a 0.4mm nozzle and re-printing.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 27 - Monday September 1=&lt;br /&gt;
*Preparation for STEM camps in China. &lt;br /&gt;
*Travel to China.  Caught behind firewall - Internet was actually a large Intranet - difficult to post, communicate or access any useful sites. &lt;br /&gt;
*STEM Camp at Fujing Foreign language school - 10 days - 60 students, 1.5 hours daily - worked on FreeCAD and the OSE motor. &lt;br /&gt;
*Built OSE D3D printer with eight 9-11 year-old students (10 days, 3 hours daily) at EIC Education in Shenzhen.  The students assembled the axes and helped design some custom 3D-printed brackets for the frame which had to be made out of linear rail. The students learned FreeCAD and were able to design useful parts. Ganesh Ramsahai provided support in completing the build and configuration process. Presented the OSE D3D Shenzhen to the EIC Education Group with a half-hour overview and offer to provide remote support.&lt;br /&gt;
*STEM Camp at Zhangjiagang Foreign Language School in Jiangsu province. 30 students, 3 days, 6 hours per day.  Introduced FreeCAD and had the students design rotors and stators for the OSE brushless motor.&lt;br /&gt;
*Showed the TED talk to four different groups.&lt;br /&gt;
*Uploaded raw FreeCAD and stl files from the camps at Fujing Foreign Language School and Zhangjiagang Foreign Language School to [https://drive.google.com/open?id=1K7U8lEGqRgxwQf-WNX1Llbf-WE7LJCqL Google Drive]&lt;br /&gt;
*Uploaded [https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH custom files] generated during the build of the D3D 19.08 Shenzhen.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 20 - Friday July 26=&lt;br /&gt;
LIA summer STEM camp continued with 38 different students from Shenzhen, China.  The students discussed, in the context of Marcin&#039;s TED Talk, the concept that the human mind, focused and in collaboration with others, has the power to make positive changes in society.  Design of covers and caps for the OSE radial motor. Photos from the STEM Camp activities are [https://photos.app.goo.gl/zcpKk8jaFcDon31K7 here].  Trying to find the USB where we collected all the FreeCAD files.  These will be posted ASAP.&lt;br /&gt;
&lt;br /&gt;
=Monday July 15 - Friday July 19=&lt;br /&gt;
LIA summer STEM camp with 23 students from Vietnam and China. OSE Motor project part II - designing, printing and testing a radial motor. The motor concept was based on the following video: [https://www.youtube.com/watch?v=JkwLpAAfBVI 3D-Printed Axial Brushless Motor for Drones] Students were presented with the concept and asked to design such a motor from scratch using two rotors with eight disc magnets each and two sets of six wire loops.&lt;br /&gt;
&lt;br /&gt;
=Wednesday July 10 - Sunday July 14=&lt;br /&gt;
Preparation for summer STEM Camps at LIA.  Prepared 3D printers.  Began replication of two D3D v19.06 units.&lt;br /&gt;
=Friday June 28 - Tuesday July 9= &lt;br /&gt;
Open Source Ecology Microfactory STEAM Camp&lt;br /&gt;
=Thursday June 27=&lt;br /&gt;
Titan Aero finally working better with 1.5 full turns + a little bit more for good measure - has not jammed all afternoon now - three parts printed.  Logistics for Microfatory STEAM Camp - rented a vehicle and contacted a few participants. A prototype of the OSE extruder has been nearly completed. The extruder gear is scheduled to arrive at Factor e Farm by tomorrow. Then it will be ready for testing.  [https://photos.app.goo.gl/fWUX8ynAdqcn6Fvs6 OSE D3D Extruder - Photo Album][https://drive.google.com/open?id=17BLyvyk1EbrMOhkCfeSwByAq86SemSLX Files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 25 - Wednesday June 26=&lt;br /&gt;
OSE D3D Extruder.  Worked on attaching extruder to X-axis. Ordered extruder motor gears to arrive at FeF on Friday. Printed out bracket 1 successfully. Working on large aluminium block and designing x-axis adapter.&lt;br /&gt;
=Monday June 24=&lt;br /&gt;
Discussion about design of OSE Power Electronics. Problem - transformers are expensive and inflexible. Solution - research the feasibility of creating a 120V buck converter.  Would it be sufficiently efficient and would it be feasible to build?  Here are some potential parts to use: [https://www.digikey.ca/product-detail/en/comchip-technology/GBPC5010W-G/641-1389-ND/2074854 1kV Recifier] [https://www.digikey.ca/product-detail/en/ixys/IXFX120N65X2/IXFX120N65X2-ND/5629498?utm_adgroup=&amp;amp;mkwid=sFMkJ49os&amp;amp;pcrid=311971049444&amp;amp;pkw=&amp;amp;pmt=&amp;amp;pdv=c&amp;amp;productid=5629498&amp;amp;slid=&amp;amp;gclid=EAIaIQobChMIgbDd1fSC4wIVwkOGCh1f8gijEAQYAyABEgJGffD_BwE 650V MOSFET].  One problem seems to be that there may be a high level of energy loss in the circuit....[https://www.digikey.com/product-detail/en/everlight-electronics-co-ltd/H11L1S-TA/1080-1201-1-ND/2675935 Optocoupler] (to isolate the Arduino)[http://fpec.ucf.edu/teaching/EEL%205245%20Lectures/Lecture13%20Chapter4_BoostandBuckBoost_CCM_Analysis.pdf Some background theory]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 19 - Sunday June 23=&lt;br /&gt;
DIY Buck Converter based on the following video (and others): https://www.youtube.com/watch?v=L5oeY53pE0E&amp;amp;t=162s. [https://photos.app.goo.gl/kkHUwBQtD7h48mhB6 Photos.] All four 3D printers are down.  A crucial piece of the extruder of the most reliable printer finally broke. CAD already done for the replacement part. Got the OSE D3D working again on Friday.  Ready for printing on Monday - will print replacement part for other printer.  Other 2 printers almost working...&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 18=&lt;br /&gt;
[https://www.pythonpowerelectronics.com/ Python Power Electronics]&lt;br /&gt;
=Thursday June 13 - Monday June 17=&lt;br /&gt;
Buck Converters. OSE [[Power Electronics]] research. Arduino as controller of Power electronics - frequency issues / limitations. Scalability of Power electronics - can we add modular components to increase voltage, current, etc.?  &lt;br /&gt;
=Tuesday June 11 - Wednesday June 12=&lt;br /&gt;
Completed and sent CAD Drawings for OSE 3D Printer. Spent most of Wednesday working through a jam on the Titan Aero - it has jammed more in a few days than our other extruder has jammed in over three years.&lt;br /&gt;
=Monday June 10=&lt;br /&gt;
[https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH FreeCAD Drawings] for OSE 3D Printer. Note the use of parametric design in the CAD files - Spreadsheet values become variables used in constraint dimensions.&lt;br /&gt;
The following is my most recent FreeCAD Parametric Part Design and Drawing Workflow:[[FreeCAD Workflow]]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 5 - Sunday June 9=&lt;br /&gt;
[https://www.youtube.com/watch?v=CEhBN5_fO5o|DC-DC Buck Converters]&lt;br /&gt;
Power Supply: Transformer + Buck Converter + Ripple Smoothing Circuitry&lt;br /&gt;
=Tuesday June 4=&lt;br /&gt;
*[[Arduino Controlled Power Supply]] - ordered many components.&lt;br /&gt;
*Many electronic components specified in DIY articles and videos are now listed as obsolete.  Finding replacement parts is not easy. Case in point: LM338K Linear Voltage Regulators - Listed as obsolete on the Mouser website and selling for $91 or more on the Digi-key website.&lt;br /&gt;
*[https://www.eetimes.com/document.asp?doc_id=1333695# Article about obsolescence and demand and supply issues in the electronics industry]&lt;br /&gt;
&lt;br /&gt;
=Saturday June 1 - Monday June 3=&lt;br /&gt;
Reviewed [[OSE Design Guides]] Reviewed [[DIY Semiconductors]] Microfactory STEAM Camp Critical Path [[Arduino Controlled Power Supply]] Fabrication of aluminium blocks for hot end for OSE 3D printer extruder. Parametric modelling in FreeCAD.&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 28 - Friday May 31=&lt;br /&gt;
[[Halbach Array Brushless Motor]]&lt;br /&gt;
&lt;br /&gt;
=Monday May 27= &lt;br /&gt;
[https://www.youtube.com/watch?v=uOQk8SJso6Q How to Control an ESC with an Arduino] [https://photos.app.goo.gl/HMvWbigvuw3S26YG8 Test of the OSE Motor].&lt;br /&gt;
&lt;br /&gt;
=Friday May 24 - Sunday May 26= &lt;br /&gt;
Not all that much.&lt;br /&gt;
=Thursday May 23=&lt;br /&gt;
Thank you to Marcin and Catarina for a refreshing, enlightening and enjoyable visit to Factor e Farm and the Seed Ecohome. Returned to London.&lt;br /&gt;
=Wednesday May 22=&lt;br /&gt;
Skype appointment - 12pm Missouri time - friend in Colombia. Uploaded FreeCAD files for D3D v19.04 Power Plug Case to Wiki. [https://en.wikipedia.org/wiki/Buck_converter Buck Converter]&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 21=&lt;br /&gt;
[https://www.powerelectronicsnews.com/problems-solutions/power-supply-design-tutorial Power Supply Design Tutorial] Edited the [https://docs.google.com/document/d/1_3t_97giFOtqJ4ExPZdYeVEilCRhMmu0IWLLpBCrG-0/edit?usp=sharing Video Script] &lt;br /&gt;
Contacted STEM people in Nigeria and Pennsylvania based on the OSE STEAM Camp posted in this [https://www.facebook.com/groups/822455171229260/ Facebook Forum]&lt;br /&gt;
Further communication with friends in Mexico regarding the STEAM camp. Contacted a friend of a friend in Kansas City - Baha&#039;i Community.&lt;br /&gt;
&lt;br /&gt;
=Monday May 20=&lt;br /&gt;
Posted Microfactory STEAM camp on several Facebook STEM/STEAM Education pages. [[The Living Curriculum]] [https://github.com/MarlinFirmware/Marlin/issues/8903 Marlin Bed Temperature Settings] Worked on the Titan-Aero extruder repairs. The two parts of the extruder tube must be fairly tight (but not too tight!) to avoid leakage.&lt;br /&gt;
&lt;br /&gt;
=Sunday May 19=&lt;br /&gt;
Printing ABS using the OSE D3D - Set the bed temperature to 83 and the nozzle temperature to 255.  After 5 minutes of printing, several layers were adhering well. Thermal runaway. Tried 80 and 244; thermal runaway again. Joined several online STEM/Education groups.&lt;br /&gt;
&lt;br /&gt;
=Saturday May 18=&lt;br /&gt;
[[OSE Revenue Generation]] - Grameen Bank / Social Business - [[OSE Curriculum]]&lt;br /&gt;
&lt;br /&gt;
=Friday May 17=&lt;br /&gt;
[[OSE STEM Camp Marketing Strategy]]&lt;br /&gt;
=Friday May 10 - Thursday May 16= &lt;br /&gt;
Preparation for trip to Factor e Farm - gathered supplies - PCB boards, glossy paper, wire, magnets, electronic components, hardware, etc. Arrival at Factor e Farm. Work on D3D v. 19.04: [Photos - OSE D3D v19.04 Build at FeF https://www.facebook.com/photo.php?fbid=10161819908970597&amp;amp;set=pcb.1063740287151880&amp;amp;type=3&amp;amp;theater&amp;amp;ifg=1]&lt;br /&gt;
 &lt;br /&gt;
=Friday April 12 - Thursday May 9=&lt;br /&gt;
[https://drive.google.com/open?id=1-DpgMCARsA5iz4JLZtUeP3SD4a3UrXhj OSE Motor Completed] - ready for testing - Open Source Chinese Prusa i3 Printer Extruder - Configured and began printing with OSE D3D - printing very well at the moment - Booked a flight to Kansas City - heading to Factor e Farm soon!&lt;br /&gt;
&lt;br /&gt;
=Monday March 4 - Thursday April 11=&lt;br /&gt;
FRC Robotics - Ryerson University, Western University. OSE Motor - students have made some progress: [https://drive.google.com/open?id=1n99XWM8KMwvnV-tCmcWjImsBG27ReRSc OSE Brushless Motor] Additional work on the [[Simple 3D Printer Extruder]]&lt;br /&gt;
&lt;br /&gt;
=Sunday March 3=&lt;br /&gt;
Completed the first model of the most difficult part to CAD in the extruder - the X-Axis bracket.  Will now print CAD files and measure their accuracy before making changes to the CAD parameters.  Hopefully this process will result in more accurate parts.&lt;br /&gt;
&lt;br /&gt;
=Friday March 1 - Saturday March 2 =&lt;br /&gt;
Further work on open sourcing Chinese Prusa i3 3D printer extruder.&lt;br /&gt;
&lt;br /&gt;
=Monday February 18 - Thursday February 28=&lt;br /&gt;
Began the process of open-sourcing our 3D printer extruder: [[Simple 3D Printer Extruder]] (see photos and CAD files in the 3D Printer Folder) &lt;br /&gt;
Started a new unit in Computer Engineering Technology class.  Two groups of students are working on OSE materials:  &lt;br /&gt;
#The OSE Collaborative Contest&lt;br /&gt;
#The OSE Filament Extruder&lt;br /&gt;
&lt;br /&gt;
=Saturday February 9-Sunday February 17=&lt;br /&gt;
Hosted a group of six STEM students from School of the Nations in Georgetown, Guyana. STEM Camp at London International Academy.  Introduced the concept of the OSE collaborative contest. Introductory FreeCAD activities. Introduced Python computer programming.  Printed out various parts for an open source brushless motor.  [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX Link to CAD Files] (see School of the Nations sub-folder)[[file:Rotor.jpg|200px]] [http://guyanachronicle.com/2019/02/17/nations-benefits-from-robotics-training-in-canada Article in Guyana Chronicle]&lt;br /&gt;
&lt;br /&gt;
=Wednesday February 6= &lt;br /&gt;
[[OSE Coopetition]].  Discussed wiki + part library + documentation of OSE Coopetition.&lt;br /&gt;
&lt;br /&gt;
=Monday February 4=&lt;br /&gt;
Uploaded version 0.1 of the OSE Collaborative Contest Rules to [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest]&lt;br /&gt;
=Wednesday January 30 - Sunday February 3=&lt;br /&gt;
FRC Build season.  [https://drive.google.com/drive/folders/1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH?usp=sharing Team 6162 Cap Alpaca FreeCAD files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday January 29=&lt;br /&gt;
Collected FreeCAD files in a Google drive folder: [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest] &lt;br /&gt;
Summary of Nanjing group&#039;s schedule: [https://docs.google.com/document/d/1R-Dtu3kdZ0u8Qo5w3_vDuNEg5myr8mUmLjSpPOf-HoI/edit?usp=sharing | 2019 Winter Camp]&lt;br /&gt;
Here is some sample work from the FreeCAD workshop:&lt;br /&gt;
*[[File:ReyJessica.png|200px]]&lt;br /&gt;
*[[File:ZJHLSR.png|200px]]&lt;br /&gt;
&lt;br /&gt;
=Sunday January 27 - Monday January 28=&lt;br /&gt;
Discussed record keeping, file sharing and other skills for collaborative literacy. Created a sample page stub: [[Brushless Motor Design]].  Asked students to reflect on sessions learning FreeCAD.  Found that it is not necessary to learn a whole lot about FreeCAD in order to get students learning it.  Demonstrated two sample FreeCAD 0.17 design processes:&lt;br /&gt;
#Design a part like a motor adapter: body - sketch a circle - pad - sketch on a surface - pocket&lt;br /&gt;
#Design a sketch with constraints - some straight lines and some arcs closed in a loop with particular dimensions and angles.&lt;br /&gt;
After that, students were directed to Youtube videos that covered specific additional skills: &lt;br /&gt;
*Threading - inner and outer&lt;br /&gt;
*Polar patterns&lt;br /&gt;
Through this process, I learned how to do these skills from some students and was able to show other students the same, especially with polar patterns.&lt;br /&gt;
&lt;br /&gt;
=Sunday January, 20 - Saturday January 26, 2019=&lt;br /&gt;
Prepared for and welcomed 19 students from Jinling High School in China. Introduced the concept of the OSE Collaborative Contest.  Marcin spoke with the group over Jitsi on Thursday and on Saturday and proposed that the students participate in the OSE Collaborative Contest. It was well received despite the students&#039; fatigue from travel and skiing. Introduced FreeCAD and had students download and install it. Some computers do not immediately work with FreeCAD; hope that the problem may be solved. We plan to further discuss the students&#039; participation in the contest tomorrow and 3D print some of their early FreeCAD work on Monday. Created a link to LIA students&#039; FreeCAD work.  Currently the folder is being used for FRC preparation.  After the FRC robot is built, we are planning to transition to OSE-related work in this folder: [https://drive.google.com/open?id=1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH LIA OSE Club CAD Files]&lt;br /&gt;
&lt;br /&gt;
=Thursday January 10 - Saturday Jan 19, 2019=&lt;br /&gt;
Heaviest schedule of the year - January and February; progress slower during this time. Working on STEM Curriculum for FeF STEM Camps - [[Summer School 2019]].&lt;br /&gt;
&lt;br /&gt;
=Wed Jan 9, 2019=&lt;br /&gt;
*Use a presentation - template - make a copy - pass this to Heydar - document the simple 3D printing extruder for a low cost 3d printer - [https://docs.google.com/presentation/d/1_kUzO4eRCqrHVpqxSSTs17oLhtikTTyYe_1NxrTKlTI/edit#slide=id.g45ed589c64_0_0]&lt;br /&gt;
*Homework: Complete STEM Curriculum&lt;br /&gt;
&lt;br /&gt;
=January 2, 2019=&lt;br /&gt;
Ordered parts for a brushless motor to be constructed as part of the contest and part of the Computer Engineering Technology class at London International Academy.&lt;br /&gt;
In order to make the collaborative contest work, we will need to create a kit of parts to be easily shipped to participating schools.&lt;br /&gt;
&lt;br /&gt;
=December 24 2018-January 1, 2019=&lt;br /&gt;
Took a break. Reflected on plans for OSE London / OSE Club at London International Academy / OSE Collaborative Contest&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=December 23, 2018=&lt;br /&gt;
Defined particulars of [[OSE STEM Camps]].&lt;br /&gt;
&lt;br /&gt;
=December 22,2018=&lt;br /&gt;
[[William Conversation | Conversation with Marcin]]. Research on OSE Club Activities. Planning for winter semester courses&#039; links to OSE - Computer Engineering Technology and Computer Science. Plans to do the following in Computer Engineering Technology: build a brushless motor and ESC from scratch. Computer Science: Programming projects related to OSE - simulation program? Western University Introduction to STEM Class - offer the OSE Competition as a choice for a final project - help administer / judge / communicate / etc.&lt;br /&gt;
&lt;br /&gt;
=December 12-21, 2018=&lt;br /&gt;
Exams and marking - excellent ways to hinder educational progress. Discussed Canadian bill of materials with Russ Purvis. Discussed the upcoming OSE workshop in Prince George, BC currently in the planning phase. Several phone conversations with Charlie. Worked on some particulars for the upcoming OSE competition in January. Contacted a teacher in Iran to invite her to join the competition with her students. Sent a letter of reference to Russ with respect to hosting an OSE workshop.&lt;br /&gt;
&lt;br /&gt;
=December 8-11, 2018=&lt;br /&gt;
Spoke with Charlie about development of OSE workshops.  Spoke with Marcin and Catarina about the same. Updated Marcin about development of OSE club at London International Academy.  We now have plans to include at least four schools in our first design challenge - School of the Nations in Guyana, Fujing Foreign Language School in Shenzhen and Jinling School in Nanjing. Was approached by a friend to contact Makerspace managers in St. Thomas and Toronto. Arranged a meeting with the makerspace managers at Western University. OSE Marlin v18.10 works for printing with new printer. Successfully printed base layer of a file.  It seems that the extruder may have jammed.  Will check again as soon as possible. LIA students continue to develop their FreeCAD skills and are able to design parts in parallel according to a spacial plan and assemble them into a larger model. Installed OSE Linux on laptop now with a new old-school 1TcB hard drive. OSE Linux did not recognise the card reader; everything else seems to work very well. &amp;lt;strong&amp;gt;Note: Stepper motors on y axis of D3D became alarmingly hot after about 15 minutes of printing.&amp;lt;/strong&amp;gt; Perhaps this is a configuration issue; may need to resolve this before allowing the printer to do a full print.&lt;br /&gt;
&lt;br /&gt;
=December 7, 2018= &lt;br /&gt;
Using OSE Ubuntu on laptop with fried SSD. Internet has connection through ping but does not display pages in Chromium. D3D Marlin recent version from OSE website installed in printer. Autohome produces a collision of the z axis with the extruder as by default the z probe is off the plate.  Tried to move the y axis using various commands such as G0 Y40 and G1 Y40 all of which cause the Y axis to move until it hits the maximum physically possible position. Spoke with Johann Wong about the possibility of combining an OSE Makerspace skills (Arduino, CAD, etc.) + 3D printer workshop with Human Innovation PIE&#039;s soft skills innovation workshop through the London International Academy Foundation. Was using wrong Marlin file for D3D printer - will try correct one asap. Suggestions for D3D: use zip ties and clothespin springs for tensioning belts.  This has worked exceptionally well and reliably for our Chinese Prusa derivative; the belts have needed nearly no attention in three years.&lt;br /&gt;
&lt;br /&gt;
=December 6, 2018=&lt;br /&gt;
Was about to test print on OSE D3D when SSD crashed.  Did Ubuntu fry it?  Researching this.&lt;br /&gt;
&lt;br /&gt;
=December 5, 2018=&lt;br /&gt;
Introduced the OSE design challenge to OSE Club students at London International Academy.&lt;br /&gt;
&lt;br /&gt;
=December 4, 2018= &lt;br /&gt;
Held an informal Introduction to Arduino Workshop at London International Academy to help two grade 11 students with a project.  Spoke with Marcin about plans for the OSE design challenge, OSE club and possibility of a summer camp at FeF in May or June of 2019.&lt;br /&gt;
&lt;br /&gt;
=December 2, 2018=&lt;br /&gt;
 Created a document outlining a framework for OSL - Open Source London and shared it on Google Docs; visited Charlie to discuss the document.&lt;br /&gt;
&lt;br /&gt;
=November 29, 2018=&lt;br /&gt;
 Introduced OSE 3D Printer and Prusa i3 3D printer to parents and students at a local French Immersion school - PAFI.  Designed and printed various models using Blender and Repetier.&lt;br /&gt;
&lt;br /&gt;
=November 28, 2018=&lt;br /&gt;
*Updated OSECartCoin with letters. &lt;br /&gt;
**[[File:PAFI.stl]]&lt;br /&gt;
**[[File:PAFI.fcstd]]&lt;br /&gt;
*Call with Marcin regarding &#039;&#039;&#039;[[LIA OSE Club]]&#039;&#039;&#039;&lt;br /&gt;
*Build from last week - [https://www.facebook.com/groups/398759490316633/permalink/963594880499755/]&lt;br /&gt;
&lt;br /&gt;
=November 27, 2018=&lt;br /&gt;
Wrote the suggested intro to Marcin&#039;s next TED talk: [[Marcin&#039;s Next TED Talk]]&lt;br /&gt;
=November 26, 2018=&lt;br /&gt;
Uploaded FeF Brick Press Fabrication video from July 29, 2011 - [https://youtu.be/LwW8sOUO00s]&lt;br /&gt;
&amp;lt;p&amp;gt;Uploaded video of the &amp;quot;Cluckaphone&amp;quot; - July 29, 2011 - [https://www.youtube.com/watch?v=PNOhZX7ftLk&amp;amp;feature=youtu.be]&lt;br /&gt;
Call with Marcin, Catarina and Charlie - OSE Planning&lt;br /&gt;
&lt;br /&gt;
=November 25, 2018=&lt;br /&gt;
Consultation about the establishment of an OSE Club at London International Academy and future directions for the development of OSE Clubs and Makerspaces.&lt;br /&gt;
&lt;br /&gt;
=November 24, 2018=&lt;br /&gt;
We made an OSE Cart Coin with FreeCAD &lt;br /&gt;
Here are the files for OSE Cart Coin v0.1:&lt;br /&gt;
[[File:OSECartCoin.fcstd]]&lt;br /&gt;
[[File:OSECartCoin.stl]]&lt;br /&gt;
Attended Marcin&#039;s presentation entitled &amp;quot;Education for the Open Source Economy&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=November 23, 2018=&lt;br /&gt;
Built a an OSE 3D printer at London International Academy&lt;br /&gt;
&lt;br /&gt;
=November 23-25=&lt;br /&gt;
Attended first OSE Professional Development workshop at London International Academy with Charles Freer, Pascal Gingras, Marcin and Catarina.&lt;br /&gt;
&lt;br /&gt;
=November 18-22= &lt;br /&gt;
Prepared for the visit of Marcin and Catarina to London.&lt;br /&gt;
&lt;br /&gt;
=November 17, 2018=&lt;br /&gt;
Conversation about OSE development with Charlie.  In particular, discussion about education and its relationship to developing the capacity to lead a meaningful and productive life. Reference to overlap of Baha&#039;i means and principles with those of the OSE - elimination of the extremes of wealth and poverty, building capabilities in a population, individual agency and initiative within a systematically evolving framework, etc.&lt;br /&gt;
&lt;br /&gt;
=November 16, 2018=&lt;br /&gt;
*Received US $5000 Shuttleworth Foundation Flash Grant&lt;br /&gt;
*Conference call with Marcin and Charles Freer regarding Marcin and Catarina&#039;s upcoming visit to London, Ontario&lt;br /&gt;
&lt;br /&gt;
=November 15, 2018=&lt;br /&gt;
Engineering Club students designed and printed a part to add to the Lyman Filament Extruder repository - a bracket for a rocker switch&lt;br /&gt;
&lt;br /&gt;
[[File:SwitchBracket2.png]]&lt;br /&gt;
[[File:Switchbase2.stl]]&lt;br /&gt;
[[File:SwitchBracket.FCStd]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=May, 2012=&lt;br /&gt;
Started project to build metric version of OSE CEB Press in Nanjing, China&lt;br /&gt;
&lt;br /&gt;
=April, 2012=&lt;br /&gt;
Began 3D Printing project in physics class at London International Academy&lt;br /&gt;
&lt;br /&gt;
=July, 2011-October, 2018=&lt;br /&gt;
Many things happened including severe neglect of the OSE wiki&lt;br /&gt;
Some highlights:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Regular incorporation of OSE concepts into classes and presentations 2011-present&lt;br /&gt;
*May, 2013 - started collaboration with Human InnovationPIE, a London non-profit organization focused on providing soft skills education for innovation.&lt;br /&gt;
*April, 2014 - Recognized in local paper for 3D Printer build with students&lt;br /&gt;
*July, 2015 - Asked to start STEM program at London International Academy further to success and popularity of 3D printer project&lt;br /&gt;
*September, 2015 - Began building Farmbot with students&lt;br /&gt;
*January, 2017 - Began teaching an Introduction to STEM course at Western University with significant OSE-based content.&lt;br /&gt;
&lt;br /&gt;
=July 16, 2011=&lt;br /&gt;
Arrived at Factor e Farm with Haydar Neal&lt;br /&gt;
&lt;br /&gt;
=March,  2011=&lt;br /&gt;
Saw TED Talk and wrote away to Marcin immediately&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=219620</id>
		<title>William Neal Log</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=219620"/>
		<updated>2020-05-05T19:02:52Z</updated>

		<summary type="html">&lt;p&gt;Wneal: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{RightTOC}}&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;600&amp;quot; height=&amp;quot;600&amp;quot; src=&amp;quot;https://osedev.org/wiki/William?start=2/1/2017&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
=Friday March 27-Tuesday May 5=&lt;br /&gt;
Worked on &amp;quot;[https://docs.google.com/document/d/1_5LJo8GXV5Ct1f57bD4fB8xC0wyT9iANtgPVj-Dev0M/edit?usp=sharing ALT-L],&amp;quot; an accelerated mathematics and computer programming curriculum for secondary school students. The course is under development [https://drive.google.com/drive/folders/14da63JcyEaM5CfdXjSi5G1Vll_hHTj9k?usp=sharing here] with two groups of students from eight countries meeting twice weekly over Zoom. Created a related [https://docs.google.com/document/d/1QXsDVR2iXecT_T-NM8DEwA4o-Yh6eCNfLf4ze8VFVyM/edit?usp=sharing training manual] for the Guyana Prison system using open source technologies such as Linux and Python.&lt;br /&gt;
=Sunday February 16 - Thursday March 26=&lt;br /&gt;
Work on OSE Challenging due to work, community and global crisis. &lt;br /&gt;
=Friday February 14 - Saturday February 15=&lt;br /&gt;
Personal Build Wishlist - Continued&lt;br /&gt;
=Friday February 7 - Thursday February 13=&lt;br /&gt;
[https://docs.google.com/document/d/11DUqroMKjpKGh2WxIpkJfl5HaPJJzIl8uK6saErtpgs/edit?usp=sharing William Neal Personal Build Wishlist] - Still under development&lt;br /&gt;
&lt;br /&gt;
=Monday, December 2 - Thursday Feb. 6, 2020=&lt;br /&gt;
End of semester disruption; start of semester disruption - a huge amount of time and effort spent on paperwork instead of education. Start of FRC robotics season. Start of computer programming and computer engineering classes. &lt;br /&gt;
=Saturday November 30 - Sunday December 1=&lt;br /&gt;
Finished OSE Prusa Build in Guyana. Used [https://www.repetier.com/documentation/repetier-firmware/ Repetier Firmware] and [https://www.repetier.com/ Repetier Host] to control the printer.&lt;br /&gt;
=Thursday November 28 - Friday November 29=&lt;br /&gt;
Workshop with the Guyana Prison Service - 12 prison staff from five facilities in Guyana. Reactivated 6 discarded computers using Ubuntu and OSE Linux. [[Introduction to Python]]. [https://m.facebook.com/groups/398759490316633?view=permalink&amp;amp;id=1215623975296843 OSE Prusa Build]&lt;br /&gt;
&lt;br /&gt;
=Saturday November 23  Wednesday November 27=&lt;br /&gt;
Workshop in Guyana with the Guyana Prison Service: The CSSP Project.  This project aims to replace the current model of prison management with an approach based on human nobility, education and rehabilitation.&lt;br /&gt;
=Thursday November 28=&lt;br /&gt;
[[OSE Linux]] - we got six old computers working on Ubuntu using flash drives.  Tomorrow will have an Open Source software workshop using OSE Linux on USB drives. We will use Python, FreeCAD, LibreOffice, etc. Showed the TED talk to our group of 12 prison officers from five facilities in Guyana.&lt;br /&gt;
&lt;br /&gt;
=Saturday November 2 - Friday November 22=&lt;br /&gt;
Worked on the [[OSE Prusa]] in order to support the establishment of a STEM centre in Trinidad and Tobago and to prepare for a workshop with the Government of Guyana.&lt;br /&gt;
#Items in a numbered list&lt;br /&gt;
#More Items&lt;br /&gt;
##Yet More&lt;br /&gt;
*Items in a bullet list&lt;br /&gt;
*More Items&lt;br /&gt;
**Yet More&lt;br /&gt;
&lt;br /&gt;
=Thursday October 24 - Friday November 1=&lt;br /&gt;
*Tested printing on the London replication of the D3D printer for the first time.&lt;br /&gt;
*Team of 9 students from Western university preparing a project around OSE - D3D replication + filament extruder replication + Chinese Reprap Prusa i3 reverse engineering.&lt;br /&gt;
=Sunday October 12 - Wednesday October 23=&lt;br /&gt;
*Updated some files used in the simple extruder build [https://wiki.opensourceecology.org/wiki/Simple_3D_Printer_Extruder#CAD here.]&lt;br /&gt;
&lt;br /&gt;
=Friday October 4 - Saturday October 11=&lt;br /&gt;
*Successfully tested D3D simple extruder based on Chinese Prusa i3.&lt;br /&gt;
*D3D challenge - Y axis end stop stopped working...&lt;br /&gt;
*Almost finished replicating first of two D3D printers in London Ontario.&lt;br /&gt;
*Preparing a D3D / Brushless motor workshop for the Guyana Prison Service. &lt;br /&gt;
*FreeCAD activity completed at Western University - varied response of individuals in the groups - the allocated time was too short. &lt;br /&gt;
=Friday September 27 - Thursday October 3=&lt;br /&gt;
*Continued work on D3D build.&lt;br /&gt;
*Experimenting with highly differentiated instruction unconstrained by government curricular concerns - our STEM club&#039;s three sections - Robotics / Computers and CAD / STEM projects have each gradually evolved over the last several weeks such that small groups of 1-4 students specialize on special tasks.&lt;br /&gt;
*Introduced FreeCAD to a group of junior youth from a local neighborhood. After about 40 minutes each group of two participants completed a motor rotor design.&lt;br /&gt;
*Second FreeCAD session with a group of 40 teacher candidate students at Western University&#039;s Althouse. Also used highly differentiated / interdisciplinary instruction with this group. After one hour and a half, most groups were able to generate several parts of a brushless motor and begin the process of parameterizing with a spreadsheet and creating an assembly.  Some trained engineers in the crowd generated excellent &amp;quot;propellers&amp;quot; for the motor using advanced features.&lt;br /&gt;
&lt;br /&gt;
=Tuesday, September 1 - Thursday, September 26=&lt;br /&gt;
*New School Year - over 40 students participating in our special STEM/Business/Arts program.&lt;br /&gt;
*Two sections of our program, STEM Projects and Computer Programming/CAD,  include OSE-related topics:&lt;br /&gt;
**Building 3D printers&lt;br /&gt;
**3D-printing&lt;br /&gt;
**OSE Motor design and fabrication&lt;br /&gt;
**Filament extruder&lt;br /&gt;
**CAD&lt;br /&gt;
*Building a 3D printer in collaboration with Bill Phelan, Vice President of Die-X Ltd.&lt;br /&gt;
*Remote collaboration with Branko Misovic in Holland.&lt;br /&gt;
*Preparing for a two-week 3D-printer build / open source hardware workshop in Guyana in November.&lt;br /&gt;
*Working on simple extruder for the D3D printer.&lt;br /&gt;
*Some 3D-printed parts for the D3D printer are not precise enough as they were printed with 1.0mm and 0.8mm nozzles.  We are switching to a 0.4mm nozzle and re-printing.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 27 - Monday September 1=&lt;br /&gt;
*Preparation for STEM camps in China. &lt;br /&gt;
*Travel to China.  Caught behind firewall - Internet was actually a large Intranet - difficult to post, communicate or access any useful sites. &lt;br /&gt;
*STEM Camp at Fujing Foreign language school - 10 days - 60 students, 1.5 hours daily - worked on FreeCAD and the OSE motor. &lt;br /&gt;
*Built OSE D3D printer with eight 9-11 year-old students (10 days, 3 hours daily) at EIC Education in Shenzhen.  The students assembled the axes and helped design some custom 3D-printed brackets for the frame which had to be made out of linear rail. The students learned FreeCAD and were able to design useful parts. Ganesh Ramsahai provided support in completing the build and configuration process. Presented the OSE D3D Shenzhen to the EIC Education Group with a half-hour overview and offer to provide remote support.&lt;br /&gt;
*STEM Camp at Zhangjiagang Foreign Language School in Jiangsu province. 30 students, 3 days, 6 hours per day.  Introduced FreeCAD and had the students design rotors and stators for the OSE brushless motor.&lt;br /&gt;
*Showed the TED talk to four different groups.&lt;br /&gt;
*Uploaded raw FreeCAD and stl files from the camps at Fujing Foreign Language School and Zhangjiagang Foreign Language School to [https://drive.google.com/open?id=1K7U8lEGqRgxwQf-WNX1Llbf-WE7LJCqL Google Drive]&lt;br /&gt;
*Uploaded [https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH custom files] generated during the build of the D3D 19.08 Shenzhen.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 20 - Friday July 26=&lt;br /&gt;
LIA summer STEM camp continued with 38 different students from Shenzhen, China.  The students discussed, in the context of Marcin&#039;s TED Talk, the concept that the human mind, focused and in collaboration with others, has the power to make positive changes in society.  Design of covers and caps for the OSE radial motor. Photos from the STEM Camp activities are [https://photos.app.goo.gl/zcpKk8jaFcDon31K7 here].  Trying to find the USB where we collected all the FreeCAD files.  These will be posted ASAP.&lt;br /&gt;
&lt;br /&gt;
=Monday July 15 - Friday July 19=&lt;br /&gt;
LIA summer STEM camp with 23 students from Vietnam and China. OSE Motor project part II - designing, printing and testing a radial motor. The motor concept was based on the following video: [https://www.youtube.com/watch?v=JkwLpAAfBVI 3D-Printed Axial Brushless Motor for Drones] Students were presented with the concept and asked to design such a motor from scratch using two rotors with eight disc magnets each and two sets of six wire loops.&lt;br /&gt;
&lt;br /&gt;
=Wednesday July 10 - Sunday July 14=&lt;br /&gt;
Preparation for summer STEM Camps at LIA.  Prepared 3D printers.  Began replication of two D3D v19.06 units.&lt;br /&gt;
=Friday June 28 - Tuesday July 9= &lt;br /&gt;
Open Source Ecology Microfactory STEAM Camp&lt;br /&gt;
=Thursday June 27=&lt;br /&gt;
Titan Aero finally working better with 1.5 full turns + a little bit more for good measure - has not jammed all afternoon now - three parts printed.  Logistics for Microfatory STEAM Camp - rented a vehicle and contacted a few participants. A prototype of the OSE extruder has been nearly completed. The extruder gear is scheduled to arrive at Factor e Farm by tomorrow. Then it will be ready for testing.  [https://photos.app.goo.gl/fWUX8ynAdqcn6Fvs6 OSE D3D Extruder - Photo Album][https://drive.google.com/open?id=17BLyvyk1EbrMOhkCfeSwByAq86SemSLX Files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 25 - Wednesday June 26=&lt;br /&gt;
OSE D3D Extruder.  Worked on attaching extruder to X-axis. Ordered extruder motor gears to arrive at FeF on Friday. Printed out bracket 1 successfully. Working on large aluminium block and designing x-axis adapter.&lt;br /&gt;
=Monday June 24=&lt;br /&gt;
Discussion about design of OSE Power Electronics. Problem - transformers are expensive and inflexible. Solution - research the feasibility of creating a 120V buck converter.  Would it be sufficiently efficient and would it be feasible to build?  Here are some potential parts to use: [https://www.digikey.ca/product-detail/en/comchip-technology/GBPC5010W-G/641-1389-ND/2074854 1kV Recifier] [https://www.digikey.ca/product-detail/en/ixys/IXFX120N65X2/IXFX120N65X2-ND/5629498?utm_adgroup=&amp;amp;mkwid=sFMkJ49os&amp;amp;pcrid=311971049444&amp;amp;pkw=&amp;amp;pmt=&amp;amp;pdv=c&amp;amp;productid=5629498&amp;amp;slid=&amp;amp;gclid=EAIaIQobChMIgbDd1fSC4wIVwkOGCh1f8gijEAQYAyABEgJGffD_BwE 650V MOSFET].  One problem seems to be that there may be a high level of energy loss in the circuit....[https://www.digikey.com/product-detail/en/everlight-electronics-co-ltd/H11L1S-TA/1080-1201-1-ND/2675935 Optocoupler] (to isolate the Arduino)[http://fpec.ucf.edu/teaching/EEL%205245%20Lectures/Lecture13%20Chapter4_BoostandBuckBoost_CCM_Analysis.pdf Some background theory]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 19 - Sunday June 23=&lt;br /&gt;
DIY Buck Converter based on the following video (and others): https://www.youtube.com/watch?v=L5oeY53pE0E&amp;amp;t=162s. [https://photos.app.goo.gl/kkHUwBQtD7h48mhB6 Photos.] All four 3D printers are down.  A crucial piece of the extruder of the most reliable printer finally broke. CAD already done for the replacement part. Got the OSE D3D working again on Friday.  Ready for printing on Monday - will print replacement part for other printer.  Other 2 printers almost working...&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 18=&lt;br /&gt;
[https://www.pythonpowerelectronics.com/ Python Power Electronics]&lt;br /&gt;
=Thursday June 13 - Monday June 17=&lt;br /&gt;
Buck Converters. OSE [[Power Electronics]] research. Arduino as controller of Power electronics - frequency issues / limitations. Scalability of Power electronics - can we add modular components to increase voltage, current, etc.?  &lt;br /&gt;
=Tuesday June 11 - Wednesday June 12=&lt;br /&gt;
Completed and sent CAD Drawings for OSE 3D Printer. Spent most of Wednesday working through a jam on the Titan Aero - it has jammed more in a few days than our other extruder has jammed in over three years.&lt;br /&gt;
=Monday June 10=&lt;br /&gt;
[https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH FreeCAD Drawings] for OSE 3D Printer. Note the use of parametric design in the CAD files - Spreadsheet values become variables used in constraint dimensions.&lt;br /&gt;
The following is my most recent FreeCAD Parametric Part Design and Drawing Workflow:[[FreeCAD Workflow]]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 5 - Sunday June 9=&lt;br /&gt;
[https://www.youtube.com/watch?v=CEhBN5_fO5o|DC-DC Buck Converters]&lt;br /&gt;
Power Supply: Transformer + Buck Converter + Ripple Smoothing Circuitry&lt;br /&gt;
=Tuesday June 4=&lt;br /&gt;
*[[Arduino Controlled Power Supply]] - ordered many components.&lt;br /&gt;
*Many electronic components specified in DIY articles and videos are now listed as obsolete.  Finding replacement parts is not easy. Case in point: LM338K Linear Voltage Regulators - Listed as obsolete on the Mouser website and selling for $91 or more on the Digi-key website.&lt;br /&gt;
*[https://www.eetimes.com/document.asp?doc_id=1333695# Article about obsolescence and demand and supply issues in the electronics industry]&lt;br /&gt;
&lt;br /&gt;
=Saturday June 1 - Monday June 3=&lt;br /&gt;
Reviewed [[OSE Design Guides]] Reviewed [[DIY Semiconductors]] Microfactory STEAM Camp Critical Path [[Arduino Controlled Power Supply]] Fabrication of aluminium blocks for hot end for OSE 3D printer extruder. Parametric modelling in FreeCAD.&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 28 - Friday May 31=&lt;br /&gt;
[[Halbach Array Brushless Motor]]&lt;br /&gt;
&lt;br /&gt;
=Monday May 27= &lt;br /&gt;
[https://www.youtube.com/watch?v=uOQk8SJso6Q How to Control an ESC with an Arduino] [https://photos.app.goo.gl/HMvWbigvuw3S26YG8 Test of the OSE Motor].&lt;br /&gt;
&lt;br /&gt;
=Friday May 24 - Sunday May 26= &lt;br /&gt;
Not all that much.&lt;br /&gt;
=Thursday May 23=&lt;br /&gt;
Thank you to Marcin and Catarina for a refreshing, enlightening and enjoyable visit to Factor e Farm and the Seed Ecohome. Returned to London.&lt;br /&gt;
=Wednesday May 22=&lt;br /&gt;
Skype appointment - 12pm Missouri time - friend in Colombia. Uploaded FreeCAD files for D3D v19.04 Power Plug Case to Wiki. [https://en.wikipedia.org/wiki/Buck_converter Buck Converter]&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 21=&lt;br /&gt;
[https://www.powerelectronicsnews.com/problems-solutions/power-supply-design-tutorial Power Supply Design Tutorial] Edited the [https://docs.google.com/document/d/1_3t_97giFOtqJ4ExPZdYeVEilCRhMmu0IWLLpBCrG-0/edit?usp=sharing Video Script] &lt;br /&gt;
Contacted STEM people in Nigeria and Pennsylvania based on the OSE STEAM Camp posted in this [https://www.facebook.com/groups/822455171229260/ Facebook Forum]&lt;br /&gt;
Further communication with friends in Mexico regarding the STEAM camp. Contacted a friend of a friend in Kansas City - Baha&#039;i Community.&lt;br /&gt;
&lt;br /&gt;
=Monday May 20=&lt;br /&gt;
Posted Microfactory STEAM camp on several Facebook STEM/STEAM Education pages. [[The Living Curriculum]] [https://github.com/MarlinFirmware/Marlin/issues/8903 Marlin Bed Temperature Settings] Worked on the Titan-Aero extruder repairs. The two parts of the extruder tube must be fairly tight (but not too tight!) to avoid leakage.&lt;br /&gt;
&lt;br /&gt;
=Sunday May 19=&lt;br /&gt;
Printing ABS using the OSE D3D - Set the bed temperature to 83 and the nozzle temperature to 255.  After 5 minutes of printing, several layers were adhering well. Thermal runaway. Tried 80 and 244; thermal runaway again. Joined several online STEM/Education groups.&lt;br /&gt;
&lt;br /&gt;
=Saturday May 18=&lt;br /&gt;
[[OSE Revenue Generation]] - Grameen Bank / Social Business - [[OSE Curriculum]]&lt;br /&gt;
&lt;br /&gt;
=Friday May 17=&lt;br /&gt;
[[OSE STEM Camp Marketing Strategy]]&lt;br /&gt;
=Friday May 10 - Thursday May 16= &lt;br /&gt;
Preparation for trip to Factor e Farm - gathered supplies - PCB boards, glossy paper, wire, magnets, electronic components, hardware, etc. Arrival at Factor e Farm. Work on D3D v. 19.04: [Photos - OSE D3D v19.04 Build at FeF https://www.facebook.com/photo.php?fbid=10161819908970597&amp;amp;set=pcb.1063740287151880&amp;amp;type=3&amp;amp;theater&amp;amp;ifg=1]&lt;br /&gt;
 &lt;br /&gt;
=Friday April 12 - Thursday May 9=&lt;br /&gt;
[https://drive.google.com/open?id=1-DpgMCARsA5iz4JLZtUeP3SD4a3UrXhj OSE Motor Completed] - ready for testing - Open Source Chinese Prusa i3 Printer Extruder - Configured and began printing with OSE D3D - printing very well at the moment - Booked a flight to Kansas City - heading to Factor e Farm soon!&lt;br /&gt;
&lt;br /&gt;
=Monday March 4 - Thursday April 11=&lt;br /&gt;
FRC Robotics - Ryerson University, Western University. OSE Motor - students have made some progress: [https://drive.google.com/open?id=1n99XWM8KMwvnV-tCmcWjImsBG27ReRSc OSE Brushless Motor] Additional work on the [[Simple 3D Printer Extruder]]&lt;br /&gt;
&lt;br /&gt;
=Sunday March 3=&lt;br /&gt;
Completed the first model of the most difficult part to CAD in the extruder - the X-Axis bracket.  Will now print CAD files and measure their accuracy before making changes to the CAD parameters.  Hopefully this process will result in more accurate parts.&lt;br /&gt;
&lt;br /&gt;
=Friday March 1 - Saturday March 2 =&lt;br /&gt;
Further work on open sourcing Chinese Prusa i3 3D printer extruder.&lt;br /&gt;
&lt;br /&gt;
=Monday February 18 - Thursday February 28=&lt;br /&gt;
Began the process of open-sourcing our 3D printer extruder: [[Simple 3D Printer Extruder]] (see photos and CAD files in the 3D Printer Folder) &lt;br /&gt;
Started a new unit in Computer Engineering Technology class.  Two groups of students are working on OSE materials:  &lt;br /&gt;
#The OSE Collaborative Contest&lt;br /&gt;
#The OSE Filament Extruder&lt;br /&gt;
&lt;br /&gt;
=Saturday February 9-Sunday February 17=&lt;br /&gt;
Hosted a group of six STEM students from School of the Nations in Georgetown, Guyana. STEM Camp at London International Academy.  Introduced the concept of the OSE collaborative contest. Introductory FreeCAD activities. Introduced Python computer programming.  Printed out various parts for an open source brushless motor.  [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX Link to CAD Files] (see School of the Nations sub-folder)[[file:Rotor.jpg|200px]] [http://guyanachronicle.com/2019/02/17/nations-benefits-from-robotics-training-in-canada Article in Guyana Chronicle]&lt;br /&gt;
&lt;br /&gt;
=Wednesday February 6= &lt;br /&gt;
[[OSE Coopetition]].  Discussed wiki + part library + documentation of OSE Coopetition.&lt;br /&gt;
&lt;br /&gt;
=Monday February 4=&lt;br /&gt;
Uploaded version 0.1 of the OSE Collaborative Contest Rules to [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest]&lt;br /&gt;
=Wednesday January 30 - Sunday February 3=&lt;br /&gt;
FRC Build season.  [https://drive.google.com/drive/folders/1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH?usp=sharing Team 6162 Cap Alpaca FreeCAD files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday January 29=&lt;br /&gt;
Collected FreeCAD files in a Google drive folder: [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest] &lt;br /&gt;
Summary of Nanjing group&#039;s schedule: [https://docs.google.com/document/d/1R-Dtu3kdZ0u8Qo5w3_vDuNEg5myr8mUmLjSpPOf-HoI/edit?usp=sharing | 2019 Winter Camp]&lt;br /&gt;
Here is some sample work from the FreeCAD workshop:&lt;br /&gt;
*[[File:ReyJessica.png|200px]]&lt;br /&gt;
*[[File:ZJHLSR.png|200px]]&lt;br /&gt;
&lt;br /&gt;
=Sunday January 27 - Monday January 28=&lt;br /&gt;
Discussed record keeping, file sharing and other skills for collaborative literacy. Created a sample page stub: [[Brushless Motor Design]].  Asked students to reflect on sessions learning FreeCAD.  Found that it is not necessary to learn a whole lot about FreeCAD in order to get students learning it.  Demonstrated two sample FreeCAD 0.17 design processes:&lt;br /&gt;
#Design a part like a motor adapter: body - sketch a circle - pad - sketch on a surface - pocket&lt;br /&gt;
#Design a sketch with constraints - some straight lines and some arcs closed in a loop with particular dimensions and angles.&lt;br /&gt;
After that, students were directed to Youtube videos that covered specific additional skills: &lt;br /&gt;
*Threading - inner and outer&lt;br /&gt;
*Polar patterns&lt;br /&gt;
Through this process, I learned how to do these skills from some students and was able to show other students the same, especially with polar patterns.&lt;br /&gt;
&lt;br /&gt;
=Sunday January, 20 - Saturday January 26, 2019=&lt;br /&gt;
Prepared for and welcomed 19 students from Jinling High School in China. Introduced the concept of the OSE Collaborative Contest.  Marcin spoke with the group over Jitsi on Thursday and on Saturday and proposed that the students participate in the OSE Collaborative Contest. It was well received despite the students&#039; fatigue from travel and skiing. Introduced FreeCAD and had students download and install it. Some computers do not immediately work with FreeCAD; hope that the problem may be solved. We plan to further discuss the students&#039; participation in the contest tomorrow and 3D print some of their early FreeCAD work on Monday. Created a link to LIA students&#039; FreeCAD work.  Currently the folder is being used for FRC preparation.  After the FRC robot is built, we are planning to transition to OSE-related work in this folder: [https://drive.google.com/open?id=1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH LIA OSE Club CAD Files]&lt;br /&gt;
&lt;br /&gt;
=Thursday January 10 - Saturday Jan 19, 2019=&lt;br /&gt;
Heaviest schedule of the year - January and February; progress slower during this time. Working on STEM Curriculum for FeF STEM Camps - [[Summer School 2019]].&lt;br /&gt;
&lt;br /&gt;
=Wed Jan 9, 2019=&lt;br /&gt;
*Use a presentation - template - make a copy - pass this to Heydar - document the simple 3D printing extruder for a low cost 3d printer - [https://docs.google.com/presentation/d/1_kUzO4eRCqrHVpqxSSTs17oLhtikTTyYe_1NxrTKlTI/edit#slide=id.g45ed589c64_0_0]&lt;br /&gt;
*Homework: Complete STEM Curriculum&lt;br /&gt;
&lt;br /&gt;
=January 2, 2019=&lt;br /&gt;
Ordered parts for a brushless motor to be constructed as part of the contest and part of the Computer Engineering Technology class at London International Academy.&lt;br /&gt;
In order to make the collaborative contest work, we will need to create a kit of parts to be easily shipped to participating schools.&lt;br /&gt;
&lt;br /&gt;
=December 24 2018-January 1, 2019=&lt;br /&gt;
Took a break. Reflected on plans for OSE London / OSE Club at London International Academy / OSE Collaborative Contest&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=December 23, 2018=&lt;br /&gt;
Defined particulars of [[OSE STEM Camps]].&lt;br /&gt;
&lt;br /&gt;
=December 22,2018=&lt;br /&gt;
[[William Conversation | Conversation with Marcin]]. Research on OSE Club Activities. Planning for winter semester courses&#039; links to OSE - Computer Engineering Technology and Computer Science. Plans to do the following in Computer Engineering Technology: build a brushless motor and ESC from scratch. Computer Science: Programming projects related to OSE - simulation program? Western University Introduction to STEM Class - offer the OSE Competition as a choice for a final project - help administer / judge / communicate / etc.&lt;br /&gt;
&lt;br /&gt;
=December 12-21, 2018=&lt;br /&gt;
Exams and marking - excellent ways to hinder educational progress. Discussed Canadian bill of materials with Russ Purvis. Discussed the upcoming OSE workshop in Prince George, BC currently in the planning phase. Several phone conversations with Charlie. Worked on some particulars for the upcoming OSE competition in January. Contacted a teacher in Iran to invite her to join the competition with her students. Sent a letter of reference to Russ with respect to hosting an OSE workshop.&lt;br /&gt;
&lt;br /&gt;
=December 8-11, 2018=&lt;br /&gt;
Spoke with Charlie about development of OSE workshops.  Spoke with Marcin and Catarina about the same. Updated Marcin about development of OSE club at London International Academy.  We now have plans to include at least four schools in our first design challenge - School of the Nations in Guyana, Fujing Foreign Language School in Shenzhen and Jinling School in Nanjing. Was approached by a friend to contact Makerspace managers in St. Thomas and Toronto. Arranged a meeting with the makerspace managers at Western University. OSE Marlin v18.10 works for printing with new printer. Successfully printed base layer of a file.  It seems that the extruder may have jammed.  Will check again as soon as possible. LIA students continue to develop their FreeCAD skills and are able to design parts in parallel according to a spacial plan and assemble them into a larger model. Installed OSE Linux on laptop now with a new old-school 1TcB hard drive. OSE Linux did not recognise the card reader; everything else seems to work very well. &amp;lt;strong&amp;gt;Note: Stepper motors on y axis of D3D became alarmingly hot after about 15 minutes of printing.&amp;lt;/strong&amp;gt; Perhaps this is a configuration issue; may need to resolve this before allowing the printer to do a full print.&lt;br /&gt;
&lt;br /&gt;
=December 7, 2018= &lt;br /&gt;
Using OSE Ubuntu on laptop with fried SSD. Internet has connection through ping but does not display pages in Chromium. D3D Marlin recent version from OSE website installed in printer. Autohome produces a collision of the z axis with the extruder as by default the z probe is off the plate.  Tried to move the y axis using various commands such as G0 Y40 and G1 Y40 all of which cause the Y axis to move until it hits the maximum physically possible position. Spoke with Johann Wong about the possibility of combining an OSE Makerspace skills (Arduino, CAD, etc.) + 3D printer workshop with Human Innovation PIE&#039;s soft skills innovation workshop through the London International Academy Foundation. Was using wrong Marlin file for D3D printer - will try correct one asap. Suggestions for D3D: use zip ties and clothespin springs for tensioning belts.  This has worked exceptionally well and reliably for our Chinese Prusa derivative; the belts have needed nearly no attention in three years.&lt;br /&gt;
&lt;br /&gt;
=December 6, 2018=&lt;br /&gt;
Was about to test print on OSE D3D when SSD crashed.  Did Ubuntu fry it?  Researching this.&lt;br /&gt;
&lt;br /&gt;
=December 5, 2018=&lt;br /&gt;
Introduced the OSE design challenge to OSE Club students at London International Academy.&lt;br /&gt;
&lt;br /&gt;
=December 4, 2018= &lt;br /&gt;
Held an informal Introduction to Arduino Workshop at London International Academy to help two grade 11 students with a project.  Spoke with Marcin about plans for the OSE design challenge, OSE club and possibility of a summer camp at FeF in May or June of 2019.&lt;br /&gt;
&lt;br /&gt;
=December 2, 2018=&lt;br /&gt;
 Created a document outlining a framework for OSL - Open Source London and shared it on Google Docs; visited Charlie to discuss the document.&lt;br /&gt;
&lt;br /&gt;
=November 29, 2018=&lt;br /&gt;
 Introduced OSE 3D Printer and Prusa i3 3D printer to parents and students at a local French Immersion school - PAFI.  Designed and printed various models using Blender and Repetier.&lt;br /&gt;
&lt;br /&gt;
=November 28, 2018=&lt;br /&gt;
*Updated OSECartCoin with letters. &lt;br /&gt;
**[[File:PAFI.stl]]&lt;br /&gt;
**[[File:PAFI.fcstd]]&lt;br /&gt;
*Call with Marcin regarding &#039;&#039;&#039;[[LIA OSE Club]]&#039;&#039;&#039;&lt;br /&gt;
*Build from last week - [https://www.facebook.com/groups/398759490316633/permalink/963594880499755/]&lt;br /&gt;
&lt;br /&gt;
=November 27, 2018=&lt;br /&gt;
Wrote the suggested intro to Marcin&#039;s next TED talk: [[Marcin&#039;s Next TED Talk]]&lt;br /&gt;
=November 26, 2018=&lt;br /&gt;
Uploaded FeF Brick Press Fabrication video from July 29, 2011 - [https://youtu.be/LwW8sOUO00s]&lt;br /&gt;
&amp;lt;p&amp;gt;Uploaded video of the &amp;quot;Cluckaphone&amp;quot; - July 29, 2011 - [https://www.youtube.com/watch?v=PNOhZX7ftLk&amp;amp;feature=youtu.be]&lt;br /&gt;
Call with Marcin, Catarina and Charlie - OSE Planning&lt;br /&gt;
&lt;br /&gt;
=November 25, 2018=&lt;br /&gt;
Consultation about the establishment of an OSE Club at London International Academy and future directions for the development of OSE Clubs and Makerspaces.&lt;br /&gt;
&lt;br /&gt;
=November 24, 2018=&lt;br /&gt;
We made an OSE Cart Coin with FreeCAD &lt;br /&gt;
Here are the files for OSE Cart Coin v0.1:&lt;br /&gt;
[[File:OSECartCoin.fcstd]]&lt;br /&gt;
[[File:OSECartCoin.stl]]&lt;br /&gt;
Attended Marcin&#039;s presentation entitled &amp;quot;Education for the Open Source Economy&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=November 23, 2018=&lt;br /&gt;
Built a an OSE 3D printer at London International Academy&lt;br /&gt;
&lt;br /&gt;
=November 23-25=&lt;br /&gt;
Attended first OSE Professional Development workshop at London International Academy with Charles Freer, Pascal Gingras, Marcin and Catarina.&lt;br /&gt;
&lt;br /&gt;
=November 18-22= &lt;br /&gt;
Prepared for the visit of Marcin and Catarina to London.&lt;br /&gt;
&lt;br /&gt;
=November 17, 2018=&lt;br /&gt;
Conversation about OSE development with Charlie.  In particular, discussion about education and its relationship to developing the capacity to lead a meaningful and productive life. Reference to overlap of Baha&#039;i means and principles with those of the OSE - elimination of the extremes of wealth and poverty, building capabilities in a population, individual agency and initiative within a systematically evolving framework, etc.&lt;br /&gt;
&lt;br /&gt;
=November 16, 2018=&lt;br /&gt;
*Received US $5000 Shuttleworth Foundation Flash Grant&lt;br /&gt;
*Conference call with Marcin and Charles Freer regarding Marcin and Catarina&#039;s upcoming visit to London, Ontario&lt;br /&gt;
&lt;br /&gt;
=November 15, 2018=&lt;br /&gt;
Engineering Club students designed and printed a part to add to the Lyman Filament Extruder repository - a bracket for a rocker switch&lt;br /&gt;
&lt;br /&gt;
[[File:SwitchBracket2.png]]&lt;br /&gt;
[[File:Switchbase2.stl]]&lt;br /&gt;
[[File:SwitchBracket.FCStd]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=May, 2012=&lt;br /&gt;
Started project to build metric version of OSE CEB Press in Nanjing, China&lt;br /&gt;
&lt;br /&gt;
=April, 2012=&lt;br /&gt;
Began 3D Printing project in physics class at London International Academy&lt;br /&gt;
&lt;br /&gt;
=July, 2011-October, 2018=&lt;br /&gt;
Many things happened including severe neglect of the OSE wiki&lt;br /&gt;
Some highlights:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Regular incorporation of OSE concepts into classes and presentations 2011-present&lt;br /&gt;
*May, 2013 - started collaboration with Human InnovationPIE, a London non-profit organization focused on providing soft skills education for innovation.&lt;br /&gt;
*April, 2014 - Recognized in local paper for 3D Printer build with students&lt;br /&gt;
*July, 2015 - Asked to start STEM program at London International Academy further to success and popularity of 3D printer project&lt;br /&gt;
*September, 2015 - Began building Farmbot with students&lt;br /&gt;
*January, 2017 - Began teaching an Introduction to STEM course at Western University with significant OSE-based content.&lt;br /&gt;
&lt;br /&gt;
=July 16, 2011=&lt;br /&gt;
Arrived at Factor e Farm with Haydar Neal&lt;br /&gt;
&lt;br /&gt;
=March,  2011=&lt;br /&gt;
Saw TED Talk and wrote away to Marcin immediately&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=214812</id>
		<title>William Neal Log</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=214812"/>
		<updated>2020-03-26T16:28:47Z</updated>

		<summary type="html">&lt;p&gt;Wneal: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{RightTOC}}&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;600&amp;quot; height=&amp;quot;600&amp;quot; src=&amp;quot;https://osedev.org/wiki/William?start=2/1/2017&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Sunday February 16 - Thursday March 26=&lt;br /&gt;
Work on OSE Challenging due to work, community and global crisis. &lt;br /&gt;
=Friday February 14 - Saturday February 15=&lt;br /&gt;
Personal Build Wishlist - Continued&lt;br /&gt;
=Friday February 7 - Thursday February 13=&lt;br /&gt;
[https://docs.google.com/document/d/11DUqroMKjpKGh2WxIpkJfl5HaPJJzIl8uK6saErtpgs/edit?usp=sharing William Neal Personal Build Wishlist] - Still under development&lt;br /&gt;
&lt;br /&gt;
=Monday, December 2 - Thursday Feb. 6, 2020=&lt;br /&gt;
End of semester disruption; start of semester disruption - a huge amount of time and effort spent on paperwork instead of education. Start of FRC robotics season. Start of computer programming and computer engineering classes. &lt;br /&gt;
=Saturday November 30 - Sunday December 1=&lt;br /&gt;
Finished OSE Prusa Build in Guyana. Used [https://www.repetier.com/documentation/repetier-firmware/ Repetier Firmware] and [https://www.repetier.com/ Repetier Host] to control the printer.&lt;br /&gt;
=Thursday November 28 - Friday November 29=&lt;br /&gt;
Workshop with the Guyana Prison Service - 12 prison staff from five facilities in Guyana. Reactivated 6 discarded computers using Ubuntu and OSE Linux. [[Introduction to Python]]. [https://m.facebook.com/groups/398759490316633?view=permalink&amp;amp;id=1215623975296843 OSE Prusa Build]&lt;br /&gt;
&lt;br /&gt;
=Saturday November 23  Wednesday November 27=&lt;br /&gt;
Workshop in Guyana with the Guyana Prison Service: The CSSP Project.  This project aims to replace the current model of prison management with an approach based on human nobility, education and rehabilitation.&lt;br /&gt;
=Thursday November 28=&lt;br /&gt;
[[OSE Linux]] - we got six old computers working on Ubuntu using flash drives.  Tomorrow will have an Open Source software workshop using OSE Linux on USB drives. We will use Python, FreeCAD, LibreOffice, etc. Showed the TED talk to our group of 12 prison officers from five facilities in Guyana.&lt;br /&gt;
&lt;br /&gt;
=Saturday November 2 - Friday November 22=&lt;br /&gt;
Worked on the [[OSE Prusa]] in order to support the establishment of a STEM centre in Trinidad and Tobago and to prepare for a workshop with the Government of Guyana.&lt;br /&gt;
#Items in a numbered list&lt;br /&gt;
#More Items&lt;br /&gt;
##Yet More&lt;br /&gt;
*Items in a bullet list&lt;br /&gt;
*More Items&lt;br /&gt;
**Yet More&lt;br /&gt;
&lt;br /&gt;
=Thursday October 24 - Friday November 1=&lt;br /&gt;
*Tested printing on the London replication of the D3D printer for the first time.&lt;br /&gt;
*Team of 9 students from Western university preparing a project around OSE - D3D replication + filament extruder replication + Chinese Reprap Prusa i3 reverse engineering.&lt;br /&gt;
=Sunday October 12 - Wednesday October 23=&lt;br /&gt;
*Updated some files used in the simple extruder build [https://wiki.opensourceecology.org/wiki/Simple_3D_Printer_Extruder#CAD here.]&lt;br /&gt;
&lt;br /&gt;
=Friday October 4 - Saturday October 11=&lt;br /&gt;
*Successfully tested D3D simple extruder based on Chinese Prusa i3.&lt;br /&gt;
*D3D challenge - Y axis end stop stopped working...&lt;br /&gt;
*Almost finished replicating first of two D3D printers in London Ontario.&lt;br /&gt;
*Preparing a D3D / Brushless motor workshop for the Guyana Prison Service. &lt;br /&gt;
*FreeCAD activity completed at Western University - varied response of individuals in the groups - the allocated time was too short. &lt;br /&gt;
=Friday September 27 - Thursday October 3=&lt;br /&gt;
*Continued work on D3D build.&lt;br /&gt;
*Experimenting with highly differentiated instruction unconstrained by government curricular concerns - our STEM club&#039;s three sections - Robotics / Computers and CAD / STEM projects have each gradually evolved over the last several weeks such that small groups of 1-4 students specialize on special tasks.&lt;br /&gt;
*Introduced FreeCAD to a group of junior youth from a local neighborhood. After about 40 minutes each group of two participants completed a motor rotor design.&lt;br /&gt;
*Second FreeCAD session with a group of 40 teacher candidate students at Western University&#039;s Althouse. Also used highly differentiated / interdisciplinary instruction with this group. After one hour and a half, most groups were able to generate several parts of a brushless motor and begin the process of parameterizing with a spreadsheet and creating an assembly.  Some trained engineers in the crowd generated excellent &amp;quot;propellers&amp;quot; for the motor using advanced features.&lt;br /&gt;
&lt;br /&gt;
=Tuesday, September 1 - Thursday, September 26=&lt;br /&gt;
*New School Year - over 40 students participating in our special STEM/Business/Arts program.&lt;br /&gt;
*Two sections of our program, STEM Projects and Computer Programming/CAD,  include OSE-related topics:&lt;br /&gt;
**Building 3D printers&lt;br /&gt;
**3D-printing&lt;br /&gt;
**OSE Motor design and fabrication&lt;br /&gt;
**Filament extruder&lt;br /&gt;
**CAD&lt;br /&gt;
*Building a 3D printer in collaboration with Bill Phelan, Vice President of Die-X Ltd.&lt;br /&gt;
*Remote collaboration with Branko Misovic in Holland.&lt;br /&gt;
*Preparing for a two-week 3D-printer build / open source hardware workshop in Guyana in November.&lt;br /&gt;
*Working on simple extruder for the D3D printer.&lt;br /&gt;
*Some 3D-printed parts for the D3D printer are not precise enough as they were printed with 1.0mm and 0.8mm nozzles.  We are switching to a 0.4mm nozzle and re-printing.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 27 - Monday September 1=&lt;br /&gt;
*Preparation for STEM camps in China. &lt;br /&gt;
*Travel to China.  Caught behind firewall - Internet was actually a large Intranet - difficult to post, communicate or access any useful sites. &lt;br /&gt;
*STEM Camp at Fujing Foreign language school - 10 days - 60 students, 1.5 hours daily - worked on FreeCAD and the OSE motor. &lt;br /&gt;
*Built OSE D3D printer with eight 9-11 year-old students (10 days, 3 hours daily) at EIC Education in Shenzhen.  The students assembled the axes and helped design some custom 3D-printed brackets for the frame which had to be made out of linear rail. The students learned FreeCAD and were able to design useful parts. Ganesh Ramsahai provided support in completing the build and configuration process. Presented the OSE D3D Shenzhen to the EIC Education Group with a half-hour overview and offer to provide remote support.&lt;br /&gt;
*STEM Camp at Zhangjiagang Foreign Language School in Jiangsu province. 30 students, 3 days, 6 hours per day.  Introduced FreeCAD and had the students design rotors and stators for the OSE brushless motor.&lt;br /&gt;
*Showed the TED talk to four different groups.&lt;br /&gt;
*Uploaded raw FreeCAD and stl files from the camps at Fujing Foreign Language School and Zhangjiagang Foreign Language School to [https://drive.google.com/open?id=1K7U8lEGqRgxwQf-WNX1Llbf-WE7LJCqL Google Drive]&lt;br /&gt;
*Uploaded [https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH custom files] generated during the build of the D3D 19.08 Shenzhen.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 20 - Friday July 26=&lt;br /&gt;
LIA summer STEM camp continued with 38 different students from Shenzhen, China.  The students discussed, in the context of Marcin&#039;s TED Talk, the concept that the human mind, focused and in collaboration with others, has the power to make positive changes in society.  Design of covers and caps for the OSE radial motor. Photos from the STEM Camp activities are [https://photos.app.goo.gl/zcpKk8jaFcDon31K7 here].  Trying to find the USB where we collected all the FreeCAD files.  These will be posted ASAP.&lt;br /&gt;
&lt;br /&gt;
=Monday July 15 - Friday July 19=&lt;br /&gt;
LIA summer STEM camp with 23 students from Vietnam and China. OSE Motor project part II - designing, printing and testing a radial motor. The motor concept was based on the following video: [https://www.youtube.com/watch?v=JkwLpAAfBVI 3D-Printed Axial Brushless Motor for Drones] Students were presented with the concept and asked to design such a motor from scratch using two rotors with eight disc magnets each and two sets of six wire loops.&lt;br /&gt;
&lt;br /&gt;
=Wednesday July 10 - Sunday July 14=&lt;br /&gt;
Preparation for summer STEM Camps at LIA.  Prepared 3D printers.  Began replication of two D3D v19.06 units.&lt;br /&gt;
=Friday June 28 - Tuesday July 9= &lt;br /&gt;
Open Source Ecology Microfactory STEAM Camp&lt;br /&gt;
=Thursday June 27=&lt;br /&gt;
Titan Aero finally working better with 1.5 full turns + a little bit more for good measure - has not jammed all afternoon now - three parts printed.  Logistics for Microfatory STEAM Camp - rented a vehicle and contacted a few participants. A prototype of the OSE extruder has been nearly completed. The extruder gear is scheduled to arrive at Factor e Farm by tomorrow. Then it will be ready for testing.  [https://photos.app.goo.gl/fWUX8ynAdqcn6Fvs6 OSE D3D Extruder - Photo Album][https://drive.google.com/open?id=17BLyvyk1EbrMOhkCfeSwByAq86SemSLX Files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 25 - Wednesday June 26=&lt;br /&gt;
OSE D3D Extruder.  Worked on attaching extruder to X-axis. Ordered extruder motor gears to arrive at FeF on Friday. Printed out bracket 1 successfully. Working on large aluminium block and designing x-axis adapter.&lt;br /&gt;
=Monday June 24=&lt;br /&gt;
Discussion about design of OSE Power Electronics. Problem - transformers are expensive and inflexible. Solution - research the feasibility of creating a 120V buck converter.  Would it be sufficiently efficient and would it be feasible to build?  Here are some potential parts to use: [https://www.digikey.ca/product-detail/en/comchip-technology/GBPC5010W-G/641-1389-ND/2074854 1kV Recifier] [https://www.digikey.ca/product-detail/en/ixys/IXFX120N65X2/IXFX120N65X2-ND/5629498?utm_adgroup=&amp;amp;mkwid=sFMkJ49os&amp;amp;pcrid=311971049444&amp;amp;pkw=&amp;amp;pmt=&amp;amp;pdv=c&amp;amp;productid=5629498&amp;amp;slid=&amp;amp;gclid=EAIaIQobChMIgbDd1fSC4wIVwkOGCh1f8gijEAQYAyABEgJGffD_BwE 650V MOSFET].  One problem seems to be that there may be a high level of energy loss in the circuit....[https://www.digikey.com/product-detail/en/everlight-electronics-co-ltd/H11L1S-TA/1080-1201-1-ND/2675935 Optocoupler] (to isolate the Arduino)[http://fpec.ucf.edu/teaching/EEL%205245%20Lectures/Lecture13%20Chapter4_BoostandBuckBoost_CCM_Analysis.pdf Some background theory]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 19 - Sunday June 23=&lt;br /&gt;
DIY Buck Converter based on the following video (and others): https://www.youtube.com/watch?v=L5oeY53pE0E&amp;amp;t=162s. [https://photos.app.goo.gl/kkHUwBQtD7h48mhB6 Photos.] All four 3D printers are down.  A crucial piece of the extruder of the most reliable printer finally broke. CAD already done for the replacement part. Got the OSE D3D working again on Friday.  Ready for printing on Monday - will print replacement part for other printer.  Other 2 printers almost working...&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 18=&lt;br /&gt;
[https://www.pythonpowerelectronics.com/ Python Power Electronics]&lt;br /&gt;
=Thursday June 13 - Monday June 17=&lt;br /&gt;
Buck Converters. OSE [[Power Electronics]] research. Arduino as controller of Power electronics - frequency issues / limitations. Scalability of Power electronics - can we add modular components to increase voltage, current, etc.?  &lt;br /&gt;
=Tuesday June 11 - Wednesday June 12=&lt;br /&gt;
Completed and sent CAD Drawings for OSE 3D Printer. Spent most of Wednesday working through a jam on the Titan Aero - it has jammed more in a few days than our other extruder has jammed in over three years.&lt;br /&gt;
=Monday June 10=&lt;br /&gt;
[https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH FreeCAD Drawings] for OSE 3D Printer. Note the use of parametric design in the CAD files - Spreadsheet values become variables used in constraint dimensions.&lt;br /&gt;
The following is my most recent FreeCAD Parametric Part Design and Drawing Workflow:[[FreeCAD Workflow]]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 5 - Sunday June 9=&lt;br /&gt;
[https://www.youtube.com/watch?v=CEhBN5_fO5o|DC-DC Buck Converters]&lt;br /&gt;
Power Supply: Transformer + Buck Converter + Ripple Smoothing Circuitry&lt;br /&gt;
=Tuesday June 4=&lt;br /&gt;
*[[Arduino Controlled Power Supply]] - ordered many components.&lt;br /&gt;
*Many electronic components specified in DIY articles and videos are now listed as obsolete.  Finding replacement parts is not easy. Case in point: LM338K Linear Voltage Regulators - Listed as obsolete on the Mouser website and selling for $91 or more on the Digi-key website.&lt;br /&gt;
*[https://www.eetimes.com/document.asp?doc_id=1333695# Article about obsolescence and demand and supply issues in the electronics industry]&lt;br /&gt;
&lt;br /&gt;
=Saturday June 1 - Monday June 3=&lt;br /&gt;
Reviewed [[OSE Design Guides]] Reviewed [[DIY Semiconductors]] Microfactory STEAM Camp Critical Path [[Arduino Controlled Power Supply]] Fabrication of aluminium blocks for hot end for OSE 3D printer extruder. Parametric modelling in FreeCAD.&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 28 - Friday May 31=&lt;br /&gt;
[[Halbach Array Brushless Motor]]&lt;br /&gt;
&lt;br /&gt;
=Monday May 27= &lt;br /&gt;
[https://www.youtube.com/watch?v=uOQk8SJso6Q How to Control an ESC with an Arduino] [https://photos.app.goo.gl/HMvWbigvuw3S26YG8 Test of the OSE Motor].&lt;br /&gt;
&lt;br /&gt;
=Friday May 24 - Sunday May 26= &lt;br /&gt;
Not all that much.&lt;br /&gt;
=Thursday May 23=&lt;br /&gt;
Thank you to Marcin and Catarina for a refreshing, enlightening and enjoyable visit to Factor e Farm and the Seed Ecohome. Returned to London.&lt;br /&gt;
=Wednesday May 22=&lt;br /&gt;
Skype appointment - 12pm Missouri time - friend in Colombia. Uploaded FreeCAD files for D3D v19.04 Power Plug Case to Wiki. [https://en.wikipedia.org/wiki/Buck_converter Buck Converter]&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 21=&lt;br /&gt;
[https://www.powerelectronicsnews.com/problems-solutions/power-supply-design-tutorial Power Supply Design Tutorial] Edited the [https://docs.google.com/document/d/1_3t_97giFOtqJ4ExPZdYeVEilCRhMmu0IWLLpBCrG-0/edit?usp=sharing Video Script] &lt;br /&gt;
Contacted STEM people in Nigeria and Pennsylvania based on the OSE STEAM Camp posted in this [https://www.facebook.com/groups/822455171229260/ Facebook Forum]&lt;br /&gt;
Further communication with friends in Mexico regarding the STEAM camp. Contacted a friend of a friend in Kansas City - Baha&#039;i Community.&lt;br /&gt;
&lt;br /&gt;
=Monday May 20=&lt;br /&gt;
Posted Microfactory STEAM camp on several Facebook STEM/STEAM Education pages. [[The Living Curriculum]] [https://github.com/MarlinFirmware/Marlin/issues/8903 Marlin Bed Temperature Settings] Worked on the Titan-Aero extruder repairs. The two parts of the extruder tube must be fairly tight (but not too tight!) to avoid leakage.&lt;br /&gt;
&lt;br /&gt;
=Sunday May 19=&lt;br /&gt;
Printing ABS using the OSE D3D - Set the bed temperature to 83 and the nozzle temperature to 255.  After 5 minutes of printing, several layers were adhering well. Thermal runaway. Tried 80 and 244; thermal runaway again. Joined several online STEM/Education groups.&lt;br /&gt;
&lt;br /&gt;
=Saturday May 18=&lt;br /&gt;
[[OSE Revenue Generation]] - Grameen Bank / Social Business - [[OSE Curriculum]]&lt;br /&gt;
&lt;br /&gt;
=Friday May 17=&lt;br /&gt;
[[OSE STEM Camp Marketing Strategy]]&lt;br /&gt;
=Friday May 10 - Thursday May 16= &lt;br /&gt;
Preparation for trip to Factor e Farm - gathered supplies - PCB boards, glossy paper, wire, magnets, electronic components, hardware, etc. Arrival at Factor e Farm. Work on D3D v. 19.04: [Photos - OSE D3D v19.04 Build at FeF https://www.facebook.com/photo.php?fbid=10161819908970597&amp;amp;set=pcb.1063740287151880&amp;amp;type=3&amp;amp;theater&amp;amp;ifg=1]&lt;br /&gt;
 &lt;br /&gt;
=Friday April 12 - Thursday May 9=&lt;br /&gt;
[https://drive.google.com/open?id=1-DpgMCARsA5iz4JLZtUeP3SD4a3UrXhj OSE Motor Completed] - ready for testing - Open Source Chinese Prusa i3 Printer Extruder - Configured and began printing with OSE D3D - printing very well at the moment - Booked a flight to Kansas City - heading to Factor e Farm soon!&lt;br /&gt;
&lt;br /&gt;
=Monday March 4 - Thursday April 11=&lt;br /&gt;
FRC Robotics - Ryerson University, Western University. OSE Motor - students have made some progress: [https://drive.google.com/open?id=1n99XWM8KMwvnV-tCmcWjImsBG27ReRSc OSE Brushless Motor] Additional work on the [[Simple 3D Printer Extruder]]&lt;br /&gt;
&lt;br /&gt;
=Sunday March 3=&lt;br /&gt;
Completed the first model of the most difficult part to CAD in the extruder - the X-Axis bracket.  Will now print CAD files and measure their accuracy before making changes to the CAD parameters.  Hopefully this process will result in more accurate parts.&lt;br /&gt;
&lt;br /&gt;
=Friday March 1 - Saturday March 2 =&lt;br /&gt;
Further work on open sourcing Chinese Prusa i3 3D printer extruder.&lt;br /&gt;
&lt;br /&gt;
=Monday February 18 - Thursday February 28=&lt;br /&gt;
Began the process of open-sourcing our 3D printer extruder: [[Simple 3D Printer Extruder]] (see photos and CAD files in the 3D Printer Folder) &lt;br /&gt;
Started a new unit in Computer Engineering Technology class.  Two groups of students are working on OSE materials:  &lt;br /&gt;
#The OSE Collaborative Contest&lt;br /&gt;
#The OSE Filament Extruder&lt;br /&gt;
&lt;br /&gt;
=Saturday February 9-Sunday February 17=&lt;br /&gt;
Hosted a group of six STEM students from School of the Nations in Georgetown, Guyana. STEM Camp at London International Academy.  Introduced the concept of the OSE collaborative contest. Introductory FreeCAD activities. Introduced Python computer programming.  Printed out various parts for an open source brushless motor.  [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX Link to CAD Files] (see School of the Nations sub-folder)[[file:Rotor.jpg|200px]] [http://guyanachronicle.com/2019/02/17/nations-benefits-from-robotics-training-in-canada Article in Guyana Chronicle]&lt;br /&gt;
&lt;br /&gt;
=Wednesday February 6= &lt;br /&gt;
[[OSE Coopetition]].  Discussed wiki + part library + documentation of OSE Coopetition.&lt;br /&gt;
&lt;br /&gt;
=Monday February 4=&lt;br /&gt;
Uploaded version 0.1 of the OSE Collaborative Contest Rules to [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest]&lt;br /&gt;
=Wednesday January 30 - Sunday February 3=&lt;br /&gt;
FRC Build season.  [https://drive.google.com/drive/folders/1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH?usp=sharing Team 6162 Cap Alpaca FreeCAD files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday January 29=&lt;br /&gt;
Collected FreeCAD files in a Google drive folder: [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest] &lt;br /&gt;
Summary of Nanjing group&#039;s schedule: [https://docs.google.com/document/d/1R-Dtu3kdZ0u8Qo5w3_vDuNEg5myr8mUmLjSpPOf-HoI/edit?usp=sharing | 2019 Winter Camp]&lt;br /&gt;
Here is some sample work from the FreeCAD workshop:&lt;br /&gt;
*[[File:ReyJessica.png|200px]]&lt;br /&gt;
*[[File:ZJHLSR.png|200px]]&lt;br /&gt;
&lt;br /&gt;
=Sunday January 27 - Monday January 28=&lt;br /&gt;
Discussed record keeping, file sharing and other skills for collaborative literacy. Created a sample page stub: [[Brushless Motor Design]].  Asked students to reflect on sessions learning FreeCAD.  Found that it is not necessary to learn a whole lot about FreeCAD in order to get students learning it.  Demonstrated two sample FreeCAD 0.17 design processes:&lt;br /&gt;
#Design a part like a motor adapter: body - sketch a circle - pad - sketch on a surface - pocket&lt;br /&gt;
#Design a sketch with constraints - some straight lines and some arcs closed in a loop with particular dimensions and angles.&lt;br /&gt;
After that, students were directed to Youtube videos that covered specific additional skills: &lt;br /&gt;
*Threading - inner and outer&lt;br /&gt;
*Polar patterns&lt;br /&gt;
Through this process, I learned how to do these skills from some students and was able to show other students the same, especially with polar patterns.&lt;br /&gt;
&lt;br /&gt;
=Sunday January, 20 - Saturday January 26, 2019=&lt;br /&gt;
Prepared for and welcomed 19 students from Jinling High School in China. Introduced the concept of the OSE Collaborative Contest.  Marcin spoke with the group over Jitsi on Thursday and on Saturday and proposed that the students participate in the OSE Collaborative Contest. It was well received despite the students&#039; fatigue from travel and skiing. Introduced FreeCAD and had students download and install it. Some computers do not immediately work with FreeCAD; hope that the problem may be solved. We plan to further discuss the students&#039; participation in the contest tomorrow and 3D print some of their early FreeCAD work on Monday. Created a link to LIA students&#039; FreeCAD work.  Currently the folder is being used for FRC preparation.  After the FRC robot is built, we are planning to transition to OSE-related work in this folder: [https://drive.google.com/open?id=1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH LIA OSE Club CAD Files]&lt;br /&gt;
&lt;br /&gt;
=Thursday January 10 - Saturday Jan 19, 2019=&lt;br /&gt;
Heaviest schedule of the year - January and February; progress slower during this time. Working on STEM Curriculum for FeF STEM Camps - [[Summer School 2019]].&lt;br /&gt;
&lt;br /&gt;
=Wed Jan 9, 2019=&lt;br /&gt;
*Use a presentation - template - make a copy - pass this to Heydar - document the simple 3D printing extruder for a low cost 3d printer - [https://docs.google.com/presentation/d/1_kUzO4eRCqrHVpqxSSTs17oLhtikTTyYe_1NxrTKlTI/edit#slide=id.g45ed589c64_0_0]&lt;br /&gt;
*Homework: Complete STEM Curriculum&lt;br /&gt;
&lt;br /&gt;
=January 2, 2019=&lt;br /&gt;
Ordered parts for a brushless motor to be constructed as part of the contest and part of the Computer Engineering Technology class at London International Academy.&lt;br /&gt;
In order to make the collaborative contest work, we will need to create a kit of parts to be easily shipped to participating schools.&lt;br /&gt;
&lt;br /&gt;
=December 24 2018-January 1, 2019=&lt;br /&gt;
Took a break. Reflected on plans for OSE London / OSE Club at London International Academy / OSE Collaborative Contest&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=December 23, 2018=&lt;br /&gt;
Defined particulars of [[OSE STEM Camps]].&lt;br /&gt;
&lt;br /&gt;
=December 22,2018=&lt;br /&gt;
[[William Conversation | Conversation with Marcin]]. Research on OSE Club Activities. Planning for winter semester courses&#039; links to OSE - Computer Engineering Technology and Computer Science. Plans to do the following in Computer Engineering Technology: build a brushless motor and ESC from scratch. Computer Science: Programming projects related to OSE - simulation program? Western University Introduction to STEM Class - offer the OSE Competition as a choice for a final project - help administer / judge / communicate / etc.&lt;br /&gt;
&lt;br /&gt;
=December 12-21, 2018=&lt;br /&gt;
Exams and marking - excellent ways to hinder educational progress. Discussed Canadian bill of materials with Russ Purvis. Discussed the upcoming OSE workshop in Prince George, BC currently in the planning phase. Several phone conversations with Charlie. Worked on some particulars for the upcoming OSE competition in January. Contacted a teacher in Iran to invite her to join the competition with her students. Sent a letter of reference to Russ with respect to hosting an OSE workshop.&lt;br /&gt;
&lt;br /&gt;
=December 8-11, 2018=&lt;br /&gt;
Spoke with Charlie about development of OSE workshops.  Spoke with Marcin and Catarina about the same. Updated Marcin about development of OSE club at London International Academy.  We now have plans to include at least four schools in our first design challenge - School of the Nations in Guyana, Fujing Foreign Language School in Shenzhen and Jinling School in Nanjing. Was approached by a friend to contact Makerspace managers in St. Thomas and Toronto. Arranged a meeting with the makerspace managers at Western University. OSE Marlin v18.10 works for printing with new printer. Successfully printed base layer of a file.  It seems that the extruder may have jammed.  Will check again as soon as possible. LIA students continue to develop their FreeCAD skills and are able to design parts in parallel according to a spacial plan and assemble them into a larger model. Installed OSE Linux on laptop now with a new old-school 1TcB hard drive. OSE Linux did not recognise the card reader; everything else seems to work very well. &amp;lt;strong&amp;gt;Note: Stepper motors on y axis of D3D became alarmingly hot after about 15 minutes of printing.&amp;lt;/strong&amp;gt; Perhaps this is a configuration issue; may need to resolve this before allowing the printer to do a full print.&lt;br /&gt;
&lt;br /&gt;
=December 7, 2018= &lt;br /&gt;
Using OSE Ubuntu on laptop with fried SSD. Internet has connection through ping but does not display pages in Chromium. D3D Marlin recent version from OSE website installed in printer. Autohome produces a collision of the z axis with the extruder as by default the z probe is off the plate.  Tried to move the y axis using various commands such as G0 Y40 and G1 Y40 all of which cause the Y axis to move until it hits the maximum physically possible position. Spoke with Johann Wong about the possibility of combining an OSE Makerspace skills (Arduino, CAD, etc.) + 3D printer workshop with Human Innovation PIE&#039;s soft skills innovation workshop through the London International Academy Foundation. Was using wrong Marlin file for D3D printer - will try correct one asap. Suggestions for D3D: use zip ties and clothespin springs for tensioning belts.  This has worked exceptionally well and reliably for our Chinese Prusa derivative; the belts have needed nearly no attention in three years.&lt;br /&gt;
&lt;br /&gt;
=December 6, 2018=&lt;br /&gt;
Was about to test print on OSE D3D when SSD crashed.  Did Ubuntu fry it?  Researching this.&lt;br /&gt;
&lt;br /&gt;
=December 5, 2018=&lt;br /&gt;
Introduced the OSE design challenge to OSE Club students at London International Academy.&lt;br /&gt;
&lt;br /&gt;
=December 4, 2018= &lt;br /&gt;
Held an informal Introduction to Arduino Workshop at London International Academy to help two grade 11 students with a project.  Spoke with Marcin about plans for the OSE design challenge, OSE club and possibility of a summer camp at FeF in May or June of 2019.&lt;br /&gt;
&lt;br /&gt;
=December 2, 2018=&lt;br /&gt;
 Created a document outlining a framework for OSL - Open Source London and shared it on Google Docs; visited Charlie to discuss the document.&lt;br /&gt;
&lt;br /&gt;
=November 29, 2018=&lt;br /&gt;
 Introduced OSE 3D Printer and Prusa i3 3D printer to parents and students at a local French Immersion school - PAFI.  Designed and printed various models using Blender and Repetier.&lt;br /&gt;
&lt;br /&gt;
=November 28, 2018=&lt;br /&gt;
*Updated OSECartCoin with letters. &lt;br /&gt;
**[[File:PAFI.stl]]&lt;br /&gt;
**[[File:PAFI.fcstd]]&lt;br /&gt;
*Call with Marcin regarding &#039;&#039;&#039;[[LIA OSE Club]]&#039;&#039;&#039;&lt;br /&gt;
*Build from last week - [https://www.facebook.com/groups/398759490316633/permalink/963594880499755/]&lt;br /&gt;
&lt;br /&gt;
=November 27, 2018=&lt;br /&gt;
Wrote the suggested intro to Marcin&#039;s next TED talk: [[Marcin&#039;s Next TED Talk]]&lt;br /&gt;
=November 26, 2018=&lt;br /&gt;
Uploaded FeF Brick Press Fabrication video from July 29, 2011 - [https://youtu.be/LwW8sOUO00s]&lt;br /&gt;
&amp;lt;p&amp;gt;Uploaded video of the &amp;quot;Cluckaphone&amp;quot; - July 29, 2011 - [https://www.youtube.com/watch?v=PNOhZX7ftLk&amp;amp;feature=youtu.be]&lt;br /&gt;
Call with Marcin, Catarina and Charlie - OSE Planning&lt;br /&gt;
&lt;br /&gt;
=November 25, 2018=&lt;br /&gt;
Consultation about the establishment of an OSE Club at London International Academy and future directions for the development of OSE Clubs and Makerspaces.&lt;br /&gt;
&lt;br /&gt;
=November 24, 2018=&lt;br /&gt;
We made an OSE Cart Coin with FreeCAD &lt;br /&gt;
Here are the files for OSE Cart Coin v0.1:&lt;br /&gt;
[[File:OSECartCoin.fcstd]]&lt;br /&gt;
[[File:OSECartCoin.stl]]&lt;br /&gt;
Attended Marcin&#039;s presentation entitled &amp;quot;Education for the Open Source Economy&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=November 23, 2018=&lt;br /&gt;
Built a an OSE 3D printer at London International Academy&lt;br /&gt;
&lt;br /&gt;
=November 23-25=&lt;br /&gt;
Attended first OSE Professional Development workshop at London International Academy with Charles Freer, Pascal Gingras, Marcin and Catarina.&lt;br /&gt;
&lt;br /&gt;
=November 18-22= &lt;br /&gt;
Prepared for the visit of Marcin and Catarina to London.&lt;br /&gt;
&lt;br /&gt;
=November 17, 2018=&lt;br /&gt;
Conversation about OSE development with Charlie.  In particular, discussion about education and its relationship to developing the capacity to lead a meaningful and productive life. Reference to overlap of Baha&#039;i means and principles with those of the OSE - elimination of the extremes of wealth and poverty, building capabilities in a population, individual agency and initiative within a systematically evolving framework, etc.&lt;br /&gt;
&lt;br /&gt;
=November 16, 2018=&lt;br /&gt;
*Received US $5000 Shuttleworth Foundation Flash Grant&lt;br /&gt;
*Conference call with Marcin and Charles Freer regarding Marcin and Catarina&#039;s upcoming visit to London, Ontario&lt;br /&gt;
&lt;br /&gt;
=November 15, 2018=&lt;br /&gt;
Engineering Club students designed and printed a part to add to the Lyman Filament Extruder repository - a bracket for a rocker switch&lt;br /&gt;
&lt;br /&gt;
[[File:SwitchBracket2.png]]&lt;br /&gt;
[[File:Switchbase2.stl]]&lt;br /&gt;
[[File:SwitchBracket.FCStd]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=May, 2012=&lt;br /&gt;
Started project to build metric version of OSE CEB Press in Nanjing, China&lt;br /&gt;
&lt;br /&gt;
=April, 2012=&lt;br /&gt;
Began 3D Printing project in physics class at London International Academy&lt;br /&gt;
&lt;br /&gt;
=July, 2011-October, 2018=&lt;br /&gt;
Many things happened including severe neglect of the OSE wiki&lt;br /&gt;
Some highlights:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Regular incorporation of OSE concepts into classes and presentations 2011-present&lt;br /&gt;
*May, 2013 - started collaboration with Human InnovationPIE, a London non-profit organization focused on providing soft skills education for innovation.&lt;br /&gt;
*April, 2014 - Recognized in local paper for 3D Printer build with students&lt;br /&gt;
*July, 2015 - Asked to start STEM program at London International Academy further to success and popularity of 3D printer project&lt;br /&gt;
*September, 2015 - Began building Farmbot with students&lt;br /&gt;
*January, 2017 - Began teaching an Introduction to STEM course at Western University with significant OSE-based content.&lt;br /&gt;
&lt;br /&gt;
=July 16, 2011=&lt;br /&gt;
Arrived at Factor e Farm with Haydar Neal&lt;br /&gt;
&lt;br /&gt;
=March,  2011=&lt;br /&gt;
Saw TED Talk and wrote away to Marcin immediately&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=211371</id>
		<title>William Neal Log</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=211371"/>
		<updated>2020-02-15T19:10:15Z</updated>

		<summary type="html">&lt;p&gt;Wneal: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{RightTOC}}&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;600&amp;quot; height=&amp;quot;600&amp;quot; src=&amp;quot;https://osedev.org/wiki/William?start=2/1/2017&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
=Friday February 14 - Saturday February 15=&lt;br /&gt;
Personal Build Wishlist - Continued&lt;br /&gt;
=Friday February 7 - Thursday February 13=&lt;br /&gt;
[https://docs.google.com/document/d/11DUqroMKjpKGh2WxIpkJfl5HaPJJzIl8uK6saErtpgs/edit?usp=sharing William Neal Personal Build Wishlist] - Still under development&lt;br /&gt;
&lt;br /&gt;
=Monday, December 2 - Thursday Feb. 6, 2020=&lt;br /&gt;
End of semester disruption; start of semester disruption - a huge amount of time and effort spent on paperwork instead of education. Start of FRC robotics season. Start of computer programming and computer engineering classes. &lt;br /&gt;
=Saturday November 30 - Sunday December 1=&lt;br /&gt;
Finished OSE Prusa Build in Guyana. Used [https://www.repetier.com/documentation/repetier-firmware/ Repetier Firmware] and [https://www.repetier.com/ Repetier Host] to control the printer.&lt;br /&gt;
=Thursday November 28 - Friday November 29=&lt;br /&gt;
Workshop with the Guyana Prison Service - 12 prison staff from five facilities in Guyana. Reactivated 6 discarded computers using Ubuntu and OSE Linux. [[Introduction to Python]]. [https://m.facebook.com/groups/398759490316633?view=permalink&amp;amp;id=1215623975296843 OSE Prusa Build]&lt;br /&gt;
&lt;br /&gt;
=Saturday November 23  Wednesday November 27=&lt;br /&gt;
Workshop in Guyana with the Guyana Prison Service: The CSSP Project.  This project aims to replace the current model of prison management with an approach based on human nobility, education and rehabilitation.&lt;br /&gt;
=Thursday November 28=&lt;br /&gt;
[[OSE Linux]] - we got six old computers working on Ubuntu using flash drives.  Tomorrow will have an Open Source software workshop using OSE Linux on USB drives. We will use Python, FreeCAD, LibreOffice, etc. Showed the TED talk to our group of 12 prison officers from five facilities in Guyana.&lt;br /&gt;
&lt;br /&gt;
=Saturday November 2 - Friday November 22=&lt;br /&gt;
Worked on the [[OSE Prusa]] in order to support the establishment of a STEM centre in Trinidad and Tobago and to prepare for a workshop with the Government of Guyana.&lt;br /&gt;
#Items in a numbered list&lt;br /&gt;
#More Items&lt;br /&gt;
##Yet More&lt;br /&gt;
*Items in a bullet list&lt;br /&gt;
*More Items&lt;br /&gt;
**Yet More&lt;br /&gt;
&lt;br /&gt;
=Thursday October 24 - Friday November 1=&lt;br /&gt;
*Tested printing on the London replication of the D3D printer for the first time.&lt;br /&gt;
*Team of 9 students from Western university preparing a project around OSE - D3D replication + filament extruder replication + Chinese Reprap Prusa i3 reverse engineering.&lt;br /&gt;
=Sunday October 12 - Wednesday October 23=&lt;br /&gt;
*Updated some files used in the simple extruder build [https://wiki.opensourceecology.org/wiki/Simple_3D_Printer_Extruder#CAD here.]&lt;br /&gt;
&lt;br /&gt;
=Friday October 4 - Saturday October 11=&lt;br /&gt;
*Successfully tested D3D simple extruder based on Chinese Prusa i3.&lt;br /&gt;
*D3D challenge - Y axis end stop stopped working...&lt;br /&gt;
*Almost finished replicating first of two D3D printers in London Ontario.&lt;br /&gt;
*Preparing a D3D / Brushless motor workshop for the Guyana Prison Service. &lt;br /&gt;
*FreeCAD activity completed at Western University - varied response of individuals in the groups - the allocated time was too short. &lt;br /&gt;
=Friday September 27 - Thursday October 3=&lt;br /&gt;
*Continued work on D3D build.&lt;br /&gt;
*Experimenting with highly differentiated instruction unconstrained by government curricular concerns - our STEM club&#039;s three sections - Robotics / Computers and CAD / STEM projects have each gradually evolved over the last several weeks such that small groups of 1-4 students specialize on special tasks.&lt;br /&gt;
*Introduced FreeCAD to a group of junior youth from a local neighborhood. After about 40 minutes each group of two participants completed a motor rotor design.&lt;br /&gt;
*Second FreeCAD session with a group of 40 teacher candidate students at Western University&#039;s Althouse. Also used highly differentiated / interdisciplinary instruction with this group. After one hour and a half, most groups were able to generate several parts of a brushless motor and begin the process of parameterizing with a spreadsheet and creating an assembly.  Some trained engineers in the crowd generated excellent &amp;quot;propellers&amp;quot; for the motor using advanced features.&lt;br /&gt;
&lt;br /&gt;
=Tuesday, September 1 - Thursday, September 26=&lt;br /&gt;
*New School Year - over 40 students participating in our special STEM/Business/Arts program.&lt;br /&gt;
*Two sections of our program, STEM Projects and Computer Programming/CAD,  include OSE-related topics:&lt;br /&gt;
**Building 3D printers&lt;br /&gt;
**3D-printing&lt;br /&gt;
**OSE Motor design and fabrication&lt;br /&gt;
**Filament extruder&lt;br /&gt;
**CAD&lt;br /&gt;
*Building a 3D printer in collaboration with Bill Phelan, Vice President of Die-X Ltd.&lt;br /&gt;
*Remote collaboration with Branko Misovic in Holland.&lt;br /&gt;
*Preparing for a two-week 3D-printer build / open source hardware workshop in Guyana in November.&lt;br /&gt;
*Working on simple extruder for the D3D printer.&lt;br /&gt;
*Some 3D-printed parts for the D3D printer are not precise enough as they were printed with 1.0mm and 0.8mm nozzles.  We are switching to a 0.4mm nozzle and re-printing.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 27 - Monday September 1=&lt;br /&gt;
*Preparation for STEM camps in China. &lt;br /&gt;
*Travel to China.  Caught behind firewall - Internet was actually a large Intranet - difficult to post, communicate or access any useful sites. &lt;br /&gt;
*STEM Camp at Fujing Foreign language school - 10 days - 60 students, 1.5 hours daily - worked on FreeCAD and the OSE motor. &lt;br /&gt;
*Built OSE D3D printer with eight 9-11 year-old students (10 days, 3 hours daily) at EIC Education in Shenzhen.  The students assembled the axes and helped design some custom 3D-printed brackets for the frame which had to be made out of linear rail. The students learned FreeCAD and were able to design useful parts. Ganesh Ramsahai provided support in completing the build and configuration process. Presented the OSE D3D Shenzhen to the EIC Education Group with a half-hour overview and offer to provide remote support.&lt;br /&gt;
*STEM Camp at Zhangjiagang Foreign Language School in Jiangsu province. 30 students, 3 days, 6 hours per day.  Introduced FreeCAD and had the students design rotors and stators for the OSE brushless motor.&lt;br /&gt;
*Showed the TED talk to four different groups.&lt;br /&gt;
*Uploaded raw FreeCAD and stl files from the camps at Fujing Foreign Language School and Zhangjiagang Foreign Language School to [https://drive.google.com/open?id=1K7U8lEGqRgxwQf-WNX1Llbf-WE7LJCqL Google Drive]&lt;br /&gt;
*Uploaded [https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH custom files] generated during the build of the D3D 19.08 Shenzhen.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 20 - Friday July 26=&lt;br /&gt;
LIA summer STEM camp continued with 38 different students from Shenzhen, China.  The students discussed, in the context of Marcin&#039;s TED Talk, the concept that the human mind, focused and in collaboration with others, has the power to make positive changes in society.  Design of covers and caps for the OSE radial motor. Photos from the STEM Camp activities are [https://photos.app.goo.gl/zcpKk8jaFcDon31K7 here].  Trying to find the USB where we collected all the FreeCAD files.  These will be posted ASAP.&lt;br /&gt;
&lt;br /&gt;
=Monday July 15 - Friday July 19=&lt;br /&gt;
LIA summer STEM camp with 23 students from Vietnam and China. OSE Motor project part II - designing, printing and testing a radial motor. The motor concept was based on the following video: [https://www.youtube.com/watch?v=JkwLpAAfBVI 3D-Printed Axial Brushless Motor for Drones] Students were presented with the concept and asked to design such a motor from scratch using two rotors with eight disc magnets each and two sets of six wire loops.&lt;br /&gt;
&lt;br /&gt;
=Wednesday July 10 - Sunday July 14=&lt;br /&gt;
Preparation for summer STEM Camps at LIA.  Prepared 3D printers.  Began replication of two D3D v19.06 units.&lt;br /&gt;
=Friday June 28 - Tuesday July 9= &lt;br /&gt;
Open Source Ecology Microfactory STEAM Camp&lt;br /&gt;
=Thursday June 27=&lt;br /&gt;
Titan Aero finally working better with 1.5 full turns + a little bit more for good measure - has not jammed all afternoon now - three parts printed.  Logistics for Microfatory STEAM Camp - rented a vehicle and contacted a few participants. A prototype of the OSE extruder has been nearly completed. The extruder gear is scheduled to arrive at Factor e Farm by tomorrow. Then it will be ready for testing.  [https://photos.app.goo.gl/fWUX8ynAdqcn6Fvs6 OSE D3D Extruder - Photo Album][https://drive.google.com/open?id=17BLyvyk1EbrMOhkCfeSwByAq86SemSLX Files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 25 - Wednesday June 26=&lt;br /&gt;
OSE D3D Extruder.  Worked on attaching extruder to X-axis. Ordered extruder motor gears to arrive at FeF on Friday. Printed out bracket 1 successfully. Working on large aluminium block and designing x-axis adapter.&lt;br /&gt;
=Monday June 24=&lt;br /&gt;
Discussion about design of OSE Power Electronics. Problem - transformers are expensive and inflexible. Solution - research the feasibility of creating a 120V buck converter.  Would it be sufficiently efficient and would it be feasible to build?  Here are some potential parts to use: [https://www.digikey.ca/product-detail/en/comchip-technology/GBPC5010W-G/641-1389-ND/2074854 1kV Recifier] [https://www.digikey.ca/product-detail/en/ixys/IXFX120N65X2/IXFX120N65X2-ND/5629498?utm_adgroup=&amp;amp;mkwid=sFMkJ49os&amp;amp;pcrid=311971049444&amp;amp;pkw=&amp;amp;pmt=&amp;amp;pdv=c&amp;amp;productid=5629498&amp;amp;slid=&amp;amp;gclid=EAIaIQobChMIgbDd1fSC4wIVwkOGCh1f8gijEAQYAyABEgJGffD_BwE 650V MOSFET].  One problem seems to be that there may be a high level of energy loss in the circuit....[https://www.digikey.com/product-detail/en/everlight-electronics-co-ltd/H11L1S-TA/1080-1201-1-ND/2675935 Optocoupler] (to isolate the Arduino)[http://fpec.ucf.edu/teaching/EEL%205245%20Lectures/Lecture13%20Chapter4_BoostandBuckBoost_CCM_Analysis.pdf Some background theory]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 19 - Sunday June 23=&lt;br /&gt;
DIY Buck Converter based on the following video (and others): https://www.youtube.com/watch?v=L5oeY53pE0E&amp;amp;t=162s. [https://photos.app.goo.gl/kkHUwBQtD7h48mhB6 Photos.] All four 3D printers are down.  A crucial piece of the extruder of the most reliable printer finally broke. CAD already done for the replacement part. Got the OSE D3D working again on Friday.  Ready for printing on Monday - will print replacement part for other printer.  Other 2 printers almost working...&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 18=&lt;br /&gt;
[https://www.pythonpowerelectronics.com/ Python Power Electronics]&lt;br /&gt;
=Thursday June 13 - Monday June 17=&lt;br /&gt;
Buck Converters. OSE [[Power Electronics]] research. Arduino as controller of Power electronics - frequency issues / limitations. Scalability of Power electronics - can we add modular components to increase voltage, current, etc.?  &lt;br /&gt;
=Tuesday June 11 - Wednesday June 12=&lt;br /&gt;
Completed and sent CAD Drawings for OSE 3D Printer. Spent most of Wednesday working through a jam on the Titan Aero - it has jammed more in a few days than our other extruder has jammed in over three years.&lt;br /&gt;
=Monday June 10=&lt;br /&gt;
[https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH FreeCAD Drawings] for OSE 3D Printer. Note the use of parametric design in the CAD files - Spreadsheet values become variables used in constraint dimensions.&lt;br /&gt;
The following is my most recent FreeCAD Parametric Part Design and Drawing Workflow:[[FreeCAD Workflow]]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 5 - Sunday June 9=&lt;br /&gt;
[https://www.youtube.com/watch?v=CEhBN5_fO5o|DC-DC Buck Converters]&lt;br /&gt;
Power Supply: Transformer + Buck Converter + Ripple Smoothing Circuitry&lt;br /&gt;
=Tuesday June 4=&lt;br /&gt;
*[[Arduino Controlled Power Supply]] - ordered many components.&lt;br /&gt;
*Many electronic components specified in DIY articles and videos are now listed as obsolete.  Finding replacement parts is not easy. Case in point: LM338K Linear Voltage Regulators - Listed as obsolete on the Mouser website and selling for $91 or more on the Digi-key website.&lt;br /&gt;
*[https://www.eetimes.com/document.asp?doc_id=1333695# Article about obsolescence and demand and supply issues in the electronics industry]&lt;br /&gt;
&lt;br /&gt;
=Saturday June 1 - Monday June 3=&lt;br /&gt;
Reviewed [[OSE Design Guides]] Reviewed [[DIY Semiconductors]] Microfactory STEAM Camp Critical Path [[Arduino Controlled Power Supply]] Fabrication of aluminium blocks for hot end for OSE 3D printer extruder. Parametric modelling in FreeCAD.&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 28 - Friday May 31=&lt;br /&gt;
[[Halbach Array Brushless Motor]]&lt;br /&gt;
&lt;br /&gt;
=Monday May 27= &lt;br /&gt;
[https://www.youtube.com/watch?v=uOQk8SJso6Q How to Control an ESC with an Arduino] [https://photos.app.goo.gl/HMvWbigvuw3S26YG8 Test of the OSE Motor].&lt;br /&gt;
&lt;br /&gt;
=Friday May 24 - Sunday May 26= &lt;br /&gt;
Not all that much.&lt;br /&gt;
=Thursday May 23=&lt;br /&gt;
Thank you to Marcin and Catarina for a refreshing, enlightening and enjoyable visit to Factor e Farm and the Seed Ecohome. Returned to London.&lt;br /&gt;
=Wednesday May 22=&lt;br /&gt;
Skype appointment - 12pm Missouri time - friend in Colombia. Uploaded FreeCAD files for D3D v19.04 Power Plug Case to Wiki. [https://en.wikipedia.org/wiki/Buck_converter Buck Converter]&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 21=&lt;br /&gt;
[https://www.powerelectronicsnews.com/problems-solutions/power-supply-design-tutorial Power Supply Design Tutorial] Edited the [https://docs.google.com/document/d/1_3t_97giFOtqJ4ExPZdYeVEilCRhMmu0IWLLpBCrG-0/edit?usp=sharing Video Script] &lt;br /&gt;
Contacted STEM people in Nigeria and Pennsylvania based on the OSE STEAM Camp posted in this [https://www.facebook.com/groups/822455171229260/ Facebook Forum]&lt;br /&gt;
Further communication with friends in Mexico regarding the STEAM camp. Contacted a friend of a friend in Kansas City - Baha&#039;i Community.&lt;br /&gt;
&lt;br /&gt;
=Monday May 20=&lt;br /&gt;
Posted Microfactory STEAM camp on several Facebook STEM/STEAM Education pages. [[The Living Curriculum]] [https://github.com/MarlinFirmware/Marlin/issues/8903 Marlin Bed Temperature Settings] Worked on the Titan-Aero extruder repairs. The two parts of the extruder tube must be fairly tight (but not too tight!) to avoid leakage.&lt;br /&gt;
&lt;br /&gt;
=Sunday May 19=&lt;br /&gt;
Printing ABS using the OSE D3D - Set the bed temperature to 83 and the nozzle temperature to 255.  After 5 minutes of printing, several layers were adhering well. Thermal runaway. Tried 80 and 244; thermal runaway again. Joined several online STEM/Education groups.&lt;br /&gt;
&lt;br /&gt;
=Saturday May 18=&lt;br /&gt;
[[OSE Revenue Generation]] - Grameen Bank / Social Business - [[OSE Curriculum]]&lt;br /&gt;
&lt;br /&gt;
=Friday May 17=&lt;br /&gt;
[[OSE STEM Camp Marketing Strategy]]&lt;br /&gt;
=Friday May 10 - Thursday May 16= &lt;br /&gt;
Preparation for trip to Factor e Farm - gathered supplies - PCB boards, glossy paper, wire, magnets, electronic components, hardware, etc. Arrival at Factor e Farm. Work on D3D v. 19.04: [Photos - OSE D3D v19.04 Build at FeF https://www.facebook.com/photo.php?fbid=10161819908970597&amp;amp;set=pcb.1063740287151880&amp;amp;type=3&amp;amp;theater&amp;amp;ifg=1]&lt;br /&gt;
 &lt;br /&gt;
=Friday April 12 - Thursday May 9=&lt;br /&gt;
[https://drive.google.com/open?id=1-DpgMCARsA5iz4JLZtUeP3SD4a3UrXhj OSE Motor Completed] - ready for testing - Open Source Chinese Prusa i3 Printer Extruder - Configured and began printing with OSE D3D - printing very well at the moment - Booked a flight to Kansas City - heading to Factor e Farm soon!&lt;br /&gt;
&lt;br /&gt;
=Monday March 4 - Thursday April 11=&lt;br /&gt;
FRC Robotics - Ryerson University, Western University. OSE Motor - students have made some progress: [https://drive.google.com/open?id=1n99XWM8KMwvnV-tCmcWjImsBG27ReRSc OSE Brushless Motor] Additional work on the [[Simple 3D Printer Extruder]]&lt;br /&gt;
&lt;br /&gt;
=Sunday March 3=&lt;br /&gt;
Completed the first model of the most difficult part to CAD in the extruder - the X-Axis bracket.  Will now print CAD files and measure their accuracy before making changes to the CAD parameters.  Hopefully this process will result in more accurate parts.&lt;br /&gt;
&lt;br /&gt;
=Friday March 1 - Saturday March 2 =&lt;br /&gt;
Further work on open sourcing Chinese Prusa i3 3D printer extruder.&lt;br /&gt;
&lt;br /&gt;
=Monday February 18 - Thursday February 28=&lt;br /&gt;
Began the process of open-sourcing our 3D printer extruder: [[Simple 3D Printer Extruder]] (see photos and CAD files in the 3D Printer Folder) &lt;br /&gt;
Started a new unit in Computer Engineering Technology class.  Two groups of students are working on OSE materials:  &lt;br /&gt;
#The OSE Collaborative Contest&lt;br /&gt;
#The OSE Filament Extruder&lt;br /&gt;
&lt;br /&gt;
=Saturday February 9-Sunday February 17=&lt;br /&gt;
Hosted a group of six STEM students from School of the Nations in Georgetown, Guyana. STEM Camp at London International Academy.  Introduced the concept of the OSE collaborative contest. Introductory FreeCAD activities. Introduced Python computer programming.  Printed out various parts for an open source brushless motor.  [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX Link to CAD Files] (see School of the Nations sub-folder)[[file:Rotor.jpg|200px]] [http://guyanachronicle.com/2019/02/17/nations-benefits-from-robotics-training-in-canada Article in Guyana Chronicle]&lt;br /&gt;
&lt;br /&gt;
=Wednesday February 6= &lt;br /&gt;
[[OSE Coopetition]].  Discussed wiki + part library + documentation of OSE Coopetition.&lt;br /&gt;
&lt;br /&gt;
=Monday February 4=&lt;br /&gt;
Uploaded version 0.1 of the OSE Collaborative Contest Rules to [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest]&lt;br /&gt;
=Wednesday January 30 - Sunday February 3=&lt;br /&gt;
FRC Build season.  [https://drive.google.com/drive/folders/1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH?usp=sharing Team 6162 Cap Alpaca FreeCAD files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday January 29=&lt;br /&gt;
Collected FreeCAD files in a Google drive folder: [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest] &lt;br /&gt;
Summary of Nanjing group&#039;s schedule: [https://docs.google.com/document/d/1R-Dtu3kdZ0u8Qo5w3_vDuNEg5myr8mUmLjSpPOf-HoI/edit?usp=sharing | 2019 Winter Camp]&lt;br /&gt;
Here is some sample work from the FreeCAD workshop:&lt;br /&gt;
*[[File:ReyJessica.png|200px]]&lt;br /&gt;
*[[File:ZJHLSR.png|200px]]&lt;br /&gt;
&lt;br /&gt;
=Sunday January 27 - Monday January 28=&lt;br /&gt;
Discussed record keeping, file sharing and other skills for collaborative literacy. Created a sample page stub: [[Brushless Motor Design]].  Asked students to reflect on sessions learning FreeCAD.  Found that it is not necessary to learn a whole lot about FreeCAD in order to get students learning it.  Demonstrated two sample FreeCAD 0.17 design processes:&lt;br /&gt;
#Design a part like a motor adapter: body - sketch a circle - pad - sketch on a surface - pocket&lt;br /&gt;
#Design a sketch with constraints - some straight lines and some arcs closed in a loop with particular dimensions and angles.&lt;br /&gt;
After that, students were directed to Youtube videos that covered specific additional skills: &lt;br /&gt;
*Threading - inner and outer&lt;br /&gt;
*Polar patterns&lt;br /&gt;
Through this process, I learned how to do these skills from some students and was able to show other students the same, especially with polar patterns.&lt;br /&gt;
&lt;br /&gt;
=Sunday January, 20 - Saturday January 26, 2019=&lt;br /&gt;
Prepared for and welcomed 19 students from Jinling High School in China. Introduced the concept of the OSE Collaborative Contest.  Marcin spoke with the group over Jitsi on Thursday and on Saturday and proposed that the students participate in the OSE Collaborative Contest. It was well received despite the students&#039; fatigue from travel and skiing. Introduced FreeCAD and had students download and install it. Some computers do not immediately work with FreeCAD; hope that the problem may be solved. We plan to further discuss the students&#039; participation in the contest tomorrow and 3D print some of their early FreeCAD work on Monday. Created a link to LIA students&#039; FreeCAD work.  Currently the folder is being used for FRC preparation.  After the FRC robot is built, we are planning to transition to OSE-related work in this folder: [https://drive.google.com/open?id=1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH LIA OSE Club CAD Files]&lt;br /&gt;
&lt;br /&gt;
=Thursday January 10 - Saturday Jan 19, 2019=&lt;br /&gt;
Heaviest schedule of the year - January and February; progress slower during this time. Working on STEM Curriculum for FeF STEM Camps - [[Summer School 2019]].&lt;br /&gt;
&lt;br /&gt;
=Wed Jan 9, 2019=&lt;br /&gt;
*Use a presentation - template - make a copy - pass this to Heydar - document the simple 3D printing extruder for a low cost 3d printer - [https://docs.google.com/presentation/d/1_kUzO4eRCqrHVpqxSSTs17oLhtikTTyYe_1NxrTKlTI/edit#slide=id.g45ed589c64_0_0]&lt;br /&gt;
*Homework: Complete STEM Curriculum&lt;br /&gt;
&lt;br /&gt;
=January 2, 2019=&lt;br /&gt;
Ordered parts for a brushless motor to be constructed as part of the contest and part of the Computer Engineering Technology class at London International Academy.&lt;br /&gt;
In order to make the collaborative contest work, we will need to create a kit of parts to be easily shipped to participating schools.&lt;br /&gt;
&lt;br /&gt;
=December 24 2018-January 1, 2019=&lt;br /&gt;
Took a break. Reflected on plans for OSE London / OSE Club at London International Academy / OSE Collaborative Contest&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=December 23, 2018=&lt;br /&gt;
Defined particulars of [[OSE STEM Camps]].&lt;br /&gt;
&lt;br /&gt;
=December 22,2018=&lt;br /&gt;
[[William Conversation | Conversation with Marcin]]. Research on OSE Club Activities. Planning for winter semester courses&#039; links to OSE - Computer Engineering Technology and Computer Science. Plans to do the following in Computer Engineering Technology: build a brushless motor and ESC from scratch. Computer Science: Programming projects related to OSE - simulation program? Western University Introduction to STEM Class - offer the OSE Competition as a choice for a final project - help administer / judge / communicate / etc.&lt;br /&gt;
&lt;br /&gt;
=December 12-21, 2018=&lt;br /&gt;
Exams and marking - excellent ways to hinder educational progress. Discussed Canadian bill of materials with Russ Purvis. Discussed the upcoming OSE workshop in Prince George, BC currently in the planning phase. Several phone conversations with Charlie. Worked on some particulars for the upcoming OSE competition in January. Contacted a teacher in Iran to invite her to join the competition with her students. Sent a letter of reference to Russ with respect to hosting an OSE workshop.&lt;br /&gt;
&lt;br /&gt;
=December 8-11, 2018=&lt;br /&gt;
Spoke with Charlie about development of OSE workshops.  Spoke with Marcin and Catarina about the same. Updated Marcin about development of OSE club at London International Academy.  We now have plans to include at least four schools in our first design challenge - School of the Nations in Guyana, Fujing Foreign Language School in Shenzhen and Jinling School in Nanjing. Was approached by a friend to contact Makerspace managers in St. Thomas and Toronto. Arranged a meeting with the makerspace managers at Western University. OSE Marlin v18.10 works for printing with new printer. Successfully printed base layer of a file.  It seems that the extruder may have jammed.  Will check again as soon as possible. LIA students continue to develop their FreeCAD skills and are able to design parts in parallel according to a spacial plan and assemble them into a larger model. Installed OSE Linux on laptop now with a new old-school 1TcB hard drive. OSE Linux did not recognise the card reader; everything else seems to work very well. &amp;lt;strong&amp;gt;Note: Stepper motors on y axis of D3D became alarmingly hot after about 15 minutes of printing.&amp;lt;/strong&amp;gt; Perhaps this is a configuration issue; may need to resolve this before allowing the printer to do a full print.&lt;br /&gt;
&lt;br /&gt;
=December 7, 2018= &lt;br /&gt;
Using OSE Ubuntu on laptop with fried SSD. Internet has connection through ping but does not display pages in Chromium. D3D Marlin recent version from OSE website installed in printer. Autohome produces a collision of the z axis with the extruder as by default the z probe is off the plate.  Tried to move the y axis using various commands such as G0 Y40 and G1 Y40 all of which cause the Y axis to move until it hits the maximum physically possible position. Spoke with Johann Wong about the possibility of combining an OSE Makerspace skills (Arduino, CAD, etc.) + 3D printer workshop with Human Innovation PIE&#039;s soft skills innovation workshop through the London International Academy Foundation. Was using wrong Marlin file for D3D printer - will try correct one asap. Suggestions for D3D: use zip ties and clothespin springs for tensioning belts.  This has worked exceptionally well and reliably for our Chinese Prusa derivative; the belts have needed nearly no attention in three years.&lt;br /&gt;
&lt;br /&gt;
=December 6, 2018=&lt;br /&gt;
Was about to test print on OSE D3D when SSD crashed.  Did Ubuntu fry it?  Researching this.&lt;br /&gt;
&lt;br /&gt;
=December 5, 2018=&lt;br /&gt;
Introduced the OSE design challenge to OSE Club students at London International Academy.&lt;br /&gt;
&lt;br /&gt;
=December 4, 2018= &lt;br /&gt;
Held an informal Introduction to Arduino Workshop at London International Academy to help two grade 11 students with a project.  Spoke with Marcin about plans for the OSE design challenge, OSE club and possibility of a summer camp at FeF in May or June of 2019.&lt;br /&gt;
&lt;br /&gt;
=December 2, 2018=&lt;br /&gt;
 Created a document outlining a framework for OSL - Open Source London and shared it on Google Docs; visited Charlie to discuss the document.&lt;br /&gt;
&lt;br /&gt;
=November 29, 2018=&lt;br /&gt;
 Introduced OSE 3D Printer and Prusa i3 3D printer to parents and students at a local French Immersion school - PAFI.  Designed and printed various models using Blender and Repetier.&lt;br /&gt;
&lt;br /&gt;
=November 28, 2018=&lt;br /&gt;
*Updated OSECartCoin with letters. &lt;br /&gt;
**[[File:PAFI.stl]]&lt;br /&gt;
**[[File:PAFI.fcstd]]&lt;br /&gt;
*Call with Marcin regarding &#039;&#039;&#039;[[LIA OSE Club]]&#039;&#039;&#039;&lt;br /&gt;
*Build from last week - [https://www.facebook.com/groups/398759490316633/permalink/963594880499755/]&lt;br /&gt;
&lt;br /&gt;
=November 27, 2018=&lt;br /&gt;
Wrote the suggested intro to Marcin&#039;s next TED talk: [[Marcin&#039;s Next TED Talk]]&lt;br /&gt;
=November 26, 2018=&lt;br /&gt;
Uploaded FeF Brick Press Fabrication video from July 29, 2011 - [https://youtu.be/LwW8sOUO00s]&lt;br /&gt;
&amp;lt;p&amp;gt;Uploaded video of the &amp;quot;Cluckaphone&amp;quot; - July 29, 2011 - [https://www.youtube.com/watch?v=PNOhZX7ftLk&amp;amp;feature=youtu.be]&lt;br /&gt;
Call with Marcin, Catarina and Charlie - OSE Planning&lt;br /&gt;
&lt;br /&gt;
=November 25, 2018=&lt;br /&gt;
Consultation about the establishment of an OSE Club at London International Academy and future directions for the development of OSE Clubs and Makerspaces.&lt;br /&gt;
&lt;br /&gt;
=November 24, 2018=&lt;br /&gt;
We made an OSE Cart Coin with FreeCAD &lt;br /&gt;
Here are the files for OSE Cart Coin v0.1:&lt;br /&gt;
[[File:OSECartCoin.fcstd]]&lt;br /&gt;
[[File:OSECartCoin.stl]]&lt;br /&gt;
Attended Marcin&#039;s presentation entitled &amp;quot;Education for the Open Source Economy&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=November 23, 2018=&lt;br /&gt;
Built a an OSE 3D printer at London International Academy&lt;br /&gt;
&lt;br /&gt;
=November 23-25=&lt;br /&gt;
Attended first OSE Professional Development workshop at London International Academy with Charles Freer, Pascal Gingras, Marcin and Catarina.&lt;br /&gt;
&lt;br /&gt;
=November 18-22= &lt;br /&gt;
Prepared for the visit of Marcin and Catarina to London.&lt;br /&gt;
&lt;br /&gt;
=November 17, 2018=&lt;br /&gt;
Conversation about OSE development with Charlie.  In particular, discussion about education and its relationship to developing the capacity to lead a meaningful and productive life. Reference to overlap of Baha&#039;i means and principles with those of the OSE - elimination of the extremes of wealth and poverty, building capabilities in a population, individual agency and initiative within a systematically evolving framework, etc.&lt;br /&gt;
&lt;br /&gt;
=November 16, 2018=&lt;br /&gt;
*Received US $5000 Shuttleworth Foundation Flash Grant&lt;br /&gt;
*Conference call with Marcin and Charles Freer regarding Marcin and Catarina&#039;s upcoming visit to London, Ontario&lt;br /&gt;
&lt;br /&gt;
=November 15, 2018=&lt;br /&gt;
Engineering Club students designed and printed a part to add to the Lyman Filament Extruder repository - a bracket for a rocker switch&lt;br /&gt;
&lt;br /&gt;
[[File:SwitchBracket2.png]]&lt;br /&gt;
[[File:Switchbase2.stl]]&lt;br /&gt;
[[File:SwitchBracket.FCStd]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=May, 2012=&lt;br /&gt;
Started project to build metric version of OSE CEB Press in Nanjing, China&lt;br /&gt;
&lt;br /&gt;
=April, 2012=&lt;br /&gt;
Began 3D Printing project in physics class at London International Academy&lt;br /&gt;
&lt;br /&gt;
=July, 2011-October, 2018=&lt;br /&gt;
Many things happened including severe neglect of the OSE wiki&lt;br /&gt;
Some highlights:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Regular incorporation of OSE concepts into classes and presentations 2011-present&lt;br /&gt;
*May, 2013 - started collaboration with Human InnovationPIE, a London non-profit organization focused on providing soft skills education for innovation.&lt;br /&gt;
*April, 2014 - Recognized in local paper for 3D Printer build with students&lt;br /&gt;
*July, 2015 - Asked to start STEM program at London International Academy further to success and popularity of 3D printer project&lt;br /&gt;
*September, 2015 - Began building Farmbot with students&lt;br /&gt;
*January, 2017 - Began teaching an Introduction to STEM course at Western University with significant OSE-based content.&lt;br /&gt;
&lt;br /&gt;
=July 16, 2011=&lt;br /&gt;
Arrived at Factor e Farm with Haydar Neal&lt;br /&gt;
&lt;br /&gt;
=March,  2011=&lt;br /&gt;
Saw TED Talk and wrote away to Marcin immediately&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=Summer_X_Wishlist_Submissions&amp;diff=211359</id>
		<title>Summer X Wishlist Submissions</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=Summer_X_Wishlist_Submissions&amp;diff=211359"/>
		<updated>2020-02-15T17:31:53Z</updated>

		<summary type="html">&lt;p&gt;Wneal: /* Summer X 2020 Submissions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Summer X 2020 Submissions=&lt;br /&gt;
&lt;br /&gt;
* [https://docs.google.com/document/d/1w6Mw5kL1liwWX3TipvWqXbQAFplcMIS8ndywkw7jgb0/edit# Daniel]&lt;br /&gt;
* [https://docs.google.com/document/d/11DUqroMKjpKGh2WxIpkJfl5HaPJJzIl8uK6saErtpgs/edit?usp=sharing William Neal]&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=211229</id>
		<title>William Neal Log</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=211229"/>
		<updated>2020-02-14T02:15:55Z</updated>

		<summary type="html">&lt;p&gt;Wneal: /* Friday February 7 - Thursday February 13 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{RightTOC}}&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;600&amp;quot; height=&amp;quot;600&amp;quot; src=&amp;quot;https://osedev.org/wiki/William?start=2/1/2017&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
=Friday February 7 - Thursday February 13=&lt;br /&gt;
[https://docs.google.com/document/d/11DUqroMKjpKGh2WxIpkJfl5HaPJJzIl8uK6saErtpgs/edit?usp=sharing William Neal Personal Build Wishlist] - Still under development&lt;br /&gt;
&lt;br /&gt;
=Monday, December 2 - Thursday Feb. 6, 2020=&lt;br /&gt;
End of semester disruption; start of semester disruption - a huge amount of time and effort spent on paperwork instead of education. Start of FRC robotics season. Start of computer programming and computer engineering classes. &lt;br /&gt;
=Saturday November 30 - Sunday December 1=&lt;br /&gt;
Finished OSE Prusa Build in Guyana. Used [https://www.repetier.com/documentation/repetier-firmware/ Repetier Firmware] and [https://www.repetier.com/ Repetier Host] to control the printer.&lt;br /&gt;
=Thursday November 28 - Friday November 29=&lt;br /&gt;
Workshop with the Guyana Prison Service - 12 prison staff from five facilities in Guyana. Reactivated 6 discarded computers using Ubuntu and OSE Linux. [[Introduction to Python]]. [https://m.facebook.com/groups/398759490316633?view=permalink&amp;amp;id=1215623975296843 OSE Prusa Build]&lt;br /&gt;
&lt;br /&gt;
=Saturday November 23  Wednesday November 27=&lt;br /&gt;
Workshop in Guyana with the Guyana Prison Service: The CSSP Project.  This project aims to replace the current model of prison management with an approach based on human nobility, education and rehabilitation.&lt;br /&gt;
=Thursday November 28=&lt;br /&gt;
[[OSE Linux]] - we got six old computers working on Ubuntu using flash drives.  Tomorrow will have an Open Source software workshop using OSE Linux on USB drives. We will use Python, FreeCAD, LibreOffice, etc. Showed the TED talk to our group of 12 prison officers from five facilities in Guyana.&lt;br /&gt;
&lt;br /&gt;
=Saturday November 2 - Friday November 22=&lt;br /&gt;
Worked on the [[OSE Prusa]] in order to support the establishment of a STEM centre in Trinidad and Tobago and to prepare for a workshop with the Government of Guyana.&lt;br /&gt;
#Items in a numbered list&lt;br /&gt;
#More Items&lt;br /&gt;
##Yet More&lt;br /&gt;
*Items in a bullet list&lt;br /&gt;
*More Items&lt;br /&gt;
**Yet More&lt;br /&gt;
&lt;br /&gt;
=Thursday October 24 - Friday November 1=&lt;br /&gt;
*Tested printing on the London replication of the D3D printer for the first time.&lt;br /&gt;
*Team of 9 students from Western university preparing a project around OSE - D3D replication + filament extruder replication + Chinese Reprap Prusa i3 reverse engineering.&lt;br /&gt;
=Sunday October 12 - Wednesday October 23=&lt;br /&gt;
*Updated some files used in the simple extruder build [https://wiki.opensourceecology.org/wiki/Simple_3D_Printer_Extruder#CAD here.]&lt;br /&gt;
&lt;br /&gt;
=Friday October 4 - Saturday October 11=&lt;br /&gt;
*Successfully tested D3D simple extruder based on Chinese Prusa i3.&lt;br /&gt;
*D3D challenge - Y axis end stop stopped working...&lt;br /&gt;
*Almost finished replicating first of two D3D printers in London Ontario.&lt;br /&gt;
*Preparing a D3D / Brushless motor workshop for the Guyana Prison Service. &lt;br /&gt;
*FreeCAD activity completed at Western University - varied response of individuals in the groups - the allocated time was too short. &lt;br /&gt;
=Friday September 27 - Thursday October 3=&lt;br /&gt;
*Continued work on D3D build.&lt;br /&gt;
*Experimenting with highly differentiated instruction unconstrained by government curricular concerns - our STEM club&#039;s three sections - Robotics / Computers and CAD / STEM projects have each gradually evolved over the last several weeks such that small groups of 1-4 students specialize on special tasks.&lt;br /&gt;
*Introduced FreeCAD to a group of junior youth from a local neighborhood. After about 40 minutes each group of two participants completed a motor rotor design.&lt;br /&gt;
*Second FreeCAD session with a group of 40 teacher candidate students at Western University&#039;s Althouse. Also used highly differentiated / interdisciplinary instruction with this group. After one hour and a half, most groups were able to generate several parts of a brushless motor and begin the process of parameterizing with a spreadsheet and creating an assembly.  Some trained engineers in the crowd generated excellent &amp;quot;propellers&amp;quot; for the motor using advanced features.&lt;br /&gt;
&lt;br /&gt;
=Tuesday, September 1 - Thursday, September 26=&lt;br /&gt;
*New School Year - over 40 students participating in our special STEM/Business/Arts program.&lt;br /&gt;
*Two sections of our program, STEM Projects and Computer Programming/CAD,  include OSE-related topics:&lt;br /&gt;
**Building 3D printers&lt;br /&gt;
**3D-printing&lt;br /&gt;
**OSE Motor design and fabrication&lt;br /&gt;
**Filament extruder&lt;br /&gt;
**CAD&lt;br /&gt;
*Building a 3D printer in collaboration with Bill Phelan, Vice President of Die-X Ltd.&lt;br /&gt;
*Remote collaboration with Branko Misovic in Holland.&lt;br /&gt;
*Preparing for a two-week 3D-printer build / open source hardware workshop in Guyana in November.&lt;br /&gt;
*Working on simple extruder for the D3D printer.&lt;br /&gt;
*Some 3D-printed parts for the D3D printer are not precise enough as they were printed with 1.0mm and 0.8mm nozzles.  We are switching to a 0.4mm nozzle and re-printing.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 27 - Monday September 1=&lt;br /&gt;
*Preparation for STEM camps in China. &lt;br /&gt;
*Travel to China.  Caught behind firewall - Internet was actually a large Intranet - difficult to post, communicate or access any useful sites. &lt;br /&gt;
*STEM Camp at Fujing Foreign language school - 10 days - 60 students, 1.5 hours daily - worked on FreeCAD and the OSE motor. &lt;br /&gt;
*Built OSE D3D printer with eight 9-11 year-old students (10 days, 3 hours daily) at EIC Education in Shenzhen.  The students assembled the axes and helped design some custom 3D-printed brackets for the frame which had to be made out of linear rail. The students learned FreeCAD and were able to design useful parts. Ganesh Ramsahai provided support in completing the build and configuration process. Presented the OSE D3D Shenzhen to the EIC Education Group with a half-hour overview and offer to provide remote support.&lt;br /&gt;
*STEM Camp at Zhangjiagang Foreign Language School in Jiangsu province. 30 students, 3 days, 6 hours per day.  Introduced FreeCAD and had the students design rotors and stators for the OSE brushless motor.&lt;br /&gt;
*Showed the TED talk to four different groups.&lt;br /&gt;
*Uploaded raw FreeCAD and stl files from the camps at Fujing Foreign Language School and Zhangjiagang Foreign Language School to [https://drive.google.com/open?id=1K7U8lEGqRgxwQf-WNX1Llbf-WE7LJCqL Google Drive]&lt;br /&gt;
*Uploaded [https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH custom files] generated during the build of the D3D 19.08 Shenzhen.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 20 - Friday July 26=&lt;br /&gt;
LIA summer STEM camp continued with 38 different students from Shenzhen, China.  The students discussed, in the context of Marcin&#039;s TED Talk, the concept that the human mind, focused and in collaboration with others, has the power to make positive changes in society.  Design of covers and caps for the OSE radial motor. Photos from the STEM Camp activities are [https://photos.app.goo.gl/zcpKk8jaFcDon31K7 here].  Trying to find the USB where we collected all the FreeCAD files.  These will be posted ASAP.&lt;br /&gt;
&lt;br /&gt;
=Monday July 15 - Friday July 19=&lt;br /&gt;
LIA summer STEM camp with 23 students from Vietnam and China. OSE Motor project part II - designing, printing and testing a radial motor. The motor concept was based on the following video: [https://www.youtube.com/watch?v=JkwLpAAfBVI 3D-Printed Axial Brushless Motor for Drones] Students were presented with the concept and asked to design such a motor from scratch using two rotors with eight disc magnets each and two sets of six wire loops.&lt;br /&gt;
&lt;br /&gt;
=Wednesday July 10 - Sunday July 14=&lt;br /&gt;
Preparation for summer STEM Camps at LIA.  Prepared 3D printers.  Began replication of two D3D v19.06 units.&lt;br /&gt;
=Friday June 28 - Tuesday July 9= &lt;br /&gt;
Open Source Ecology Microfactory STEAM Camp&lt;br /&gt;
=Thursday June 27=&lt;br /&gt;
Titan Aero finally working better with 1.5 full turns + a little bit more for good measure - has not jammed all afternoon now - three parts printed.  Logistics for Microfatory STEAM Camp - rented a vehicle and contacted a few participants. A prototype of the OSE extruder has been nearly completed. The extruder gear is scheduled to arrive at Factor e Farm by tomorrow. Then it will be ready for testing.  [https://photos.app.goo.gl/fWUX8ynAdqcn6Fvs6 OSE D3D Extruder - Photo Album][https://drive.google.com/open?id=17BLyvyk1EbrMOhkCfeSwByAq86SemSLX Files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 25 - Wednesday June 26=&lt;br /&gt;
OSE D3D Extruder.  Worked on attaching extruder to X-axis. Ordered extruder motor gears to arrive at FeF on Friday. Printed out bracket 1 successfully. Working on large aluminium block and designing x-axis adapter.&lt;br /&gt;
=Monday June 24=&lt;br /&gt;
Discussion about design of OSE Power Electronics. Problem - transformers are expensive and inflexible. Solution - research the feasibility of creating a 120V buck converter.  Would it be sufficiently efficient and would it be feasible to build?  Here are some potential parts to use: [https://www.digikey.ca/product-detail/en/comchip-technology/GBPC5010W-G/641-1389-ND/2074854 1kV Recifier] [https://www.digikey.ca/product-detail/en/ixys/IXFX120N65X2/IXFX120N65X2-ND/5629498?utm_adgroup=&amp;amp;mkwid=sFMkJ49os&amp;amp;pcrid=311971049444&amp;amp;pkw=&amp;amp;pmt=&amp;amp;pdv=c&amp;amp;productid=5629498&amp;amp;slid=&amp;amp;gclid=EAIaIQobChMIgbDd1fSC4wIVwkOGCh1f8gijEAQYAyABEgJGffD_BwE 650V MOSFET].  One problem seems to be that there may be a high level of energy loss in the circuit....[https://www.digikey.com/product-detail/en/everlight-electronics-co-ltd/H11L1S-TA/1080-1201-1-ND/2675935 Optocoupler] (to isolate the Arduino)[http://fpec.ucf.edu/teaching/EEL%205245%20Lectures/Lecture13%20Chapter4_BoostandBuckBoost_CCM_Analysis.pdf Some background theory]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 19 - Sunday June 23=&lt;br /&gt;
DIY Buck Converter based on the following video (and others): https://www.youtube.com/watch?v=L5oeY53pE0E&amp;amp;t=162s. [https://photos.app.goo.gl/kkHUwBQtD7h48mhB6 Photos.] All four 3D printers are down.  A crucial piece of the extruder of the most reliable printer finally broke. CAD already done for the replacement part. Got the OSE D3D working again on Friday.  Ready for printing on Monday - will print replacement part for other printer.  Other 2 printers almost working...&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 18=&lt;br /&gt;
[https://www.pythonpowerelectronics.com/ Python Power Electronics]&lt;br /&gt;
=Thursday June 13 - Monday June 17=&lt;br /&gt;
Buck Converters. OSE [[Power Electronics]] research. Arduino as controller of Power electronics - frequency issues / limitations. Scalability of Power electronics - can we add modular components to increase voltage, current, etc.?  &lt;br /&gt;
=Tuesday June 11 - Wednesday June 12=&lt;br /&gt;
Completed and sent CAD Drawings for OSE 3D Printer. Spent most of Wednesday working through a jam on the Titan Aero - it has jammed more in a few days than our other extruder has jammed in over three years.&lt;br /&gt;
=Monday June 10=&lt;br /&gt;
[https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH FreeCAD Drawings] for OSE 3D Printer. Note the use of parametric design in the CAD files - Spreadsheet values become variables used in constraint dimensions.&lt;br /&gt;
The following is my most recent FreeCAD Parametric Part Design and Drawing Workflow:[[FreeCAD Workflow]]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 5 - Sunday June 9=&lt;br /&gt;
[https://www.youtube.com/watch?v=CEhBN5_fO5o|DC-DC Buck Converters]&lt;br /&gt;
Power Supply: Transformer + Buck Converter + Ripple Smoothing Circuitry&lt;br /&gt;
=Tuesday June 4=&lt;br /&gt;
*[[Arduino Controlled Power Supply]] - ordered many components.&lt;br /&gt;
*Many electronic components specified in DIY articles and videos are now listed as obsolete.  Finding replacement parts is not easy. Case in point: LM338K Linear Voltage Regulators - Listed as obsolete on the Mouser website and selling for $91 or more on the Digi-key website.&lt;br /&gt;
*[https://www.eetimes.com/document.asp?doc_id=1333695# Article about obsolescence and demand and supply issues in the electronics industry]&lt;br /&gt;
&lt;br /&gt;
=Saturday June 1 - Monday June 3=&lt;br /&gt;
Reviewed [[OSE Design Guides]] Reviewed [[DIY Semiconductors]] Microfactory STEAM Camp Critical Path [[Arduino Controlled Power Supply]] Fabrication of aluminium blocks for hot end for OSE 3D printer extruder. Parametric modelling in FreeCAD.&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 28 - Friday May 31=&lt;br /&gt;
[[Halbach Array Brushless Motor]]&lt;br /&gt;
&lt;br /&gt;
=Monday May 27= &lt;br /&gt;
[https://www.youtube.com/watch?v=uOQk8SJso6Q How to Control an ESC with an Arduino] [https://photos.app.goo.gl/HMvWbigvuw3S26YG8 Test of the OSE Motor].&lt;br /&gt;
&lt;br /&gt;
=Friday May 24 - Sunday May 26= &lt;br /&gt;
Not all that much.&lt;br /&gt;
=Thursday May 23=&lt;br /&gt;
Thank you to Marcin and Catarina for a refreshing, enlightening and enjoyable visit to Factor e Farm and the Seed Ecohome. Returned to London.&lt;br /&gt;
=Wednesday May 22=&lt;br /&gt;
Skype appointment - 12pm Missouri time - friend in Colombia. Uploaded FreeCAD files for D3D v19.04 Power Plug Case to Wiki. [https://en.wikipedia.org/wiki/Buck_converter Buck Converter]&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 21=&lt;br /&gt;
[https://www.powerelectronicsnews.com/problems-solutions/power-supply-design-tutorial Power Supply Design Tutorial] Edited the [https://docs.google.com/document/d/1_3t_97giFOtqJ4ExPZdYeVEilCRhMmu0IWLLpBCrG-0/edit?usp=sharing Video Script] &lt;br /&gt;
Contacted STEM people in Nigeria and Pennsylvania based on the OSE STEAM Camp posted in this [https://www.facebook.com/groups/822455171229260/ Facebook Forum]&lt;br /&gt;
Further communication with friends in Mexico regarding the STEAM camp. Contacted a friend of a friend in Kansas City - Baha&#039;i Community.&lt;br /&gt;
&lt;br /&gt;
=Monday May 20=&lt;br /&gt;
Posted Microfactory STEAM camp on several Facebook STEM/STEAM Education pages. [[The Living Curriculum]] [https://github.com/MarlinFirmware/Marlin/issues/8903 Marlin Bed Temperature Settings] Worked on the Titan-Aero extruder repairs. The two parts of the extruder tube must be fairly tight (but not too tight!) to avoid leakage.&lt;br /&gt;
&lt;br /&gt;
=Sunday May 19=&lt;br /&gt;
Printing ABS using the OSE D3D - Set the bed temperature to 83 and the nozzle temperature to 255.  After 5 minutes of printing, several layers were adhering well. Thermal runaway. Tried 80 and 244; thermal runaway again. Joined several online STEM/Education groups.&lt;br /&gt;
&lt;br /&gt;
=Saturday May 18=&lt;br /&gt;
[[OSE Revenue Generation]] - Grameen Bank / Social Business - [[OSE Curriculum]]&lt;br /&gt;
&lt;br /&gt;
=Friday May 17=&lt;br /&gt;
[[OSE STEM Camp Marketing Strategy]]&lt;br /&gt;
=Friday May 10 - Thursday May 16= &lt;br /&gt;
Preparation for trip to Factor e Farm - gathered supplies - PCB boards, glossy paper, wire, magnets, electronic components, hardware, etc. Arrival at Factor e Farm. Work on D3D v. 19.04: [Photos - OSE D3D v19.04 Build at FeF https://www.facebook.com/photo.php?fbid=10161819908970597&amp;amp;set=pcb.1063740287151880&amp;amp;type=3&amp;amp;theater&amp;amp;ifg=1]&lt;br /&gt;
 &lt;br /&gt;
=Friday April 12 - Thursday May 9=&lt;br /&gt;
[https://drive.google.com/open?id=1-DpgMCARsA5iz4JLZtUeP3SD4a3UrXhj OSE Motor Completed] - ready for testing - Open Source Chinese Prusa i3 Printer Extruder - Configured and began printing with OSE D3D - printing very well at the moment - Booked a flight to Kansas City - heading to Factor e Farm soon!&lt;br /&gt;
&lt;br /&gt;
=Monday March 4 - Thursday April 11=&lt;br /&gt;
FRC Robotics - Ryerson University, Western University. OSE Motor - students have made some progress: [https://drive.google.com/open?id=1n99XWM8KMwvnV-tCmcWjImsBG27ReRSc OSE Brushless Motor] Additional work on the [[Simple 3D Printer Extruder]]&lt;br /&gt;
&lt;br /&gt;
=Sunday March 3=&lt;br /&gt;
Completed the first model of the most difficult part to CAD in the extruder - the X-Axis bracket.  Will now print CAD files and measure their accuracy before making changes to the CAD parameters.  Hopefully this process will result in more accurate parts.&lt;br /&gt;
&lt;br /&gt;
=Friday March 1 - Saturday March 2 =&lt;br /&gt;
Further work on open sourcing Chinese Prusa i3 3D printer extruder.&lt;br /&gt;
&lt;br /&gt;
=Monday February 18 - Thursday February 28=&lt;br /&gt;
Began the process of open-sourcing our 3D printer extruder: [[Simple 3D Printer Extruder]] (see photos and CAD files in the 3D Printer Folder) &lt;br /&gt;
Started a new unit in Computer Engineering Technology class.  Two groups of students are working on OSE materials:  &lt;br /&gt;
#The OSE Collaborative Contest&lt;br /&gt;
#The OSE Filament Extruder&lt;br /&gt;
&lt;br /&gt;
=Saturday February 9-Sunday February 17=&lt;br /&gt;
Hosted a group of six STEM students from School of the Nations in Georgetown, Guyana. STEM Camp at London International Academy.  Introduced the concept of the OSE collaborative contest. Introductory FreeCAD activities. Introduced Python computer programming.  Printed out various parts for an open source brushless motor.  [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX Link to CAD Files] (see School of the Nations sub-folder)[[file:Rotor.jpg|200px]] [http://guyanachronicle.com/2019/02/17/nations-benefits-from-robotics-training-in-canada Article in Guyana Chronicle]&lt;br /&gt;
&lt;br /&gt;
=Wednesday February 6= &lt;br /&gt;
[[OSE Coopetition]].  Discussed wiki + part library + documentation of OSE Coopetition.&lt;br /&gt;
&lt;br /&gt;
=Monday February 4=&lt;br /&gt;
Uploaded version 0.1 of the OSE Collaborative Contest Rules to [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest]&lt;br /&gt;
=Wednesday January 30 - Sunday February 3=&lt;br /&gt;
FRC Build season.  [https://drive.google.com/drive/folders/1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH?usp=sharing Team 6162 Cap Alpaca FreeCAD files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday January 29=&lt;br /&gt;
Collected FreeCAD files in a Google drive folder: [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest] &lt;br /&gt;
Summary of Nanjing group&#039;s schedule: [https://docs.google.com/document/d/1R-Dtu3kdZ0u8Qo5w3_vDuNEg5myr8mUmLjSpPOf-HoI/edit?usp=sharing | 2019 Winter Camp]&lt;br /&gt;
Here is some sample work from the FreeCAD workshop:&lt;br /&gt;
*[[File:ReyJessica.png|200px]]&lt;br /&gt;
*[[File:ZJHLSR.png|200px]]&lt;br /&gt;
&lt;br /&gt;
=Sunday January 27 - Monday January 28=&lt;br /&gt;
Discussed record keeping, file sharing and other skills for collaborative literacy. Created a sample page stub: [[Brushless Motor Design]].  Asked students to reflect on sessions learning FreeCAD.  Found that it is not necessary to learn a whole lot about FreeCAD in order to get students learning it.  Demonstrated two sample FreeCAD 0.17 design processes:&lt;br /&gt;
#Design a part like a motor adapter: body - sketch a circle - pad - sketch on a surface - pocket&lt;br /&gt;
#Design a sketch with constraints - some straight lines and some arcs closed in a loop with particular dimensions and angles.&lt;br /&gt;
After that, students were directed to Youtube videos that covered specific additional skills: &lt;br /&gt;
*Threading - inner and outer&lt;br /&gt;
*Polar patterns&lt;br /&gt;
Through this process, I learned how to do these skills from some students and was able to show other students the same, especially with polar patterns.&lt;br /&gt;
&lt;br /&gt;
=Sunday January, 20 - Saturday January 26, 2019=&lt;br /&gt;
Prepared for and welcomed 19 students from Jinling High School in China. Introduced the concept of the OSE Collaborative Contest.  Marcin spoke with the group over Jitsi on Thursday and on Saturday and proposed that the students participate in the OSE Collaborative Contest. It was well received despite the students&#039; fatigue from travel and skiing. Introduced FreeCAD and had students download and install it. Some computers do not immediately work with FreeCAD; hope that the problem may be solved. We plan to further discuss the students&#039; participation in the contest tomorrow and 3D print some of their early FreeCAD work on Monday. Created a link to LIA students&#039; FreeCAD work.  Currently the folder is being used for FRC preparation.  After the FRC robot is built, we are planning to transition to OSE-related work in this folder: [https://drive.google.com/open?id=1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH LIA OSE Club CAD Files]&lt;br /&gt;
&lt;br /&gt;
=Thursday January 10 - Saturday Jan 19, 2019=&lt;br /&gt;
Heaviest schedule of the year - January and February; progress slower during this time. Working on STEM Curriculum for FeF STEM Camps - [[Summer School 2019]].&lt;br /&gt;
&lt;br /&gt;
=Wed Jan 9, 2019=&lt;br /&gt;
*Use a presentation - template - make a copy - pass this to Heydar - document the simple 3D printing extruder for a low cost 3d printer - [https://docs.google.com/presentation/d/1_kUzO4eRCqrHVpqxSSTs17oLhtikTTyYe_1NxrTKlTI/edit#slide=id.g45ed589c64_0_0]&lt;br /&gt;
*Homework: Complete STEM Curriculum&lt;br /&gt;
&lt;br /&gt;
=January 2, 2019=&lt;br /&gt;
Ordered parts for a brushless motor to be constructed as part of the contest and part of the Computer Engineering Technology class at London International Academy.&lt;br /&gt;
In order to make the collaborative contest work, we will need to create a kit of parts to be easily shipped to participating schools.&lt;br /&gt;
&lt;br /&gt;
=December 24 2018-January 1, 2019=&lt;br /&gt;
Took a break. Reflected on plans for OSE London / OSE Club at London International Academy / OSE Collaborative Contest&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=December 23, 2018=&lt;br /&gt;
Defined particulars of [[OSE STEM Camps]].&lt;br /&gt;
&lt;br /&gt;
=December 22,2018=&lt;br /&gt;
[[William Conversation | Conversation with Marcin]]. Research on OSE Club Activities. Planning for winter semester courses&#039; links to OSE - Computer Engineering Technology and Computer Science. Plans to do the following in Computer Engineering Technology: build a brushless motor and ESC from scratch. Computer Science: Programming projects related to OSE - simulation program? Western University Introduction to STEM Class - offer the OSE Competition as a choice for a final project - help administer / judge / communicate / etc.&lt;br /&gt;
&lt;br /&gt;
=December 12-21, 2018=&lt;br /&gt;
Exams and marking - excellent ways to hinder educational progress. Discussed Canadian bill of materials with Russ Purvis. Discussed the upcoming OSE workshop in Prince George, BC currently in the planning phase. Several phone conversations with Charlie. Worked on some particulars for the upcoming OSE competition in January. Contacted a teacher in Iran to invite her to join the competition with her students. Sent a letter of reference to Russ with respect to hosting an OSE workshop.&lt;br /&gt;
&lt;br /&gt;
=December 8-11, 2018=&lt;br /&gt;
Spoke with Charlie about development of OSE workshops.  Spoke with Marcin and Catarina about the same. Updated Marcin about development of OSE club at London International Academy.  We now have plans to include at least four schools in our first design challenge - School of the Nations in Guyana, Fujing Foreign Language School in Shenzhen and Jinling School in Nanjing. Was approached by a friend to contact Makerspace managers in St. Thomas and Toronto. Arranged a meeting with the makerspace managers at Western University. OSE Marlin v18.10 works for printing with new printer. Successfully printed base layer of a file.  It seems that the extruder may have jammed.  Will check again as soon as possible. LIA students continue to develop their FreeCAD skills and are able to design parts in parallel according to a spacial plan and assemble them into a larger model. Installed OSE Linux on laptop now with a new old-school 1TcB hard drive. OSE Linux did not recognise the card reader; everything else seems to work very well. &amp;lt;strong&amp;gt;Note: Stepper motors on y axis of D3D became alarmingly hot after about 15 minutes of printing.&amp;lt;/strong&amp;gt; Perhaps this is a configuration issue; may need to resolve this before allowing the printer to do a full print.&lt;br /&gt;
&lt;br /&gt;
=December 7, 2018= &lt;br /&gt;
Using OSE Ubuntu on laptop with fried SSD. Internet has connection through ping but does not display pages in Chromium. D3D Marlin recent version from OSE website installed in printer. Autohome produces a collision of the z axis with the extruder as by default the z probe is off the plate.  Tried to move the y axis using various commands such as G0 Y40 and G1 Y40 all of which cause the Y axis to move until it hits the maximum physically possible position. Spoke with Johann Wong about the possibility of combining an OSE Makerspace skills (Arduino, CAD, etc.) + 3D printer workshop with Human Innovation PIE&#039;s soft skills innovation workshop through the London International Academy Foundation. Was using wrong Marlin file for D3D printer - will try correct one asap. Suggestions for D3D: use zip ties and clothespin springs for tensioning belts.  This has worked exceptionally well and reliably for our Chinese Prusa derivative; the belts have needed nearly no attention in three years.&lt;br /&gt;
&lt;br /&gt;
=December 6, 2018=&lt;br /&gt;
Was about to test print on OSE D3D when SSD crashed.  Did Ubuntu fry it?  Researching this.&lt;br /&gt;
&lt;br /&gt;
=December 5, 2018=&lt;br /&gt;
Introduced the OSE design challenge to OSE Club students at London International Academy.&lt;br /&gt;
&lt;br /&gt;
=December 4, 2018= &lt;br /&gt;
Held an informal Introduction to Arduino Workshop at London International Academy to help two grade 11 students with a project.  Spoke with Marcin about plans for the OSE design challenge, OSE club and possibility of a summer camp at FeF in May or June of 2019.&lt;br /&gt;
&lt;br /&gt;
=December 2, 2018=&lt;br /&gt;
 Created a document outlining a framework for OSL - Open Source London and shared it on Google Docs; visited Charlie to discuss the document.&lt;br /&gt;
&lt;br /&gt;
=November 29, 2018=&lt;br /&gt;
 Introduced OSE 3D Printer and Prusa i3 3D printer to parents and students at a local French Immersion school - PAFI.  Designed and printed various models using Blender and Repetier.&lt;br /&gt;
&lt;br /&gt;
=November 28, 2018=&lt;br /&gt;
*Updated OSECartCoin with letters. &lt;br /&gt;
**[[File:PAFI.stl]]&lt;br /&gt;
**[[File:PAFI.fcstd]]&lt;br /&gt;
*Call with Marcin regarding &#039;&#039;&#039;[[LIA OSE Club]]&#039;&#039;&#039;&lt;br /&gt;
*Build from last week - [https://www.facebook.com/groups/398759490316633/permalink/963594880499755/]&lt;br /&gt;
&lt;br /&gt;
=November 27, 2018=&lt;br /&gt;
Wrote the suggested intro to Marcin&#039;s next TED talk: [[Marcin&#039;s Next TED Talk]]&lt;br /&gt;
=November 26, 2018=&lt;br /&gt;
Uploaded FeF Brick Press Fabrication video from July 29, 2011 - [https://youtu.be/LwW8sOUO00s]&lt;br /&gt;
&amp;lt;p&amp;gt;Uploaded video of the &amp;quot;Cluckaphone&amp;quot; - July 29, 2011 - [https://www.youtube.com/watch?v=PNOhZX7ftLk&amp;amp;feature=youtu.be]&lt;br /&gt;
Call with Marcin, Catarina and Charlie - OSE Planning&lt;br /&gt;
&lt;br /&gt;
=November 25, 2018=&lt;br /&gt;
Consultation about the establishment of an OSE Club at London International Academy and future directions for the development of OSE Clubs and Makerspaces.&lt;br /&gt;
&lt;br /&gt;
=November 24, 2018=&lt;br /&gt;
We made an OSE Cart Coin with FreeCAD &lt;br /&gt;
Here are the files for OSE Cart Coin v0.1:&lt;br /&gt;
[[File:OSECartCoin.fcstd]]&lt;br /&gt;
[[File:OSECartCoin.stl]]&lt;br /&gt;
Attended Marcin&#039;s presentation entitled &amp;quot;Education for the Open Source Economy&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=November 23, 2018=&lt;br /&gt;
Built a an OSE 3D printer at London International Academy&lt;br /&gt;
&lt;br /&gt;
=November 23-25=&lt;br /&gt;
Attended first OSE Professional Development workshop at London International Academy with Charles Freer, Pascal Gingras, Marcin and Catarina.&lt;br /&gt;
&lt;br /&gt;
=November 18-22= &lt;br /&gt;
Prepared for the visit of Marcin and Catarina to London.&lt;br /&gt;
&lt;br /&gt;
=November 17, 2018=&lt;br /&gt;
Conversation about OSE development with Charlie.  In particular, discussion about education and its relationship to developing the capacity to lead a meaningful and productive life. Reference to overlap of Baha&#039;i means and principles with those of the OSE - elimination of the extremes of wealth and poverty, building capabilities in a population, individual agency and initiative within a systematically evolving framework, etc.&lt;br /&gt;
&lt;br /&gt;
=November 16, 2018=&lt;br /&gt;
*Received US $5000 Shuttleworth Foundation Flash Grant&lt;br /&gt;
*Conference call with Marcin and Charles Freer regarding Marcin and Catarina&#039;s upcoming visit to London, Ontario&lt;br /&gt;
&lt;br /&gt;
=November 15, 2018=&lt;br /&gt;
Engineering Club students designed and printed a part to add to the Lyman Filament Extruder repository - a bracket for a rocker switch&lt;br /&gt;
&lt;br /&gt;
[[File:SwitchBracket2.png]]&lt;br /&gt;
[[File:Switchbase2.stl]]&lt;br /&gt;
[[File:SwitchBracket.FCStd]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=May, 2012=&lt;br /&gt;
Started project to build metric version of OSE CEB Press in Nanjing, China&lt;br /&gt;
&lt;br /&gt;
=April, 2012=&lt;br /&gt;
Began 3D Printing project in physics class at London International Academy&lt;br /&gt;
&lt;br /&gt;
=July, 2011-October, 2018=&lt;br /&gt;
Many things happened including severe neglect of the OSE wiki&lt;br /&gt;
Some highlights:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Regular incorporation of OSE concepts into classes and presentations 2011-present&lt;br /&gt;
*May, 2013 - started collaboration with Human InnovationPIE, a London non-profit organization focused on providing soft skills education for innovation.&lt;br /&gt;
*April, 2014 - Recognized in local paper for 3D Printer build with students&lt;br /&gt;
*July, 2015 - Asked to start STEM program at London International Academy further to success and popularity of 3D printer project&lt;br /&gt;
*September, 2015 - Began building Farmbot with students&lt;br /&gt;
*January, 2017 - Began teaching an Introduction to STEM course at Western University with significant OSE-based content.&lt;br /&gt;
&lt;br /&gt;
=July 16, 2011=&lt;br /&gt;
Arrived at Factor e Farm with Haydar Neal&lt;br /&gt;
&lt;br /&gt;
=March,  2011=&lt;br /&gt;
Saw TED Talk and wrote away to Marcin immediately&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=211228</id>
		<title>William Neal Log</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=211228"/>
		<updated>2020-02-14T02:15:35Z</updated>

		<summary type="html">&lt;p&gt;Wneal: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{RightTOC}}&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;600&amp;quot; height=&amp;quot;600&amp;quot; src=&amp;quot;https://osedev.org/wiki/William?start=2/1/2017&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
=Friday February 7 - Thursday February 13=&lt;br /&gt;
[https://docs.google.com/document/d/11DUqroMKjpKGh2WxIpkJfl5HaPJJzIl8uK6saErtpgs/edit?usp=sharing William Neal Personal Build Wishlist]&lt;br /&gt;
=Monday, December 2 - Thursday Feb. 6, 2020=&lt;br /&gt;
End of semester disruption; start of semester disruption - a huge amount of time and effort spent on paperwork instead of education. Start of FRC robotics season. Start of computer programming and computer engineering classes. &lt;br /&gt;
=Saturday November 30 - Sunday December 1=&lt;br /&gt;
Finished OSE Prusa Build in Guyana. Used [https://www.repetier.com/documentation/repetier-firmware/ Repetier Firmware] and [https://www.repetier.com/ Repetier Host] to control the printer.&lt;br /&gt;
=Thursday November 28 - Friday November 29=&lt;br /&gt;
Workshop with the Guyana Prison Service - 12 prison staff from five facilities in Guyana. Reactivated 6 discarded computers using Ubuntu and OSE Linux. [[Introduction to Python]]. [https://m.facebook.com/groups/398759490316633?view=permalink&amp;amp;id=1215623975296843 OSE Prusa Build]&lt;br /&gt;
&lt;br /&gt;
=Saturday November 23  Wednesday November 27=&lt;br /&gt;
Workshop in Guyana with the Guyana Prison Service: The CSSP Project.  This project aims to replace the current model of prison management with an approach based on human nobility, education and rehabilitation.&lt;br /&gt;
=Thursday November 28=&lt;br /&gt;
[[OSE Linux]] - we got six old computers working on Ubuntu using flash drives.  Tomorrow will have an Open Source software workshop using OSE Linux on USB drives. We will use Python, FreeCAD, LibreOffice, etc. Showed the TED talk to our group of 12 prison officers from five facilities in Guyana.&lt;br /&gt;
&lt;br /&gt;
=Saturday November 2 - Friday November 22=&lt;br /&gt;
Worked on the [[OSE Prusa]] in order to support the establishment of a STEM centre in Trinidad and Tobago and to prepare for a workshop with the Government of Guyana.&lt;br /&gt;
#Items in a numbered list&lt;br /&gt;
#More Items&lt;br /&gt;
##Yet More&lt;br /&gt;
*Items in a bullet list&lt;br /&gt;
*More Items&lt;br /&gt;
**Yet More&lt;br /&gt;
&lt;br /&gt;
=Thursday October 24 - Friday November 1=&lt;br /&gt;
*Tested printing on the London replication of the D3D printer for the first time.&lt;br /&gt;
*Team of 9 students from Western university preparing a project around OSE - D3D replication + filament extruder replication + Chinese Reprap Prusa i3 reverse engineering.&lt;br /&gt;
=Sunday October 12 - Wednesday October 23=&lt;br /&gt;
*Updated some files used in the simple extruder build [https://wiki.opensourceecology.org/wiki/Simple_3D_Printer_Extruder#CAD here.]&lt;br /&gt;
&lt;br /&gt;
=Friday October 4 - Saturday October 11=&lt;br /&gt;
*Successfully tested D3D simple extruder based on Chinese Prusa i3.&lt;br /&gt;
*D3D challenge - Y axis end stop stopped working...&lt;br /&gt;
*Almost finished replicating first of two D3D printers in London Ontario.&lt;br /&gt;
*Preparing a D3D / Brushless motor workshop for the Guyana Prison Service. &lt;br /&gt;
*FreeCAD activity completed at Western University - varied response of individuals in the groups - the allocated time was too short. &lt;br /&gt;
=Friday September 27 - Thursday October 3=&lt;br /&gt;
*Continued work on D3D build.&lt;br /&gt;
*Experimenting with highly differentiated instruction unconstrained by government curricular concerns - our STEM club&#039;s three sections - Robotics / Computers and CAD / STEM projects have each gradually evolved over the last several weeks such that small groups of 1-4 students specialize on special tasks.&lt;br /&gt;
*Introduced FreeCAD to a group of junior youth from a local neighborhood. After about 40 minutes each group of two participants completed a motor rotor design.&lt;br /&gt;
*Second FreeCAD session with a group of 40 teacher candidate students at Western University&#039;s Althouse. Also used highly differentiated / interdisciplinary instruction with this group. After one hour and a half, most groups were able to generate several parts of a brushless motor and begin the process of parameterizing with a spreadsheet and creating an assembly.  Some trained engineers in the crowd generated excellent &amp;quot;propellers&amp;quot; for the motor using advanced features.&lt;br /&gt;
&lt;br /&gt;
=Tuesday, September 1 - Thursday, September 26=&lt;br /&gt;
*New School Year - over 40 students participating in our special STEM/Business/Arts program.&lt;br /&gt;
*Two sections of our program, STEM Projects and Computer Programming/CAD,  include OSE-related topics:&lt;br /&gt;
**Building 3D printers&lt;br /&gt;
**3D-printing&lt;br /&gt;
**OSE Motor design and fabrication&lt;br /&gt;
**Filament extruder&lt;br /&gt;
**CAD&lt;br /&gt;
*Building a 3D printer in collaboration with Bill Phelan, Vice President of Die-X Ltd.&lt;br /&gt;
*Remote collaboration with Branko Misovic in Holland.&lt;br /&gt;
*Preparing for a two-week 3D-printer build / open source hardware workshop in Guyana in November.&lt;br /&gt;
*Working on simple extruder for the D3D printer.&lt;br /&gt;
*Some 3D-printed parts for the D3D printer are not precise enough as they were printed with 1.0mm and 0.8mm nozzles.  We are switching to a 0.4mm nozzle and re-printing.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 27 - Monday September 1=&lt;br /&gt;
*Preparation for STEM camps in China. &lt;br /&gt;
*Travel to China.  Caught behind firewall - Internet was actually a large Intranet - difficult to post, communicate or access any useful sites. &lt;br /&gt;
*STEM Camp at Fujing Foreign language school - 10 days - 60 students, 1.5 hours daily - worked on FreeCAD and the OSE motor. &lt;br /&gt;
*Built OSE D3D printer with eight 9-11 year-old students (10 days, 3 hours daily) at EIC Education in Shenzhen.  The students assembled the axes and helped design some custom 3D-printed brackets for the frame which had to be made out of linear rail. The students learned FreeCAD and were able to design useful parts. Ganesh Ramsahai provided support in completing the build and configuration process. Presented the OSE D3D Shenzhen to the EIC Education Group with a half-hour overview and offer to provide remote support.&lt;br /&gt;
*STEM Camp at Zhangjiagang Foreign Language School in Jiangsu province. 30 students, 3 days, 6 hours per day.  Introduced FreeCAD and had the students design rotors and stators for the OSE brushless motor.&lt;br /&gt;
*Showed the TED talk to four different groups.&lt;br /&gt;
*Uploaded raw FreeCAD and stl files from the camps at Fujing Foreign Language School and Zhangjiagang Foreign Language School to [https://drive.google.com/open?id=1K7U8lEGqRgxwQf-WNX1Llbf-WE7LJCqL Google Drive]&lt;br /&gt;
*Uploaded [https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH custom files] generated during the build of the D3D 19.08 Shenzhen.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 20 - Friday July 26=&lt;br /&gt;
LIA summer STEM camp continued with 38 different students from Shenzhen, China.  The students discussed, in the context of Marcin&#039;s TED Talk, the concept that the human mind, focused and in collaboration with others, has the power to make positive changes in society.  Design of covers and caps for the OSE radial motor. Photos from the STEM Camp activities are [https://photos.app.goo.gl/zcpKk8jaFcDon31K7 here].  Trying to find the USB where we collected all the FreeCAD files.  These will be posted ASAP.&lt;br /&gt;
&lt;br /&gt;
=Monday July 15 - Friday July 19=&lt;br /&gt;
LIA summer STEM camp with 23 students from Vietnam and China. OSE Motor project part II - designing, printing and testing a radial motor. The motor concept was based on the following video: [https://www.youtube.com/watch?v=JkwLpAAfBVI 3D-Printed Axial Brushless Motor for Drones] Students were presented with the concept and asked to design such a motor from scratch using two rotors with eight disc magnets each and two sets of six wire loops.&lt;br /&gt;
&lt;br /&gt;
=Wednesday July 10 - Sunday July 14=&lt;br /&gt;
Preparation for summer STEM Camps at LIA.  Prepared 3D printers.  Began replication of two D3D v19.06 units.&lt;br /&gt;
=Friday June 28 - Tuesday July 9= &lt;br /&gt;
Open Source Ecology Microfactory STEAM Camp&lt;br /&gt;
=Thursday June 27=&lt;br /&gt;
Titan Aero finally working better with 1.5 full turns + a little bit more for good measure - has not jammed all afternoon now - three parts printed.  Logistics for Microfatory STEAM Camp - rented a vehicle and contacted a few participants. A prototype of the OSE extruder has been nearly completed. The extruder gear is scheduled to arrive at Factor e Farm by tomorrow. Then it will be ready for testing.  [https://photos.app.goo.gl/fWUX8ynAdqcn6Fvs6 OSE D3D Extruder - Photo Album][https://drive.google.com/open?id=17BLyvyk1EbrMOhkCfeSwByAq86SemSLX Files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 25 - Wednesday June 26=&lt;br /&gt;
OSE D3D Extruder.  Worked on attaching extruder to X-axis. Ordered extruder motor gears to arrive at FeF on Friday. Printed out bracket 1 successfully. Working on large aluminium block and designing x-axis adapter.&lt;br /&gt;
=Monday June 24=&lt;br /&gt;
Discussion about design of OSE Power Electronics. Problem - transformers are expensive and inflexible. Solution - research the feasibility of creating a 120V buck converter.  Would it be sufficiently efficient and would it be feasible to build?  Here are some potential parts to use: [https://www.digikey.ca/product-detail/en/comchip-technology/GBPC5010W-G/641-1389-ND/2074854 1kV Recifier] [https://www.digikey.ca/product-detail/en/ixys/IXFX120N65X2/IXFX120N65X2-ND/5629498?utm_adgroup=&amp;amp;mkwid=sFMkJ49os&amp;amp;pcrid=311971049444&amp;amp;pkw=&amp;amp;pmt=&amp;amp;pdv=c&amp;amp;productid=5629498&amp;amp;slid=&amp;amp;gclid=EAIaIQobChMIgbDd1fSC4wIVwkOGCh1f8gijEAQYAyABEgJGffD_BwE 650V MOSFET].  One problem seems to be that there may be a high level of energy loss in the circuit....[https://www.digikey.com/product-detail/en/everlight-electronics-co-ltd/H11L1S-TA/1080-1201-1-ND/2675935 Optocoupler] (to isolate the Arduino)[http://fpec.ucf.edu/teaching/EEL%205245%20Lectures/Lecture13%20Chapter4_BoostandBuckBoost_CCM_Analysis.pdf Some background theory]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 19 - Sunday June 23=&lt;br /&gt;
DIY Buck Converter based on the following video (and others): https://www.youtube.com/watch?v=L5oeY53pE0E&amp;amp;t=162s. [https://photos.app.goo.gl/kkHUwBQtD7h48mhB6 Photos.] All four 3D printers are down.  A crucial piece of the extruder of the most reliable printer finally broke. CAD already done for the replacement part. Got the OSE D3D working again on Friday.  Ready for printing on Monday - will print replacement part for other printer.  Other 2 printers almost working...&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 18=&lt;br /&gt;
[https://www.pythonpowerelectronics.com/ Python Power Electronics]&lt;br /&gt;
=Thursday June 13 - Monday June 17=&lt;br /&gt;
Buck Converters. OSE [[Power Electronics]] research. Arduino as controller of Power electronics - frequency issues / limitations. Scalability of Power electronics - can we add modular components to increase voltage, current, etc.?  &lt;br /&gt;
=Tuesday June 11 - Wednesday June 12=&lt;br /&gt;
Completed and sent CAD Drawings for OSE 3D Printer. Spent most of Wednesday working through a jam on the Titan Aero - it has jammed more in a few days than our other extruder has jammed in over three years.&lt;br /&gt;
=Monday June 10=&lt;br /&gt;
[https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH FreeCAD Drawings] for OSE 3D Printer. Note the use of parametric design in the CAD files - Spreadsheet values become variables used in constraint dimensions.&lt;br /&gt;
The following is my most recent FreeCAD Parametric Part Design and Drawing Workflow:[[FreeCAD Workflow]]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 5 - Sunday June 9=&lt;br /&gt;
[https://www.youtube.com/watch?v=CEhBN5_fO5o|DC-DC Buck Converters]&lt;br /&gt;
Power Supply: Transformer + Buck Converter + Ripple Smoothing Circuitry&lt;br /&gt;
=Tuesday June 4=&lt;br /&gt;
*[[Arduino Controlled Power Supply]] - ordered many components.&lt;br /&gt;
*Many electronic components specified in DIY articles and videos are now listed as obsolete.  Finding replacement parts is not easy. Case in point: LM338K Linear Voltage Regulators - Listed as obsolete on the Mouser website and selling for $91 or more on the Digi-key website.&lt;br /&gt;
*[https://www.eetimes.com/document.asp?doc_id=1333695# Article about obsolescence and demand and supply issues in the electronics industry]&lt;br /&gt;
&lt;br /&gt;
=Saturday June 1 - Monday June 3=&lt;br /&gt;
Reviewed [[OSE Design Guides]] Reviewed [[DIY Semiconductors]] Microfactory STEAM Camp Critical Path [[Arduino Controlled Power Supply]] Fabrication of aluminium blocks for hot end for OSE 3D printer extruder. Parametric modelling in FreeCAD.&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 28 - Friday May 31=&lt;br /&gt;
[[Halbach Array Brushless Motor]]&lt;br /&gt;
&lt;br /&gt;
=Monday May 27= &lt;br /&gt;
[https://www.youtube.com/watch?v=uOQk8SJso6Q How to Control an ESC with an Arduino] [https://photos.app.goo.gl/HMvWbigvuw3S26YG8 Test of the OSE Motor].&lt;br /&gt;
&lt;br /&gt;
=Friday May 24 - Sunday May 26= &lt;br /&gt;
Not all that much.&lt;br /&gt;
=Thursday May 23=&lt;br /&gt;
Thank you to Marcin and Catarina for a refreshing, enlightening and enjoyable visit to Factor e Farm and the Seed Ecohome. Returned to London.&lt;br /&gt;
=Wednesday May 22=&lt;br /&gt;
Skype appointment - 12pm Missouri time - friend in Colombia. Uploaded FreeCAD files for D3D v19.04 Power Plug Case to Wiki. [https://en.wikipedia.org/wiki/Buck_converter Buck Converter]&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 21=&lt;br /&gt;
[https://www.powerelectronicsnews.com/problems-solutions/power-supply-design-tutorial Power Supply Design Tutorial] Edited the [https://docs.google.com/document/d/1_3t_97giFOtqJ4ExPZdYeVEilCRhMmu0IWLLpBCrG-0/edit?usp=sharing Video Script] &lt;br /&gt;
Contacted STEM people in Nigeria and Pennsylvania based on the OSE STEAM Camp posted in this [https://www.facebook.com/groups/822455171229260/ Facebook Forum]&lt;br /&gt;
Further communication with friends in Mexico regarding the STEAM camp. Contacted a friend of a friend in Kansas City - Baha&#039;i Community.&lt;br /&gt;
&lt;br /&gt;
=Monday May 20=&lt;br /&gt;
Posted Microfactory STEAM camp on several Facebook STEM/STEAM Education pages. [[The Living Curriculum]] [https://github.com/MarlinFirmware/Marlin/issues/8903 Marlin Bed Temperature Settings] Worked on the Titan-Aero extruder repairs. The two parts of the extruder tube must be fairly tight (but not too tight!) to avoid leakage.&lt;br /&gt;
&lt;br /&gt;
=Sunday May 19=&lt;br /&gt;
Printing ABS using the OSE D3D - Set the bed temperature to 83 and the nozzle temperature to 255.  After 5 minutes of printing, several layers were adhering well. Thermal runaway. Tried 80 and 244; thermal runaway again. Joined several online STEM/Education groups.&lt;br /&gt;
&lt;br /&gt;
=Saturday May 18=&lt;br /&gt;
[[OSE Revenue Generation]] - Grameen Bank / Social Business - [[OSE Curriculum]]&lt;br /&gt;
&lt;br /&gt;
=Friday May 17=&lt;br /&gt;
[[OSE STEM Camp Marketing Strategy]]&lt;br /&gt;
=Friday May 10 - Thursday May 16= &lt;br /&gt;
Preparation for trip to Factor e Farm - gathered supplies - PCB boards, glossy paper, wire, magnets, electronic components, hardware, etc. Arrival at Factor e Farm. Work on D3D v. 19.04: [Photos - OSE D3D v19.04 Build at FeF https://www.facebook.com/photo.php?fbid=10161819908970597&amp;amp;set=pcb.1063740287151880&amp;amp;type=3&amp;amp;theater&amp;amp;ifg=1]&lt;br /&gt;
 &lt;br /&gt;
=Friday April 12 - Thursday May 9=&lt;br /&gt;
[https://drive.google.com/open?id=1-DpgMCARsA5iz4JLZtUeP3SD4a3UrXhj OSE Motor Completed] - ready for testing - Open Source Chinese Prusa i3 Printer Extruder - Configured and began printing with OSE D3D - printing very well at the moment - Booked a flight to Kansas City - heading to Factor e Farm soon!&lt;br /&gt;
&lt;br /&gt;
=Monday March 4 - Thursday April 11=&lt;br /&gt;
FRC Robotics - Ryerson University, Western University. OSE Motor - students have made some progress: [https://drive.google.com/open?id=1n99XWM8KMwvnV-tCmcWjImsBG27ReRSc OSE Brushless Motor] Additional work on the [[Simple 3D Printer Extruder]]&lt;br /&gt;
&lt;br /&gt;
=Sunday March 3=&lt;br /&gt;
Completed the first model of the most difficult part to CAD in the extruder - the X-Axis bracket.  Will now print CAD files and measure their accuracy before making changes to the CAD parameters.  Hopefully this process will result in more accurate parts.&lt;br /&gt;
&lt;br /&gt;
=Friday March 1 - Saturday March 2 =&lt;br /&gt;
Further work on open sourcing Chinese Prusa i3 3D printer extruder.&lt;br /&gt;
&lt;br /&gt;
=Monday February 18 - Thursday February 28=&lt;br /&gt;
Began the process of open-sourcing our 3D printer extruder: [[Simple 3D Printer Extruder]] (see photos and CAD files in the 3D Printer Folder) &lt;br /&gt;
Started a new unit in Computer Engineering Technology class.  Two groups of students are working on OSE materials:  &lt;br /&gt;
#The OSE Collaborative Contest&lt;br /&gt;
#The OSE Filament Extruder&lt;br /&gt;
&lt;br /&gt;
=Saturday February 9-Sunday February 17=&lt;br /&gt;
Hosted a group of six STEM students from School of the Nations in Georgetown, Guyana. STEM Camp at London International Academy.  Introduced the concept of the OSE collaborative contest. Introductory FreeCAD activities. Introduced Python computer programming.  Printed out various parts for an open source brushless motor.  [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX Link to CAD Files] (see School of the Nations sub-folder)[[file:Rotor.jpg|200px]] [http://guyanachronicle.com/2019/02/17/nations-benefits-from-robotics-training-in-canada Article in Guyana Chronicle]&lt;br /&gt;
&lt;br /&gt;
=Wednesday February 6= &lt;br /&gt;
[[OSE Coopetition]].  Discussed wiki + part library + documentation of OSE Coopetition.&lt;br /&gt;
&lt;br /&gt;
=Monday February 4=&lt;br /&gt;
Uploaded version 0.1 of the OSE Collaborative Contest Rules to [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest]&lt;br /&gt;
=Wednesday January 30 - Sunday February 3=&lt;br /&gt;
FRC Build season.  [https://drive.google.com/drive/folders/1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH?usp=sharing Team 6162 Cap Alpaca FreeCAD files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday January 29=&lt;br /&gt;
Collected FreeCAD files in a Google drive folder: [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest] &lt;br /&gt;
Summary of Nanjing group&#039;s schedule: [https://docs.google.com/document/d/1R-Dtu3kdZ0u8Qo5w3_vDuNEg5myr8mUmLjSpPOf-HoI/edit?usp=sharing | 2019 Winter Camp]&lt;br /&gt;
Here is some sample work from the FreeCAD workshop:&lt;br /&gt;
*[[File:ReyJessica.png|200px]]&lt;br /&gt;
*[[File:ZJHLSR.png|200px]]&lt;br /&gt;
&lt;br /&gt;
=Sunday January 27 - Monday January 28=&lt;br /&gt;
Discussed record keeping, file sharing and other skills for collaborative literacy. Created a sample page stub: [[Brushless Motor Design]].  Asked students to reflect on sessions learning FreeCAD.  Found that it is not necessary to learn a whole lot about FreeCAD in order to get students learning it.  Demonstrated two sample FreeCAD 0.17 design processes:&lt;br /&gt;
#Design a part like a motor adapter: body - sketch a circle - pad - sketch on a surface - pocket&lt;br /&gt;
#Design a sketch with constraints - some straight lines and some arcs closed in a loop with particular dimensions and angles.&lt;br /&gt;
After that, students were directed to Youtube videos that covered specific additional skills: &lt;br /&gt;
*Threading - inner and outer&lt;br /&gt;
*Polar patterns&lt;br /&gt;
Through this process, I learned how to do these skills from some students and was able to show other students the same, especially with polar patterns.&lt;br /&gt;
&lt;br /&gt;
=Sunday January, 20 - Saturday January 26, 2019=&lt;br /&gt;
Prepared for and welcomed 19 students from Jinling High School in China. Introduced the concept of the OSE Collaborative Contest.  Marcin spoke with the group over Jitsi on Thursday and on Saturday and proposed that the students participate in the OSE Collaborative Contest. It was well received despite the students&#039; fatigue from travel and skiing. Introduced FreeCAD and had students download and install it. Some computers do not immediately work with FreeCAD; hope that the problem may be solved. We plan to further discuss the students&#039; participation in the contest tomorrow and 3D print some of their early FreeCAD work on Monday. Created a link to LIA students&#039; FreeCAD work.  Currently the folder is being used for FRC preparation.  After the FRC robot is built, we are planning to transition to OSE-related work in this folder: [https://drive.google.com/open?id=1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH LIA OSE Club CAD Files]&lt;br /&gt;
&lt;br /&gt;
=Thursday January 10 - Saturday Jan 19, 2019=&lt;br /&gt;
Heaviest schedule of the year - January and February; progress slower during this time. Working on STEM Curriculum for FeF STEM Camps - [[Summer School 2019]].&lt;br /&gt;
&lt;br /&gt;
=Wed Jan 9, 2019=&lt;br /&gt;
*Use a presentation - template - make a copy - pass this to Heydar - document the simple 3D printing extruder for a low cost 3d printer - [https://docs.google.com/presentation/d/1_kUzO4eRCqrHVpqxSSTs17oLhtikTTyYe_1NxrTKlTI/edit#slide=id.g45ed589c64_0_0]&lt;br /&gt;
*Homework: Complete STEM Curriculum&lt;br /&gt;
&lt;br /&gt;
=January 2, 2019=&lt;br /&gt;
Ordered parts for a brushless motor to be constructed as part of the contest and part of the Computer Engineering Technology class at London International Academy.&lt;br /&gt;
In order to make the collaborative contest work, we will need to create a kit of parts to be easily shipped to participating schools.&lt;br /&gt;
&lt;br /&gt;
=December 24 2018-January 1, 2019=&lt;br /&gt;
Took a break. Reflected on plans for OSE London / OSE Club at London International Academy / OSE Collaborative Contest&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=December 23, 2018=&lt;br /&gt;
Defined particulars of [[OSE STEM Camps]].&lt;br /&gt;
&lt;br /&gt;
=December 22,2018=&lt;br /&gt;
[[William Conversation | Conversation with Marcin]]. Research on OSE Club Activities. Planning for winter semester courses&#039; links to OSE - Computer Engineering Technology and Computer Science. Plans to do the following in Computer Engineering Technology: build a brushless motor and ESC from scratch. Computer Science: Programming projects related to OSE - simulation program? Western University Introduction to STEM Class - offer the OSE Competition as a choice for a final project - help administer / judge / communicate / etc.&lt;br /&gt;
&lt;br /&gt;
=December 12-21, 2018=&lt;br /&gt;
Exams and marking - excellent ways to hinder educational progress. Discussed Canadian bill of materials with Russ Purvis. Discussed the upcoming OSE workshop in Prince George, BC currently in the planning phase. Several phone conversations with Charlie. Worked on some particulars for the upcoming OSE competition in January. Contacted a teacher in Iran to invite her to join the competition with her students. Sent a letter of reference to Russ with respect to hosting an OSE workshop.&lt;br /&gt;
&lt;br /&gt;
=December 8-11, 2018=&lt;br /&gt;
Spoke with Charlie about development of OSE workshops.  Spoke with Marcin and Catarina about the same. Updated Marcin about development of OSE club at London International Academy.  We now have plans to include at least four schools in our first design challenge - School of the Nations in Guyana, Fujing Foreign Language School in Shenzhen and Jinling School in Nanjing. Was approached by a friend to contact Makerspace managers in St. Thomas and Toronto. Arranged a meeting with the makerspace managers at Western University. OSE Marlin v18.10 works for printing with new printer. Successfully printed base layer of a file.  It seems that the extruder may have jammed.  Will check again as soon as possible. LIA students continue to develop their FreeCAD skills and are able to design parts in parallel according to a spacial plan and assemble them into a larger model. Installed OSE Linux on laptop now with a new old-school 1TcB hard drive. OSE Linux did not recognise the card reader; everything else seems to work very well. &amp;lt;strong&amp;gt;Note: Stepper motors on y axis of D3D became alarmingly hot after about 15 minutes of printing.&amp;lt;/strong&amp;gt; Perhaps this is a configuration issue; may need to resolve this before allowing the printer to do a full print.&lt;br /&gt;
&lt;br /&gt;
=December 7, 2018= &lt;br /&gt;
Using OSE Ubuntu on laptop with fried SSD. Internet has connection through ping but does not display pages in Chromium. D3D Marlin recent version from OSE website installed in printer. Autohome produces a collision of the z axis with the extruder as by default the z probe is off the plate.  Tried to move the y axis using various commands such as G0 Y40 and G1 Y40 all of which cause the Y axis to move until it hits the maximum physically possible position. Spoke with Johann Wong about the possibility of combining an OSE Makerspace skills (Arduino, CAD, etc.) + 3D printer workshop with Human Innovation PIE&#039;s soft skills innovation workshop through the London International Academy Foundation. Was using wrong Marlin file for D3D printer - will try correct one asap. Suggestions for D3D: use zip ties and clothespin springs for tensioning belts.  This has worked exceptionally well and reliably for our Chinese Prusa derivative; the belts have needed nearly no attention in three years.&lt;br /&gt;
&lt;br /&gt;
=December 6, 2018=&lt;br /&gt;
Was about to test print on OSE D3D when SSD crashed.  Did Ubuntu fry it?  Researching this.&lt;br /&gt;
&lt;br /&gt;
=December 5, 2018=&lt;br /&gt;
Introduced the OSE design challenge to OSE Club students at London International Academy.&lt;br /&gt;
&lt;br /&gt;
=December 4, 2018= &lt;br /&gt;
Held an informal Introduction to Arduino Workshop at London International Academy to help two grade 11 students with a project.  Spoke with Marcin about plans for the OSE design challenge, OSE club and possibility of a summer camp at FeF in May or June of 2019.&lt;br /&gt;
&lt;br /&gt;
=December 2, 2018=&lt;br /&gt;
 Created a document outlining a framework for OSL - Open Source London and shared it on Google Docs; visited Charlie to discuss the document.&lt;br /&gt;
&lt;br /&gt;
=November 29, 2018=&lt;br /&gt;
 Introduced OSE 3D Printer and Prusa i3 3D printer to parents and students at a local French Immersion school - PAFI.  Designed and printed various models using Blender and Repetier.&lt;br /&gt;
&lt;br /&gt;
=November 28, 2018=&lt;br /&gt;
*Updated OSECartCoin with letters. &lt;br /&gt;
**[[File:PAFI.stl]]&lt;br /&gt;
**[[File:PAFI.fcstd]]&lt;br /&gt;
*Call with Marcin regarding &#039;&#039;&#039;[[LIA OSE Club]]&#039;&#039;&#039;&lt;br /&gt;
*Build from last week - [https://www.facebook.com/groups/398759490316633/permalink/963594880499755/]&lt;br /&gt;
&lt;br /&gt;
=November 27, 2018=&lt;br /&gt;
Wrote the suggested intro to Marcin&#039;s next TED talk: [[Marcin&#039;s Next TED Talk]]&lt;br /&gt;
=November 26, 2018=&lt;br /&gt;
Uploaded FeF Brick Press Fabrication video from July 29, 2011 - [https://youtu.be/LwW8sOUO00s]&lt;br /&gt;
&amp;lt;p&amp;gt;Uploaded video of the &amp;quot;Cluckaphone&amp;quot; - July 29, 2011 - [https://www.youtube.com/watch?v=PNOhZX7ftLk&amp;amp;feature=youtu.be]&lt;br /&gt;
Call with Marcin, Catarina and Charlie - OSE Planning&lt;br /&gt;
&lt;br /&gt;
=November 25, 2018=&lt;br /&gt;
Consultation about the establishment of an OSE Club at London International Academy and future directions for the development of OSE Clubs and Makerspaces.&lt;br /&gt;
&lt;br /&gt;
=November 24, 2018=&lt;br /&gt;
We made an OSE Cart Coin with FreeCAD &lt;br /&gt;
Here are the files for OSE Cart Coin v0.1:&lt;br /&gt;
[[File:OSECartCoin.fcstd]]&lt;br /&gt;
[[File:OSECartCoin.stl]]&lt;br /&gt;
Attended Marcin&#039;s presentation entitled &amp;quot;Education for the Open Source Economy&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=November 23, 2018=&lt;br /&gt;
Built a an OSE 3D printer at London International Academy&lt;br /&gt;
&lt;br /&gt;
=November 23-25=&lt;br /&gt;
Attended first OSE Professional Development workshop at London International Academy with Charles Freer, Pascal Gingras, Marcin and Catarina.&lt;br /&gt;
&lt;br /&gt;
=November 18-22= &lt;br /&gt;
Prepared for the visit of Marcin and Catarina to London.&lt;br /&gt;
&lt;br /&gt;
=November 17, 2018=&lt;br /&gt;
Conversation about OSE development with Charlie.  In particular, discussion about education and its relationship to developing the capacity to lead a meaningful and productive life. Reference to overlap of Baha&#039;i means and principles with those of the OSE - elimination of the extremes of wealth and poverty, building capabilities in a population, individual agency and initiative within a systematically evolving framework, etc.&lt;br /&gt;
&lt;br /&gt;
=November 16, 2018=&lt;br /&gt;
*Received US $5000 Shuttleworth Foundation Flash Grant&lt;br /&gt;
*Conference call with Marcin and Charles Freer regarding Marcin and Catarina&#039;s upcoming visit to London, Ontario&lt;br /&gt;
&lt;br /&gt;
=November 15, 2018=&lt;br /&gt;
Engineering Club students designed and printed a part to add to the Lyman Filament Extruder repository - a bracket for a rocker switch&lt;br /&gt;
&lt;br /&gt;
[[File:SwitchBracket2.png]]&lt;br /&gt;
[[File:Switchbase2.stl]]&lt;br /&gt;
[[File:SwitchBracket.FCStd]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=May, 2012=&lt;br /&gt;
Started project to build metric version of OSE CEB Press in Nanjing, China&lt;br /&gt;
&lt;br /&gt;
=April, 2012=&lt;br /&gt;
Began 3D Printing project in physics class at London International Academy&lt;br /&gt;
&lt;br /&gt;
=July, 2011-October, 2018=&lt;br /&gt;
Many things happened including severe neglect of the OSE wiki&lt;br /&gt;
Some highlights:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Regular incorporation of OSE concepts into classes and presentations 2011-present&lt;br /&gt;
*May, 2013 - started collaboration with Human InnovationPIE, a London non-profit organization focused on providing soft skills education for innovation.&lt;br /&gt;
*April, 2014 - Recognized in local paper for 3D Printer build with students&lt;br /&gt;
*July, 2015 - Asked to start STEM program at London International Academy further to success and popularity of 3D printer project&lt;br /&gt;
*September, 2015 - Began building Farmbot with students&lt;br /&gt;
*January, 2017 - Began teaching an Introduction to STEM course at Western University with significant OSE-based content.&lt;br /&gt;
&lt;br /&gt;
=July 16, 2011=&lt;br /&gt;
Arrived at Factor e Farm with Haydar Neal&lt;br /&gt;
&lt;br /&gt;
=March,  2011=&lt;br /&gt;
Saw TED Talk and wrote away to Marcin immediately&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=210600</id>
		<title>William Neal Log</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=210600"/>
		<updated>2020-02-06T18:07:41Z</updated>

		<summary type="html">&lt;p&gt;Wneal: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{RightTOC}}&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;600&amp;quot; height=&amp;quot;600&amp;quot; src=&amp;quot;https://osedev.org/wiki/William?start=2/1/2017&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
=Monday, December 2 - Thursday Feb. 6, 2020=&lt;br /&gt;
End of semester disruption; start of semester disruption - a huge amount of time and effort spent on paperwork instead of education. Start of FRC robotics season. Start of computer programming and computer engineering classes. &lt;br /&gt;
=Saturday November 30 - Sunday December 1=&lt;br /&gt;
Finished OSE Prusa Build in Guyana. Used [https://www.repetier.com/documentation/repetier-firmware/ Repetier Firmware] and [https://www.repetier.com/ Repetier Host] to control the printer.&lt;br /&gt;
=Thursday November 28 - Friday November 29=&lt;br /&gt;
Workshop with the Guyana Prison Service - 12 prison staff from five facilities in Guyana. Reactivated 6 discarded computers using Ubuntu and OSE Linux. [[Introduction to Python]]. [https://m.facebook.com/groups/398759490316633?view=permalink&amp;amp;id=1215623975296843 OSE Prusa Build]&lt;br /&gt;
&lt;br /&gt;
=Saturday November 23  Wednesday November 27=&lt;br /&gt;
Workshop in Guyana with the Guyana Prison Service: The CSSP Project.  This project aims to replace the current model of prison management with an approach based on human nobility, education and rehabilitation.&lt;br /&gt;
=Thursday November 28=&lt;br /&gt;
[[OSE Linux]] - we got six old computers working on Ubuntu using flash drives.  Tomorrow will have an Open Source software workshop using OSE Linux on USB drives. We will use Python, FreeCAD, LibreOffice, etc. Showed the TED talk to our group of 12 prison officers from five facilities in Guyana.&lt;br /&gt;
&lt;br /&gt;
=Saturday November 2 - Friday November 22=&lt;br /&gt;
Worked on the [[OSE Prusa]] in order to support the establishment of a STEM centre in Trinidad and Tobago and to prepare for a workshop with the Government of Guyana.&lt;br /&gt;
#Items in a numbered list&lt;br /&gt;
#More Items&lt;br /&gt;
##Yet More&lt;br /&gt;
*Items in a bullet list&lt;br /&gt;
*More Items&lt;br /&gt;
**Yet More&lt;br /&gt;
&lt;br /&gt;
=Thursday October 24 - Friday November 1=&lt;br /&gt;
*Tested printing on the London replication of the D3D printer for the first time.&lt;br /&gt;
*Team of 9 students from Western university preparing a project around OSE - D3D replication + filament extruder replication + Chinese Reprap Prusa i3 reverse engineering.&lt;br /&gt;
=Sunday October 12 - Wednesday October 23=&lt;br /&gt;
*Updated some files used in the simple extruder build [https://wiki.opensourceecology.org/wiki/Simple_3D_Printer_Extruder#CAD here.]&lt;br /&gt;
&lt;br /&gt;
=Friday October 4 - Saturday October 11=&lt;br /&gt;
*Successfully tested D3D simple extruder based on Chinese Prusa i3.&lt;br /&gt;
*D3D challenge - Y axis end stop stopped working...&lt;br /&gt;
*Almost finished replicating first of two D3D printers in London Ontario.&lt;br /&gt;
*Preparing a D3D / Brushless motor workshop for the Guyana Prison Service. &lt;br /&gt;
*FreeCAD activity completed at Western University - varied response of individuals in the groups - the allocated time was too short. &lt;br /&gt;
=Friday September 27 - Thursday October 3=&lt;br /&gt;
*Continued work on D3D build.&lt;br /&gt;
*Experimenting with highly differentiated instruction unconstrained by government curricular concerns - our STEM club&#039;s three sections - Robotics / Computers and CAD / STEM projects have each gradually evolved over the last several weeks such that small groups of 1-4 students specialize on special tasks.&lt;br /&gt;
*Introduced FreeCAD to a group of junior youth from a local neighborhood. After about 40 minutes each group of two participants completed a motor rotor design.&lt;br /&gt;
*Second FreeCAD session with a group of 40 teacher candidate students at Western University&#039;s Althouse. Also used highly differentiated / interdisciplinary instruction with this group. After one hour and a half, most groups were able to generate several parts of a brushless motor and begin the process of parameterizing with a spreadsheet and creating an assembly.  Some trained engineers in the crowd generated excellent &amp;quot;propellers&amp;quot; for the motor using advanced features.&lt;br /&gt;
&lt;br /&gt;
=Tuesday, September 1 - Thursday, September 26=&lt;br /&gt;
*New School Year - over 40 students participating in our special STEM/Business/Arts program.&lt;br /&gt;
*Two sections of our program, STEM Projects and Computer Programming/CAD,  include OSE-related topics:&lt;br /&gt;
**Building 3D printers&lt;br /&gt;
**3D-printing&lt;br /&gt;
**OSE Motor design and fabrication&lt;br /&gt;
**Filament extruder&lt;br /&gt;
**CAD&lt;br /&gt;
*Building a 3D printer in collaboration with Bill Phelan, Vice President of Die-X Ltd.&lt;br /&gt;
*Remote collaboration with Branko Misovic in Holland.&lt;br /&gt;
*Preparing for a two-week 3D-printer build / open source hardware workshop in Guyana in November.&lt;br /&gt;
*Working on simple extruder for the D3D printer.&lt;br /&gt;
*Some 3D-printed parts for the D3D printer are not precise enough as they were printed with 1.0mm and 0.8mm nozzles.  We are switching to a 0.4mm nozzle and re-printing.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 27 - Monday September 1=&lt;br /&gt;
*Preparation for STEM camps in China. &lt;br /&gt;
*Travel to China.  Caught behind firewall - Internet was actually a large Intranet - difficult to post, communicate or access any useful sites. &lt;br /&gt;
*STEM Camp at Fujing Foreign language school - 10 days - 60 students, 1.5 hours daily - worked on FreeCAD and the OSE motor. &lt;br /&gt;
*Built OSE D3D printer with eight 9-11 year-old students (10 days, 3 hours daily) at EIC Education in Shenzhen.  The students assembled the axes and helped design some custom 3D-printed brackets for the frame which had to be made out of linear rail. The students learned FreeCAD and were able to design useful parts. Ganesh Ramsahai provided support in completing the build and configuration process. Presented the OSE D3D Shenzhen to the EIC Education Group with a half-hour overview and offer to provide remote support.&lt;br /&gt;
*STEM Camp at Zhangjiagang Foreign Language School in Jiangsu province. 30 students, 3 days, 6 hours per day.  Introduced FreeCAD and had the students design rotors and stators for the OSE brushless motor.&lt;br /&gt;
*Showed the TED talk to four different groups.&lt;br /&gt;
*Uploaded raw FreeCAD and stl files from the camps at Fujing Foreign Language School and Zhangjiagang Foreign Language School to [https://drive.google.com/open?id=1K7U8lEGqRgxwQf-WNX1Llbf-WE7LJCqL Google Drive]&lt;br /&gt;
*Uploaded [https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH custom files] generated during the build of the D3D 19.08 Shenzhen.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 20 - Friday July 26=&lt;br /&gt;
LIA summer STEM camp continued with 38 different students from Shenzhen, China.  The students discussed, in the context of Marcin&#039;s TED Talk, the concept that the human mind, focused and in collaboration with others, has the power to make positive changes in society.  Design of covers and caps for the OSE radial motor. Photos from the STEM Camp activities are [https://photos.app.goo.gl/zcpKk8jaFcDon31K7 here].  Trying to find the USB where we collected all the FreeCAD files.  These will be posted ASAP.&lt;br /&gt;
&lt;br /&gt;
=Monday July 15 - Friday July 19=&lt;br /&gt;
LIA summer STEM camp with 23 students from Vietnam and China. OSE Motor project part II - designing, printing and testing a radial motor. The motor concept was based on the following video: [https://www.youtube.com/watch?v=JkwLpAAfBVI 3D-Printed Axial Brushless Motor for Drones] Students were presented with the concept and asked to design such a motor from scratch using two rotors with eight disc magnets each and two sets of six wire loops.&lt;br /&gt;
&lt;br /&gt;
=Wednesday July 10 - Sunday July 14=&lt;br /&gt;
Preparation for summer STEM Camps at LIA.  Prepared 3D printers.  Began replication of two D3D v19.06 units.&lt;br /&gt;
=Friday June 28 - Tuesday July 9= &lt;br /&gt;
Open Source Ecology Microfactory STEAM Camp&lt;br /&gt;
=Thursday June 27=&lt;br /&gt;
Titan Aero finally working better with 1.5 full turns + a little bit more for good measure - has not jammed all afternoon now - three parts printed.  Logistics for Microfatory STEAM Camp - rented a vehicle and contacted a few participants. A prototype of the OSE extruder has been nearly completed. The extruder gear is scheduled to arrive at Factor e Farm by tomorrow. Then it will be ready for testing.  [https://photos.app.goo.gl/fWUX8ynAdqcn6Fvs6 OSE D3D Extruder - Photo Album][https://drive.google.com/open?id=17BLyvyk1EbrMOhkCfeSwByAq86SemSLX Files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 25 - Wednesday June 26=&lt;br /&gt;
OSE D3D Extruder.  Worked on attaching extruder to X-axis. Ordered extruder motor gears to arrive at FeF on Friday. Printed out bracket 1 successfully. Working on large aluminium block and designing x-axis adapter.&lt;br /&gt;
=Monday June 24=&lt;br /&gt;
Discussion about design of OSE Power Electronics. Problem - transformers are expensive and inflexible. Solution - research the feasibility of creating a 120V buck converter.  Would it be sufficiently efficient and would it be feasible to build?  Here are some potential parts to use: [https://www.digikey.ca/product-detail/en/comchip-technology/GBPC5010W-G/641-1389-ND/2074854 1kV Recifier] [https://www.digikey.ca/product-detail/en/ixys/IXFX120N65X2/IXFX120N65X2-ND/5629498?utm_adgroup=&amp;amp;mkwid=sFMkJ49os&amp;amp;pcrid=311971049444&amp;amp;pkw=&amp;amp;pmt=&amp;amp;pdv=c&amp;amp;productid=5629498&amp;amp;slid=&amp;amp;gclid=EAIaIQobChMIgbDd1fSC4wIVwkOGCh1f8gijEAQYAyABEgJGffD_BwE 650V MOSFET].  One problem seems to be that there may be a high level of energy loss in the circuit....[https://www.digikey.com/product-detail/en/everlight-electronics-co-ltd/H11L1S-TA/1080-1201-1-ND/2675935 Optocoupler] (to isolate the Arduino)[http://fpec.ucf.edu/teaching/EEL%205245%20Lectures/Lecture13%20Chapter4_BoostandBuckBoost_CCM_Analysis.pdf Some background theory]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 19 - Sunday June 23=&lt;br /&gt;
DIY Buck Converter based on the following video (and others): https://www.youtube.com/watch?v=L5oeY53pE0E&amp;amp;t=162s. [https://photos.app.goo.gl/kkHUwBQtD7h48mhB6 Photos.] All four 3D printers are down.  A crucial piece of the extruder of the most reliable printer finally broke. CAD already done for the replacement part. Got the OSE D3D working again on Friday.  Ready for printing on Monday - will print replacement part for other printer.  Other 2 printers almost working...&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 18=&lt;br /&gt;
[https://www.pythonpowerelectronics.com/ Python Power Electronics]&lt;br /&gt;
=Thursday June 13 - Monday June 17=&lt;br /&gt;
Buck Converters. OSE [[Power Electronics]] research. Arduino as controller of Power electronics - frequency issues / limitations. Scalability of Power electronics - can we add modular components to increase voltage, current, etc.?  &lt;br /&gt;
=Tuesday June 11 - Wednesday June 12=&lt;br /&gt;
Completed and sent CAD Drawings for OSE 3D Printer. Spent most of Wednesday working through a jam on the Titan Aero - it has jammed more in a few days than our other extruder has jammed in over three years.&lt;br /&gt;
=Monday June 10=&lt;br /&gt;
[https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH FreeCAD Drawings] for OSE 3D Printer. Note the use of parametric design in the CAD files - Spreadsheet values become variables used in constraint dimensions.&lt;br /&gt;
The following is my most recent FreeCAD Parametric Part Design and Drawing Workflow:[[FreeCAD Workflow]]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 5 - Sunday June 9=&lt;br /&gt;
[https://www.youtube.com/watch?v=CEhBN5_fO5o|DC-DC Buck Converters]&lt;br /&gt;
Power Supply: Transformer + Buck Converter + Ripple Smoothing Circuitry&lt;br /&gt;
=Tuesday June 4=&lt;br /&gt;
*[[Arduino Controlled Power Supply]] - ordered many components.&lt;br /&gt;
*Many electronic components specified in DIY articles and videos are now listed as obsolete.  Finding replacement parts is not easy. Case in point: LM338K Linear Voltage Regulators - Listed as obsolete on the Mouser website and selling for $91 or more on the Digi-key website.&lt;br /&gt;
*[https://www.eetimes.com/document.asp?doc_id=1333695# Article about obsolescence and demand and supply issues in the electronics industry]&lt;br /&gt;
&lt;br /&gt;
=Saturday June 1 - Monday June 3=&lt;br /&gt;
Reviewed [[OSE Design Guides]] Reviewed [[DIY Semiconductors]] Microfactory STEAM Camp Critical Path [[Arduino Controlled Power Supply]] Fabrication of aluminium blocks for hot end for OSE 3D printer extruder. Parametric modelling in FreeCAD.&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 28 - Friday May 31=&lt;br /&gt;
[[Halbach Array Brushless Motor]]&lt;br /&gt;
&lt;br /&gt;
=Monday May 27= &lt;br /&gt;
[https://www.youtube.com/watch?v=uOQk8SJso6Q How to Control an ESC with an Arduino] [https://photos.app.goo.gl/HMvWbigvuw3S26YG8 Test of the OSE Motor].&lt;br /&gt;
&lt;br /&gt;
=Friday May 24 - Sunday May 26= &lt;br /&gt;
Not all that much.&lt;br /&gt;
=Thursday May 23=&lt;br /&gt;
Thank you to Marcin and Catarina for a refreshing, enlightening and enjoyable visit to Factor e Farm and the Seed Ecohome. Returned to London.&lt;br /&gt;
=Wednesday May 22=&lt;br /&gt;
Skype appointment - 12pm Missouri time - friend in Colombia. Uploaded FreeCAD files for D3D v19.04 Power Plug Case to Wiki. [https://en.wikipedia.org/wiki/Buck_converter Buck Converter]&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 21=&lt;br /&gt;
[https://www.powerelectronicsnews.com/problems-solutions/power-supply-design-tutorial Power Supply Design Tutorial] Edited the [https://docs.google.com/document/d/1_3t_97giFOtqJ4ExPZdYeVEilCRhMmu0IWLLpBCrG-0/edit?usp=sharing Video Script] &lt;br /&gt;
Contacted STEM people in Nigeria and Pennsylvania based on the OSE STEAM Camp posted in this [https://www.facebook.com/groups/822455171229260/ Facebook Forum]&lt;br /&gt;
Further communication with friends in Mexico regarding the STEAM camp. Contacted a friend of a friend in Kansas City - Baha&#039;i Community.&lt;br /&gt;
&lt;br /&gt;
=Monday May 20=&lt;br /&gt;
Posted Microfactory STEAM camp on several Facebook STEM/STEAM Education pages. [[The Living Curriculum]] [https://github.com/MarlinFirmware/Marlin/issues/8903 Marlin Bed Temperature Settings] Worked on the Titan-Aero extruder repairs. The two parts of the extruder tube must be fairly tight (but not too tight!) to avoid leakage.&lt;br /&gt;
&lt;br /&gt;
=Sunday May 19=&lt;br /&gt;
Printing ABS using the OSE D3D - Set the bed temperature to 83 and the nozzle temperature to 255.  After 5 minutes of printing, several layers were adhering well. Thermal runaway. Tried 80 and 244; thermal runaway again. Joined several online STEM/Education groups.&lt;br /&gt;
&lt;br /&gt;
=Saturday May 18=&lt;br /&gt;
[[OSE Revenue Generation]] - Grameen Bank / Social Business - [[OSE Curriculum]]&lt;br /&gt;
&lt;br /&gt;
=Friday May 17=&lt;br /&gt;
[[OSE STEM Camp Marketing Strategy]]&lt;br /&gt;
=Friday May 10 - Thursday May 16= &lt;br /&gt;
Preparation for trip to Factor e Farm - gathered supplies - PCB boards, glossy paper, wire, magnets, electronic components, hardware, etc. Arrival at Factor e Farm. Work on D3D v. 19.04: [Photos - OSE D3D v19.04 Build at FeF https://www.facebook.com/photo.php?fbid=10161819908970597&amp;amp;set=pcb.1063740287151880&amp;amp;type=3&amp;amp;theater&amp;amp;ifg=1]&lt;br /&gt;
 &lt;br /&gt;
=Friday April 12 - Thursday May 9=&lt;br /&gt;
[https://drive.google.com/open?id=1-DpgMCARsA5iz4JLZtUeP3SD4a3UrXhj OSE Motor Completed] - ready for testing - Open Source Chinese Prusa i3 Printer Extruder - Configured and began printing with OSE D3D - printing very well at the moment - Booked a flight to Kansas City - heading to Factor e Farm soon!&lt;br /&gt;
&lt;br /&gt;
=Monday March 4 - Thursday April 11=&lt;br /&gt;
FRC Robotics - Ryerson University, Western University. OSE Motor - students have made some progress: [https://drive.google.com/open?id=1n99XWM8KMwvnV-tCmcWjImsBG27ReRSc OSE Brushless Motor] Additional work on the [[Simple 3D Printer Extruder]]&lt;br /&gt;
&lt;br /&gt;
=Sunday March 3=&lt;br /&gt;
Completed the first model of the most difficult part to CAD in the extruder - the X-Axis bracket.  Will now print CAD files and measure their accuracy before making changes to the CAD parameters.  Hopefully this process will result in more accurate parts.&lt;br /&gt;
&lt;br /&gt;
=Friday March 1 - Saturday March 2 =&lt;br /&gt;
Further work on open sourcing Chinese Prusa i3 3D printer extruder.&lt;br /&gt;
&lt;br /&gt;
=Monday February 18 - Thursday February 28=&lt;br /&gt;
Began the process of open-sourcing our 3D printer extruder: [[Simple 3D Printer Extruder]] (see photos and CAD files in the 3D Printer Folder) &lt;br /&gt;
Started a new unit in Computer Engineering Technology class.  Two groups of students are working on OSE materials:  &lt;br /&gt;
#The OSE Collaborative Contest&lt;br /&gt;
#The OSE Filament Extruder&lt;br /&gt;
&lt;br /&gt;
=Saturday February 9-Sunday February 17=&lt;br /&gt;
Hosted a group of six STEM students from School of the Nations in Georgetown, Guyana. STEM Camp at London International Academy.  Introduced the concept of the OSE collaborative contest. Introductory FreeCAD activities. Introduced Python computer programming.  Printed out various parts for an open source brushless motor.  [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX Link to CAD Files] (see School of the Nations sub-folder)[[file:Rotor.jpg|200px]] [http://guyanachronicle.com/2019/02/17/nations-benefits-from-robotics-training-in-canada Article in Guyana Chronicle]&lt;br /&gt;
&lt;br /&gt;
=Wednesday February 6= &lt;br /&gt;
[[OSE Coopetition]].  Discussed wiki + part library + documentation of OSE Coopetition.&lt;br /&gt;
&lt;br /&gt;
=Monday February 4=&lt;br /&gt;
Uploaded version 0.1 of the OSE Collaborative Contest Rules to [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest]&lt;br /&gt;
=Wednesday January 30 - Sunday February 3=&lt;br /&gt;
FRC Build season.  [https://drive.google.com/drive/folders/1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH?usp=sharing Team 6162 Cap Alpaca FreeCAD files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday January 29=&lt;br /&gt;
Collected FreeCAD files in a Google drive folder: [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest] &lt;br /&gt;
Summary of Nanjing group&#039;s schedule: [https://docs.google.com/document/d/1R-Dtu3kdZ0u8Qo5w3_vDuNEg5myr8mUmLjSpPOf-HoI/edit?usp=sharing | 2019 Winter Camp]&lt;br /&gt;
Here is some sample work from the FreeCAD workshop:&lt;br /&gt;
*[[File:ReyJessica.png|200px]]&lt;br /&gt;
*[[File:ZJHLSR.png|200px]]&lt;br /&gt;
&lt;br /&gt;
=Sunday January 27 - Monday January 28=&lt;br /&gt;
Discussed record keeping, file sharing and other skills for collaborative literacy. Created a sample page stub: [[Brushless Motor Design]].  Asked students to reflect on sessions learning FreeCAD.  Found that it is not necessary to learn a whole lot about FreeCAD in order to get students learning it.  Demonstrated two sample FreeCAD 0.17 design processes:&lt;br /&gt;
#Design a part like a motor adapter: body - sketch a circle - pad - sketch on a surface - pocket&lt;br /&gt;
#Design a sketch with constraints - some straight lines and some arcs closed in a loop with particular dimensions and angles.&lt;br /&gt;
After that, students were directed to Youtube videos that covered specific additional skills: &lt;br /&gt;
*Threading - inner and outer&lt;br /&gt;
*Polar patterns&lt;br /&gt;
Through this process, I learned how to do these skills from some students and was able to show other students the same, especially with polar patterns.&lt;br /&gt;
&lt;br /&gt;
=Sunday January, 20 - Saturday January 26, 2019=&lt;br /&gt;
Prepared for and welcomed 19 students from Jinling High School in China. Introduced the concept of the OSE Collaborative Contest.  Marcin spoke with the group over Jitsi on Thursday and on Saturday and proposed that the students participate in the OSE Collaborative Contest. It was well received despite the students&#039; fatigue from travel and skiing. Introduced FreeCAD and had students download and install it. Some computers do not immediately work with FreeCAD; hope that the problem may be solved. We plan to further discuss the students&#039; participation in the contest tomorrow and 3D print some of their early FreeCAD work on Monday. Created a link to LIA students&#039; FreeCAD work.  Currently the folder is being used for FRC preparation.  After the FRC robot is built, we are planning to transition to OSE-related work in this folder: [https://drive.google.com/open?id=1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH LIA OSE Club CAD Files]&lt;br /&gt;
&lt;br /&gt;
=Thursday January 10 - Saturday Jan 19, 2019=&lt;br /&gt;
Heaviest schedule of the year - January and February; progress slower during this time. Working on STEM Curriculum for FeF STEM Camps - [[Summer School 2019]].&lt;br /&gt;
&lt;br /&gt;
=Wed Jan 9, 2019=&lt;br /&gt;
*Use a presentation - template - make a copy - pass this to Heydar - document the simple 3D printing extruder for a low cost 3d printer - [https://docs.google.com/presentation/d/1_kUzO4eRCqrHVpqxSSTs17oLhtikTTyYe_1NxrTKlTI/edit#slide=id.g45ed589c64_0_0]&lt;br /&gt;
*Homework: Complete STEM Curriculum&lt;br /&gt;
&lt;br /&gt;
=January 2, 2019=&lt;br /&gt;
Ordered parts for a brushless motor to be constructed as part of the contest and part of the Computer Engineering Technology class at London International Academy.&lt;br /&gt;
In order to make the collaborative contest work, we will need to create a kit of parts to be easily shipped to participating schools.&lt;br /&gt;
&lt;br /&gt;
=December 24 2018-January 1, 2019=&lt;br /&gt;
Took a break. Reflected on plans for OSE London / OSE Club at London International Academy / OSE Collaborative Contest&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=December 23, 2018=&lt;br /&gt;
Defined particulars of [[OSE STEM Camps]].&lt;br /&gt;
&lt;br /&gt;
=December 22,2018=&lt;br /&gt;
[[William Conversation | Conversation with Marcin]]. Research on OSE Club Activities. Planning for winter semester courses&#039; links to OSE - Computer Engineering Technology and Computer Science. Plans to do the following in Computer Engineering Technology: build a brushless motor and ESC from scratch. Computer Science: Programming projects related to OSE - simulation program? Western University Introduction to STEM Class - offer the OSE Competition as a choice for a final project - help administer / judge / communicate / etc.&lt;br /&gt;
&lt;br /&gt;
=December 12-21, 2018=&lt;br /&gt;
Exams and marking - excellent ways to hinder educational progress. Discussed Canadian bill of materials with Russ Purvis. Discussed the upcoming OSE workshop in Prince George, BC currently in the planning phase. Several phone conversations with Charlie. Worked on some particulars for the upcoming OSE competition in January. Contacted a teacher in Iran to invite her to join the competition with her students. Sent a letter of reference to Russ with respect to hosting an OSE workshop.&lt;br /&gt;
&lt;br /&gt;
=December 8-11, 2018=&lt;br /&gt;
Spoke with Charlie about development of OSE workshops.  Spoke with Marcin and Catarina about the same. Updated Marcin about development of OSE club at London International Academy.  We now have plans to include at least four schools in our first design challenge - School of the Nations in Guyana, Fujing Foreign Language School in Shenzhen and Jinling School in Nanjing. Was approached by a friend to contact Makerspace managers in St. Thomas and Toronto. Arranged a meeting with the makerspace managers at Western University. OSE Marlin v18.10 works for printing with new printer. Successfully printed base layer of a file.  It seems that the extruder may have jammed.  Will check again as soon as possible. LIA students continue to develop their FreeCAD skills and are able to design parts in parallel according to a spacial plan and assemble them into a larger model. Installed OSE Linux on laptop now with a new old-school 1TcB hard drive. OSE Linux did not recognise the card reader; everything else seems to work very well. &amp;lt;strong&amp;gt;Note: Stepper motors on y axis of D3D became alarmingly hot after about 15 minutes of printing.&amp;lt;/strong&amp;gt; Perhaps this is a configuration issue; may need to resolve this before allowing the printer to do a full print.&lt;br /&gt;
&lt;br /&gt;
=December 7, 2018= &lt;br /&gt;
Using OSE Ubuntu on laptop with fried SSD. Internet has connection through ping but does not display pages in Chromium. D3D Marlin recent version from OSE website installed in printer. Autohome produces a collision of the z axis with the extruder as by default the z probe is off the plate.  Tried to move the y axis using various commands such as G0 Y40 and G1 Y40 all of which cause the Y axis to move until it hits the maximum physically possible position. Spoke with Johann Wong about the possibility of combining an OSE Makerspace skills (Arduino, CAD, etc.) + 3D printer workshop with Human Innovation PIE&#039;s soft skills innovation workshop through the London International Academy Foundation. Was using wrong Marlin file for D3D printer - will try correct one asap. Suggestions for D3D: use zip ties and clothespin springs for tensioning belts.  This has worked exceptionally well and reliably for our Chinese Prusa derivative; the belts have needed nearly no attention in three years.&lt;br /&gt;
&lt;br /&gt;
=December 6, 2018=&lt;br /&gt;
Was about to test print on OSE D3D when SSD crashed.  Did Ubuntu fry it?  Researching this.&lt;br /&gt;
&lt;br /&gt;
=December 5, 2018=&lt;br /&gt;
Introduced the OSE design challenge to OSE Club students at London International Academy.&lt;br /&gt;
&lt;br /&gt;
=December 4, 2018= &lt;br /&gt;
Held an informal Introduction to Arduino Workshop at London International Academy to help two grade 11 students with a project.  Spoke with Marcin about plans for the OSE design challenge, OSE club and possibility of a summer camp at FeF in May or June of 2019.&lt;br /&gt;
&lt;br /&gt;
=December 2, 2018=&lt;br /&gt;
 Created a document outlining a framework for OSL - Open Source London and shared it on Google Docs; visited Charlie to discuss the document.&lt;br /&gt;
&lt;br /&gt;
=November 29, 2018=&lt;br /&gt;
 Introduced OSE 3D Printer and Prusa i3 3D printer to parents and students at a local French Immersion school - PAFI.  Designed and printed various models using Blender and Repetier.&lt;br /&gt;
&lt;br /&gt;
=November 28, 2018=&lt;br /&gt;
*Updated OSECartCoin with letters. &lt;br /&gt;
**[[File:PAFI.stl]]&lt;br /&gt;
**[[File:PAFI.fcstd]]&lt;br /&gt;
*Call with Marcin regarding &#039;&#039;&#039;[[LIA OSE Club]]&#039;&#039;&#039;&lt;br /&gt;
*Build from last week - [https://www.facebook.com/groups/398759490316633/permalink/963594880499755/]&lt;br /&gt;
&lt;br /&gt;
=November 27, 2018=&lt;br /&gt;
Wrote the suggested intro to Marcin&#039;s next TED talk: [[Marcin&#039;s Next TED Talk]]&lt;br /&gt;
=November 26, 2018=&lt;br /&gt;
Uploaded FeF Brick Press Fabrication video from July 29, 2011 - [https://youtu.be/LwW8sOUO00s]&lt;br /&gt;
&amp;lt;p&amp;gt;Uploaded video of the &amp;quot;Cluckaphone&amp;quot; - July 29, 2011 - [https://www.youtube.com/watch?v=PNOhZX7ftLk&amp;amp;feature=youtu.be]&lt;br /&gt;
Call with Marcin, Catarina and Charlie - OSE Planning&lt;br /&gt;
&lt;br /&gt;
=November 25, 2018=&lt;br /&gt;
Consultation about the establishment of an OSE Club at London International Academy and future directions for the development of OSE Clubs and Makerspaces.&lt;br /&gt;
&lt;br /&gt;
=November 24, 2018=&lt;br /&gt;
We made an OSE Cart Coin with FreeCAD &lt;br /&gt;
Here are the files for OSE Cart Coin v0.1:&lt;br /&gt;
[[File:OSECartCoin.fcstd]]&lt;br /&gt;
[[File:OSECartCoin.stl]]&lt;br /&gt;
Attended Marcin&#039;s presentation entitled &amp;quot;Education for the Open Source Economy&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=November 23, 2018=&lt;br /&gt;
Built a an OSE 3D printer at London International Academy&lt;br /&gt;
&lt;br /&gt;
=November 23-25=&lt;br /&gt;
Attended first OSE Professional Development workshop at London International Academy with Charles Freer, Pascal Gingras, Marcin and Catarina.&lt;br /&gt;
&lt;br /&gt;
=November 18-22= &lt;br /&gt;
Prepared for the visit of Marcin and Catarina to London.&lt;br /&gt;
&lt;br /&gt;
=November 17, 2018=&lt;br /&gt;
Conversation about OSE development with Charlie.  In particular, discussion about education and its relationship to developing the capacity to lead a meaningful and productive life. Reference to overlap of Baha&#039;i means and principles with those of the OSE - elimination of the extremes of wealth and poverty, building capabilities in a population, individual agency and initiative within a systematically evolving framework, etc.&lt;br /&gt;
&lt;br /&gt;
=November 16, 2018=&lt;br /&gt;
*Received US $5000 Shuttleworth Foundation Flash Grant&lt;br /&gt;
*Conference call with Marcin and Charles Freer regarding Marcin and Catarina&#039;s upcoming visit to London, Ontario&lt;br /&gt;
&lt;br /&gt;
=November 15, 2018=&lt;br /&gt;
Engineering Club students designed and printed a part to add to the Lyman Filament Extruder repository - a bracket for a rocker switch&lt;br /&gt;
&lt;br /&gt;
[[File:SwitchBracket2.png]]&lt;br /&gt;
[[File:Switchbase2.stl]]&lt;br /&gt;
[[File:SwitchBracket.FCStd]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=May, 2012=&lt;br /&gt;
Started project to build metric version of OSE CEB Press in Nanjing, China&lt;br /&gt;
&lt;br /&gt;
=April, 2012=&lt;br /&gt;
Began 3D Printing project in physics class at London International Academy&lt;br /&gt;
&lt;br /&gt;
=July, 2011-October, 2018=&lt;br /&gt;
Many things happened including severe neglect of the OSE wiki&lt;br /&gt;
Some highlights:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Regular incorporation of OSE concepts into classes and presentations 2011-present&lt;br /&gt;
*May, 2013 - started collaboration with Human InnovationPIE, a London non-profit organization focused on providing soft skills education for innovation.&lt;br /&gt;
*April, 2014 - Recognized in local paper for 3D Printer build with students&lt;br /&gt;
*July, 2015 - Asked to start STEM program at London International Academy further to success and popularity of 3D printer project&lt;br /&gt;
*September, 2015 - Began building Farmbot with students&lt;br /&gt;
*January, 2017 - Began teaching an Introduction to STEM course at Western University with significant OSE-based content.&lt;br /&gt;
&lt;br /&gt;
=July 16, 2011=&lt;br /&gt;
Arrived at Factor e Farm with Haydar Neal&lt;br /&gt;
&lt;br /&gt;
=March,  2011=&lt;br /&gt;
Saw TED Talk and wrote away to Marcin immediately&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=OSE_Prusa&amp;diff=204716</id>
		<title>OSE Prusa</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=OSE_Prusa&amp;diff=204716"/>
		<updated>2019-12-05T19:15:03Z</updated>

		<summary type="html">&lt;p&gt;Wneal: /* Bill of Materials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=OSE Prusa=&lt;br /&gt;
Based on a Chinese version of the Prusa i3 printer, this represents a simple and low-part-count option for the Open Source Ecology product system. (Nov. 22, 2019 We are in the process of replicating this printer and will assemble it in Guyana in late November, 2019.)&lt;br /&gt;
[https://photos.app.goo.gl/kMcaP3xVbS65nSns9 OSE Prusa Slideshow]&lt;br /&gt;
&lt;br /&gt;
=Bill of Materials=&lt;br /&gt;
[https://docs.google.com/spreadsheets/d/148mDOMKK5PmyQCcDgddZVEb9jIzrWAqZG4GRGYTVFIg/edit?usp=sharing OSE Prusa Bill of Materials]&lt;br /&gt;
&lt;br /&gt;
=Build Instructions=&lt;br /&gt;
#Purchase and organize all parts from the Bill of Materials. &lt;br /&gt;
#Follow the suggested directions in the following sections:&lt;br /&gt;
==Frame==&lt;br /&gt;
#Make cuts in the 20mmx20mm aluminum extrusions: 400mmx3; 250mm*2; 320mm*2&lt;br /&gt;
#Slide T-Nuts for the Y Axis Idler, Motor Mount and Mounting Brackets onto the 250mm aluminum extrusions&lt;br /&gt;
#Slide T-Nuts for the Z-Axis Motor Mounts and Vertical Frame Mounts on two 400mm aluminum extrusions&lt;br /&gt;
#Complete the 290mmx400mm horizontal frame by assembling a rectangle using the 290mm and 400mm extrusions and four corner brackets.&lt;br /&gt;
#Place three corner brackets and one printer foot / printer foot bracket as feet for the horizontal frame.&lt;br /&gt;
==X-Axis==&lt;br /&gt;
#Attach the X-Axis Motor to the X-Axis Motor Mount.&lt;br /&gt;
#Place three LM8UU Linear Bearings in the X-Axis Carriage Bracket and fasten them in place with small zip ties.&lt;br /&gt;
#Attach the X-Axis Motor Mount and X-Axis Carriage Bracket to the X-Axis Motor with two 8mm smooth rods (300mm).&lt;br /&gt;
&lt;br /&gt;
==Y-Axis==&lt;br /&gt;
#Attach the Y-Axis Motor to the Y Axis Motor Mount and both onto the Horizontal Frame.&lt;br /&gt;
#Attach the Y-Axis Pulley to the Y Axis Idler Using an M5 bolt and nut.&lt;br /&gt;
#Attach the Y-Axis Idler to the Horizontal Frame.&lt;br /&gt;
#Assemble two 320mm extrusions with one 400mm extrusion to form the vertical frame.&lt;br /&gt;
#Attach the Vertical Frame to the Horizontal Frame using two corner brackets and T-Nuts.&lt;br /&gt;
#Attach LM8UU bearings to each of the Bed Mounting Brackets using Zip Ties.&lt;br /&gt;
#Attach the Bed Mounting Brackets and Y-Axis Belt Holder to the aluminum bed plate.&lt;br /&gt;
#Slide two 8mm rods through the LM8UU bearings.&lt;br /&gt;
#Attach the Aluminum Bed Plate to the Horizontal Frame using the Y Axis Mounting Brackets.  Make sure they are parallel and that the bed slides easily before tightening the screws.&lt;br /&gt;
#Attach the Y Axis Belt around the Y-Axis Motor, Idler and Belt Holder.&lt;br /&gt;
#Use small Zip Ties to hold the Y-Axis Belt in place with reasonable tension.&lt;br /&gt;
#Further tension the Y-Axis Belt with a Clothes Pin Spring.&lt;br /&gt;
==Z-Axis==&lt;br /&gt;
#Attach the Z-Axis Top Left and Right Brackets to the front of the Vertical Frame Crossbar using T-Nuts.&lt;br /&gt;
#Attach the Z-Axis Motors to the Z-Axis Motor Mounts using M3 bolts.&lt;br /&gt;
#Attach the Z-Axis Couplers to the Z-Axis Acme Rods using the associated set-screws.&lt;br /&gt;
#Place the Z-Axis Couplers on the Z-Axis Motor Axles.&lt;br /&gt;
#Place the 8mm Smooth Rods in the related holes on the Z-Axis Motor Mounts.&lt;br /&gt;
#Place the Brass Nuts of X-Axis on the Z-Axis by turning the Z-Axis Acme Rods.&lt;br /&gt;
#Place the Z-Axis Smooth Rods in the related holes on the Top Left and Right Brackets.&lt;br /&gt;
#Tighten the Top Left and Right Brackets when you have made the Z-Axis Vertical and ensured that the X-Axis may move smoothly up and down.&lt;br /&gt;
&lt;br /&gt;
==Extruder==&lt;br /&gt;
#Attach the Aluminum Extruder Block to the lower two holes of the Extruder Motor and Extruder Mounting Bracket using M3 screws.&lt;br /&gt;
#Attach the Extruder Tube through the 6mm threaded hole of the Aluminum Extruder Block.&lt;br /&gt;
#Wind two 6mm nuts up the Extruder Tube to make sure that it stays in place.  The top of the Extruder Tube should be even with the top of the Aluminum Extruder Block.&lt;br /&gt;
#Attach the Extruder Heater Block and Brass Nozzle to the Extruder Tube.&lt;br /&gt;
#Attach the Extruder Idler to the Extruder Idler Bracket using an M4 screw and Nut&lt;br /&gt;
#Attach the Extruder Bracket and Idler Bracket to the two top holes of the Extruder Motor using M3 screws.&lt;br /&gt;
#Place the Extruder Tensioner Spring in the Extruder between the Idler Bracket and the Extruder Bracket.&lt;br /&gt;
&lt;br /&gt;
==Electronics==&lt;br /&gt;
#Solder wires on the Heated Bed.&lt;br /&gt;
#Attach the Bed Thermistor to the Heated Bed&lt;br /&gt;
#Place the Heating Resistor in the Extruder Heater Block.&lt;br /&gt;
#Place the Extruder Thermistor in the Extruder Heater Block.&lt;br /&gt;
#Place the X, Y and Z End-Stops in their Respective Positions on the Printer.&lt;br /&gt;
#Prepare a Power Cable for the Power Supply.&lt;br /&gt;
#Prepare Wires to run from the Power Supply to the RAMPS Board.&lt;br /&gt;
#Prepare the Pololu Heat Sinks for the Pololu Drivers&lt;br /&gt;
#Carefully Insert the Pololus in Position on the RAMPS Board.&lt;br /&gt;
#Place the RAMPS Board on the Arduino.&lt;br /&gt;
#Place the RAMPS and Arduino on the Back of the Vertical Frame Using the T-Nuts (already on the vertical frame) and M4 screws.&lt;br /&gt;
#Run the wires of each electronics device along the frame to the RAMPS Board.  Wrap the Extruder Wires and Y-Axis Wires in a Spiral Cable Carrier. Attach the wires neatly and securely to the framw using zip ties.&lt;br /&gt;
#Attach all wires to the RAMPS Board.&lt;br /&gt;
&lt;br /&gt;
=Part Library=&lt;br /&gt;
&lt;br /&gt;
Here are the parts for the printer: (Nov. 23, 2019 - Note that the Y Belt Holder still needs to be drawn up in FreeCAD; we are still working on some minor edits to some of the parts - for the moment, we are drilling some holes in them for example)&lt;br /&gt;
&amp;lt;gallery perrow=6&amp;gt;&lt;br /&gt;
File:OSEPrusaXAxisIdler.png|&#039;&#039;&#039;OSE Prusa X Axis Idler&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisIdler.FCStd]]&lt;br /&gt;
File:OSEPrusaXAxisMotorMount.png|&#039;&#039;&#039;OSE Prusa X Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisMotorMount.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaYAxisIdler.png|&#039;&#039;&#039;OSE Prusa Y Axis Idler&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYAxisIdler.FCStd]]&lt;br /&gt;
File:OSEPrusaYAxisMotorMount.png&#039;&#039;&#039;OSE Prusa Y Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisMotorMount.FCStd]]&lt;br /&gt;
File:OSEPrusaYAxisBracket.png&#039;&#039;&#039;OSE Prusa Y Axis Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYAxisBracket.FCStd]]&lt;br /&gt;
File:OSEPrusaYBeltHolder.png|&#039;&#039;&#039;OSE Prusa Y Belt Holder&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYBeltHolder.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaZAxisMotorMount.png|&#039;&#039;&#039;OSE Prusa Z Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisMotorMount.FCStd]]&lt;br /&gt;
File:OSEPrusaTopLeftBracket.png|&#039;&#039;&#039;OSE Prusa Top Left Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisTopBracketLR.FCStd]]&lt;br /&gt;
File:OSEPrusaTopRightBracket.png|&#039;&#039;&#039;OSE Prusa Top Right Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisTopBracketLR.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaPrinterFoot.png|&#039;&#039;&#039;OSE Prusa Printer Foot&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaPrinterFoot.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaBedBracket.png|&#039;&#039;&#039;OSE Prusa Bed Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaBedBracket.FCStd]]&lt;br /&gt;
File:OSEPrusaBedPlate.png|&#039;&#039;&#039; OSE Prusa Bed Plate&#039;&#039;&#039; - FreeCad = [[File:OSEPrusaBedPlate.FCStd]]&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
==Extruder==&lt;br /&gt;
This printer makes use of the OSE D3D [[Simple Extruder]]&lt;br /&gt;
&lt;br /&gt;
==Build Notes - December 1, 2019==&lt;br /&gt;
*The build was completed relatively quickly despite the fact that the printed parts were all first prototype copies.  Most of the bolt holes had to be drilled slightly.  There were several other parts that needed additional holes drilled:&lt;br /&gt;
&lt;br /&gt;
===3D Printing Issues===&lt;br /&gt;
#X-Axis Motor Mount - Additional hole to allow for the smooth rod to pass through. Enlarge motor mount holes. Increase diameter of brass nut holes (4 for 3m bolts and one for the brass nut itself)&lt;br /&gt;
#X-Axis Idler - Additional hole to allow for the smooth rod to pass through. Enlarge holes for bearing bolt. Increase diameter of brass nut holes (4 for 3m bolts and one for the brass nut itself)&lt;br /&gt;
#Extruder Mount Bracket - increase the width of the GT2 belt slightly&lt;br /&gt;
#Y-Axis Motor Mount - Increase hole diameter of motor mount holes.&lt;br /&gt;
#Y-Axis Idler - increase diameter of holes for the bearing bolt&lt;br /&gt;
#Z-Axis Top Brackets - 4mm holes for attachment to frame&lt;br /&gt;
#Z-Axis Motor Mounts - 3mm holes need to enlarge.&lt;br /&gt;
#Bed Brackets - Small notches for zip ties.&lt;br /&gt;
===Other Issues===&lt;br /&gt;
#Extruder Aluminum Block - Holes were not quite the right separation - had to be drilled slightly&lt;br /&gt;
&lt;br /&gt;
==Notes for Tiffany and Ganesh==&lt;br /&gt;
*to prepare the OSE Prusa for its first print test.&lt;br /&gt;
*Here is a checklist of items to prepare:&lt;br /&gt;
#Install the spring on the extruder.   &lt;br /&gt;
##The idler bracket may need to be removed to do so.&lt;br /&gt;
##If the spring is too tight, the extruder motor may not be able to turn.&lt;br /&gt;
###Try increasing the extruder Pololu voltage to some value between 0.5V and 1.0V if this is the case (keep the voltage as low as possible)&lt;br /&gt;
##If the spring is too loose, the gear will slip on the filament.  Try putting a small object under the spring to slightly increase its tension.&lt;br /&gt;
#Slightly shorten a few of the screws on the Extruder.&lt;br /&gt;
#Solder the two fans with longer wires.  Cut the fan wire and solder the longer piece in between so that you may plug the Extruder fan to the board at the D9 terminals.&lt;br /&gt;
#Position the large fan on the top frame crossbar at a 45 degree angle from vertical, directed towards the RAMPS and Arduino.  Plug the large fan directly into the 12V power supply.&lt;br /&gt;
#Tighten the springs on the printer bed so that it stays in place as the Y-Axis moves&lt;br /&gt;
#Fasten the power supply to the side of the printer.&lt;br /&gt;
#Run the Z-Axis motor wires and Endstop Wires along the frame and secure them with Zip Ties&lt;br /&gt;
#Create a roller for the filament. A metre stick suspended by two boxes may act as a quick start in this regard.&lt;br /&gt;
#Realign and reposition the Z-Axis Endstop so that the extruder tip stops just above the printer bed.&lt;br /&gt;
#Cover the bed with masking tape.&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=OSE_Prusa&amp;diff=204566</id>
		<title>OSE Prusa</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=OSE_Prusa&amp;diff=204566"/>
		<updated>2019-12-02T21:41:37Z</updated>

		<summary type="html">&lt;p&gt;Wneal: /* Notes for Tiffany and Ganesh */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=OSE Prusa=&lt;br /&gt;
Based on a Chinese version of the Prusa i3 printer, this represents a simple and low-part-count option for the Open Source Ecology product system. (Nov. 22, 2019 We are in the process of replicating this printer and will assemble it in Guyana in late November, 2019.)&lt;br /&gt;
[https://photos.app.goo.gl/kMcaP3xVbS65nSns9 OSE Prusa Slideshow]&lt;br /&gt;
&lt;br /&gt;
=Bill of Materials=&lt;br /&gt;
[https://www.amazon.ca/gp/product/B01BZ5ND8O/ref=ppx_od_dt_b_asin_title_s00?ie=UTF8&amp;amp;psc=1 OSE Prusa Bill of Materials]&lt;br /&gt;
&lt;br /&gt;
=Build Instructions=&lt;br /&gt;
#Purchase and organize all parts from the Bill of Materials. &lt;br /&gt;
#Follow the suggested directions in the following sections:&lt;br /&gt;
==Frame==&lt;br /&gt;
#Make cuts in the 20mmx20mm aluminum extrusions: 400mmx3; 250mm*2; 320mm*2&lt;br /&gt;
#Slide T-Nuts for the Y Axis Idler, Motor Mount and Mounting Brackets onto the 250mm aluminum extrusions&lt;br /&gt;
#Slide T-Nuts for the Z-Axis Motor Mounts and Vertical Frame Mounts on two 400mm aluminum extrusions&lt;br /&gt;
#Complete the 290mmx400mm horizontal frame by assembling a rectangle using the 290mm and 400mm extrusions and four corner brackets.&lt;br /&gt;
#Place three corner brackets and one printer foot / printer foot bracket as feet for the horizontal frame.&lt;br /&gt;
==X-Axis==&lt;br /&gt;
#Attach the X-Axis Motor to the X-Axis Motor Mount.&lt;br /&gt;
#Place three LM8UU Linear Bearings in the X-Axis Carriage Bracket and fasten them in place with small zip ties.&lt;br /&gt;
#Attach the X-Axis Motor Mount and X-Axis Carriage Bracket to the X-Axis Motor with two 8mm smooth rods (300mm).&lt;br /&gt;
&lt;br /&gt;
==Y-Axis==&lt;br /&gt;
#Attach the Y-Axis Motor to the Y Axis Motor Mount and both onto the Horizontal Frame.&lt;br /&gt;
#Attach the Y-Axis Pulley to the Y Axis Idler Using an M5 bolt and nut.&lt;br /&gt;
#Attach the Y-Axis Idler to the Horizontal Frame.&lt;br /&gt;
#Assemble two 320mm extrusions with one 400mm extrusion to form the vertical frame.&lt;br /&gt;
#Attach the Vertical Frame to the Horizontal Frame using two corner brackets and T-Nuts.&lt;br /&gt;
#Attach LM8UU bearings to each of the Bed Mounting Brackets using Zip Ties.&lt;br /&gt;
#Attach the Bed Mounting Brackets and Y-Axis Belt Holder to the aluminum bed plate.&lt;br /&gt;
#Slide two 8mm rods through the LM8UU bearings.&lt;br /&gt;
#Attach the Aluminum Bed Plate to the Horizontal Frame using the Y Axis Mounting Brackets.  Make sure they are parallel and that the bed slides easily before tightening the screws.&lt;br /&gt;
#Attach the Y Axis Belt around the Y-Axis Motor, Idler and Belt Holder.&lt;br /&gt;
#Use small Zip Ties to hold the Y-Axis Belt in place with reasonable tension.&lt;br /&gt;
#Further tension the Y-Axis Belt with a Clothes Pin Spring.&lt;br /&gt;
==Z-Axis==&lt;br /&gt;
#Attach the Z-Axis Top Left and Right Brackets to the front of the Vertical Frame Crossbar using T-Nuts.&lt;br /&gt;
#Attach the Z-Axis Motors to the Z-Axis Motor Mounts using M3 bolts.&lt;br /&gt;
#Attach the Z-Axis Couplers to the Z-Axis Acme Rods using the associated set-screws.&lt;br /&gt;
#Place the Z-Axis Couplers on the Z-Axis Motor Axles.&lt;br /&gt;
#Place the 8mm Smooth Rods in the related holes on the Z-Axis Motor Mounts.&lt;br /&gt;
#Place the Brass Nuts of X-Axis on the Z-Axis by turning the Z-Axis Acme Rods.&lt;br /&gt;
#Place the Z-Axis Smooth Rods in the related holes on the Top Left and Right Brackets.&lt;br /&gt;
#Tighten the Top Left and Right Brackets when you have made the Z-Axis Vertical and ensured that the X-Axis may move smoothly up and down.&lt;br /&gt;
&lt;br /&gt;
==Extruder==&lt;br /&gt;
#Attach the Aluminum Extruder Block to the lower two holes of the Extruder Motor and Extruder Mounting Bracket using M3 screws.&lt;br /&gt;
#Attach the Extruder Tube through the 6mm threaded hole of the Aluminum Extruder Block.&lt;br /&gt;
#Wind two 6mm nuts up the Extruder Tube to make sure that it stays in place.  The top of the Extruder Tube should be even with the top of the Aluminum Extruder Block.&lt;br /&gt;
#Attach the Extruder Heater Block and Brass Nozzle to the Extruder Tube.&lt;br /&gt;
#Attach the Extruder Idler to the Extruder Idler Bracket using an M4 screw and Nut&lt;br /&gt;
#Attach the Extruder Bracket and Idler Bracket to the two top holes of the Extruder Motor using M3 screws.&lt;br /&gt;
#Place the Extruder Tensioner Spring in the Extruder between the Idler Bracket and the Extruder Bracket.&lt;br /&gt;
&lt;br /&gt;
==Electronics==&lt;br /&gt;
#Solder wires on the Heated Bed.&lt;br /&gt;
#Attach the Bed Thermistor to the Heated Bed&lt;br /&gt;
#Place the Heating Resistor in the Extruder Heater Block.&lt;br /&gt;
#Place the Extruder Thermistor in the Extruder Heater Block.&lt;br /&gt;
#Place the X, Y and Z End-Stops in their Respective Positions on the Printer.&lt;br /&gt;
#Prepare a Power Cable for the Power Supply.&lt;br /&gt;
#Prepare Wires to run from the Power Supply to the RAMPS Board.&lt;br /&gt;
#Prepare the Pololu Heat Sinks for the Pololu Drivers&lt;br /&gt;
#Carefully Insert the Pololus in Position on the RAMPS Board.&lt;br /&gt;
#Place the RAMPS Board on the Arduino.&lt;br /&gt;
#Place the RAMPS and Arduino on the Back of the Vertical Frame Using the T-Nuts (already on the vertical frame) and M4 screws.&lt;br /&gt;
#Run the wires of each electronics device along the frame to the RAMPS Board.  Wrap the Extruder Wires and Y-Axis Wires in a Spiral Cable Carrier. Attach the wires neatly and securely to the framw using zip ties.&lt;br /&gt;
#Attach all wires to the RAMPS Board.&lt;br /&gt;
&lt;br /&gt;
=Part Library=&lt;br /&gt;
&lt;br /&gt;
Here are the parts for the printer: (Nov. 23, 2019 - Note that the Y Belt Holder still needs to be drawn up in FreeCAD; we are still working on some minor edits to some of the parts - for the moment, we are drilling some holes in them for example)&lt;br /&gt;
&amp;lt;gallery perrow=6&amp;gt;&lt;br /&gt;
File:OSEPrusaXAxisIdler.png|&#039;&#039;&#039;OSE Prusa X Axis Idler&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisIdler.FCStd]]&lt;br /&gt;
File:OSEPrusaXAxisMotorMount.png|&#039;&#039;&#039;OSE Prusa X Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisMotorMount.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaYAxisIdler.png|&#039;&#039;&#039;OSE Prusa Y Axis Idler&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYAxisIdler.FCStd]]&lt;br /&gt;
File:OSEPrusaYAxisMotorMount.png&#039;&#039;&#039;OSE Prusa Y Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisMotorMount.FCStd]]&lt;br /&gt;
File:OSEPrusaYAxisBracket.png&#039;&#039;&#039;OSE Prusa Y Axis Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYAxisBracket.FCStd]]&lt;br /&gt;
File:OSEPrusaYBeltHolder.png|&#039;&#039;&#039;OSE Prusa Y Belt Holder&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYBeltHolder.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaZAxisMotorMount.png|&#039;&#039;&#039;OSE Prusa Z Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisMotorMount.FCStd]]&lt;br /&gt;
File:OSEPrusaTopLeftBracket.png|&#039;&#039;&#039;OSE Prusa Top Left Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisTopBracketLR.FCStd]]&lt;br /&gt;
File:OSEPrusaTopRightBracket.png|&#039;&#039;&#039;OSE Prusa Top Right Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisTopBracketLR.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaPrinterFoot.png|&#039;&#039;&#039;OSE Prusa Printer Foot&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaPrinterFoot.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaBedBracket.png|&#039;&#039;&#039;OSE Prusa Bed Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaBedBracket.FCStd]]&lt;br /&gt;
File:OSEPrusaBedPlate.png|&#039;&#039;&#039; OSE Prusa Bed Plate&#039;&#039;&#039; - FreeCad = [[File:OSEPrusaBedPlate.FCStd]]&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
==Extruder==&lt;br /&gt;
This printer makes use of the OSE D3D [[Simple Extruder]]&lt;br /&gt;
&lt;br /&gt;
==Build Notes - December 1, 2019==&lt;br /&gt;
*The build was completed relatively quickly despite the fact that the printed parts were all first prototype copies.  Most of the bolt holes had to be drilled slightly.  There were several other parts that needed additional holes drilled:&lt;br /&gt;
&lt;br /&gt;
===3D Printing Issues===&lt;br /&gt;
#X-Axis Motor Mount - Additional hole to allow for the smooth rod to pass through. Enlarge motor mount holes. Increase diameter of brass nut holes (4 for 3m bolts and one for the brass nut itself)&lt;br /&gt;
#X-Axis Idler - Additional hole to allow for the smooth rod to pass through. Enlarge holes for bearing bolt. Increase diameter of brass nut holes (4 for 3m bolts and one for the brass nut itself)&lt;br /&gt;
#Extruder Mount Bracket - increase the width of the GT2 belt slightly&lt;br /&gt;
#Y-Axis Motor Mount - Increase hole diameter of motor mount holes.&lt;br /&gt;
#Y-Axis Idler - increase diameter of holes for the bearing bolt&lt;br /&gt;
#Z-Axis Top Brackets - 4mm holes for attachment to frame&lt;br /&gt;
#Z-Axis Motor Mounts - 3mm holes need to enlarge.&lt;br /&gt;
#Bed Brackets - Small notches for zip ties.&lt;br /&gt;
===Other Issues===&lt;br /&gt;
#Extruder Aluminum Block - Holes were not quite the right separation - had to be drilled slightly&lt;br /&gt;
&lt;br /&gt;
==Notes for Tiffany and Ganesh==&lt;br /&gt;
*to prepare the OSE Prusa for its first print test.&lt;br /&gt;
*Here is a checklist of items to prepare:&lt;br /&gt;
#Install the spring on the extruder.   &lt;br /&gt;
##The idler bracket may need to be removed to do so.&lt;br /&gt;
##If the spring is too tight, the extruder motor may not be able to turn.&lt;br /&gt;
###Try increasing the extruder Pololu voltage to some value between 0.5V and 1.0V if this is the case (keep the voltage as low as possible)&lt;br /&gt;
##If the spring is too loose, the gear will slip on the filament.  Try putting a small object under the spring to slightly increase its tension.&lt;br /&gt;
#Slightly shorten a few of the screws on the Extruder.&lt;br /&gt;
#Solder the two fans with longer wires.  Cut the fan wire and solder the longer piece in between so that you may plug the Extruder fan to the board at the D9 terminals.&lt;br /&gt;
#Position the large fan on the top frame crossbar at a 45 degree angle from vertical, directed towards the RAMPS and Arduino.  Plug the large fan directly into the 12V power supply.&lt;br /&gt;
#Tighten the springs on the printer bed so that it stays in place as the Y-Axis moves&lt;br /&gt;
#Fasten the power supply to the side of the printer.&lt;br /&gt;
#Run the Z-Axis motor wires and Endstop Wires along the frame and secure them with Zip Ties&lt;br /&gt;
#Create a roller for the filament. A metre stick suspended by two boxes may act as a quick start in this regard.&lt;br /&gt;
#Realign and reposition the Z-Axis Endstop so that the extruder tip stops just above the printer bed.&lt;br /&gt;
#Cover the bed with masking tape.&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=OSE_Prusa&amp;diff=204565</id>
		<title>OSE Prusa</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=OSE_Prusa&amp;diff=204565"/>
		<updated>2019-12-02T21:39:22Z</updated>

		<summary type="html">&lt;p&gt;Wneal: /* Notes for Tiffany and Ganesh */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=OSE Prusa=&lt;br /&gt;
Based on a Chinese version of the Prusa i3 printer, this represents a simple and low-part-count option for the Open Source Ecology product system. (Nov. 22, 2019 We are in the process of replicating this printer and will assemble it in Guyana in late November, 2019.)&lt;br /&gt;
[https://photos.app.goo.gl/kMcaP3xVbS65nSns9 OSE Prusa Slideshow]&lt;br /&gt;
&lt;br /&gt;
=Bill of Materials=&lt;br /&gt;
[https://www.amazon.ca/gp/product/B01BZ5ND8O/ref=ppx_od_dt_b_asin_title_s00?ie=UTF8&amp;amp;psc=1 OSE Prusa Bill of Materials]&lt;br /&gt;
&lt;br /&gt;
=Build Instructions=&lt;br /&gt;
#Purchase and organize all parts from the Bill of Materials. &lt;br /&gt;
#Follow the suggested directions in the following sections:&lt;br /&gt;
==Frame==&lt;br /&gt;
#Make cuts in the 20mmx20mm aluminum extrusions: 400mmx3; 250mm*2; 320mm*2&lt;br /&gt;
#Slide T-Nuts for the Y Axis Idler, Motor Mount and Mounting Brackets onto the 250mm aluminum extrusions&lt;br /&gt;
#Slide T-Nuts for the Z-Axis Motor Mounts and Vertical Frame Mounts on two 400mm aluminum extrusions&lt;br /&gt;
#Complete the 290mmx400mm horizontal frame by assembling a rectangle using the 290mm and 400mm extrusions and four corner brackets.&lt;br /&gt;
#Place three corner brackets and one printer foot / printer foot bracket as feet for the horizontal frame.&lt;br /&gt;
==X-Axis==&lt;br /&gt;
#Attach the X-Axis Motor to the X-Axis Motor Mount.&lt;br /&gt;
#Place three LM8UU Linear Bearings in the X-Axis Carriage Bracket and fasten them in place with small zip ties.&lt;br /&gt;
#Attach the X-Axis Motor Mount and X-Axis Carriage Bracket to the X-Axis Motor with two 8mm smooth rods (300mm).&lt;br /&gt;
&lt;br /&gt;
==Y-Axis==&lt;br /&gt;
#Attach the Y-Axis Motor to the Y Axis Motor Mount and both onto the Horizontal Frame.&lt;br /&gt;
#Attach the Y-Axis Pulley to the Y Axis Idler Using an M5 bolt and nut.&lt;br /&gt;
#Attach the Y-Axis Idler to the Horizontal Frame.&lt;br /&gt;
#Assemble two 320mm extrusions with one 400mm extrusion to form the vertical frame.&lt;br /&gt;
#Attach the Vertical Frame to the Horizontal Frame using two corner brackets and T-Nuts.&lt;br /&gt;
#Attach LM8UU bearings to each of the Bed Mounting Brackets using Zip Ties.&lt;br /&gt;
#Attach the Bed Mounting Brackets and Y-Axis Belt Holder to the aluminum bed plate.&lt;br /&gt;
#Slide two 8mm rods through the LM8UU bearings.&lt;br /&gt;
#Attach the Aluminum Bed Plate to the Horizontal Frame using the Y Axis Mounting Brackets.  Make sure they are parallel and that the bed slides easily before tightening the screws.&lt;br /&gt;
#Attach the Y Axis Belt around the Y-Axis Motor, Idler and Belt Holder.&lt;br /&gt;
#Use small Zip Ties to hold the Y-Axis Belt in place with reasonable tension.&lt;br /&gt;
#Further tension the Y-Axis Belt with a Clothes Pin Spring.&lt;br /&gt;
==Z-Axis==&lt;br /&gt;
#Attach the Z-Axis Top Left and Right Brackets to the front of the Vertical Frame Crossbar using T-Nuts.&lt;br /&gt;
#Attach the Z-Axis Motors to the Z-Axis Motor Mounts using M3 bolts.&lt;br /&gt;
#Attach the Z-Axis Couplers to the Z-Axis Acme Rods using the associated set-screws.&lt;br /&gt;
#Place the Z-Axis Couplers on the Z-Axis Motor Axles.&lt;br /&gt;
#Place the 8mm Smooth Rods in the related holes on the Z-Axis Motor Mounts.&lt;br /&gt;
#Place the Brass Nuts of X-Axis on the Z-Axis by turning the Z-Axis Acme Rods.&lt;br /&gt;
#Place the Z-Axis Smooth Rods in the related holes on the Top Left and Right Brackets.&lt;br /&gt;
#Tighten the Top Left and Right Brackets when you have made the Z-Axis Vertical and ensured that the X-Axis may move smoothly up and down.&lt;br /&gt;
&lt;br /&gt;
==Extruder==&lt;br /&gt;
#Attach the Aluminum Extruder Block to the lower two holes of the Extruder Motor and Extruder Mounting Bracket using M3 screws.&lt;br /&gt;
#Attach the Extruder Tube through the 6mm threaded hole of the Aluminum Extruder Block.&lt;br /&gt;
#Wind two 6mm nuts up the Extruder Tube to make sure that it stays in place.  The top of the Extruder Tube should be even with the top of the Aluminum Extruder Block.&lt;br /&gt;
#Attach the Extruder Heater Block and Brass Nozzle to the Extruder Tube.&lt;br /&gt;
#Attach the Extruder Idler to the Extruder Idler Bracket using an M4 screw and Nut&lt;br /&gt;
#Attach the Extruder Bracket and Idler Bracket to the two top holes of the Extruder Motor using M3 screws.&lt;br /&gt;
#Place the Extruder Tensioner Spring in the Extruder between the Idler Bracket and the Extruder Bracket.&lt;br /&gt;
&lt;br /&gt;
==Electronics==&lt;br /&gt;
#Solder wires on the Heated Bed.&lt;br /&gt;
#Attach the Bed Thermistor to the Heated Bed&lt;br /&gt;
#Place the Heating Resistor in the Extruder Heater Block.&lt;br /&gt;
#Place the Extruder Thermistor in the Extruder Heater Block.&lt;br /&gt;
#Place the X, Y and Z End-Stops in their Respective Positions on the Printer.&lt;br /&gt;
#Prepare a Power Cable for the Power Supply.&lt;br /&gt;
#Prepare Wires to run from the Power Supply to the RAMPS Board.&lt;br /&gt;
#Prepare the Pololu Heat Sinks for the Pololu Drivers&lt;br /&gt;
#Carefully Insert the Pololus in Position on the RAMPS Board.&lt;br /&gt;
#Place the RAMPS Board on the Arduino.&lt;br /&gt;
#Place the RAMPS and Arduino on the Back of the Vertical Frame Using the T-Nuts (already on the vertical frame) and M4 screws.&lt;br /&gt;
#Run the wires of each electronics device along the frame to the RAMPS Board.  Wrap the Extruder Wires and Y-Axis Wires in a Spiral Cable Carrier. Attach the wires neatly and securely to the framw using zip ties.&lt;br /&gt;
#Attach all wires to the RAMPS Board.&lt;br /&gt;
&lt;br /&gt;
=Part Library=&lt;br /&gt;
&lt;br /&gt;
Here are the parts for the printer: (Nov. 23, 2019 - Note that the Y Belt Holder still needs to be drawn up in FreeCAD; we are still working on some minor edits to some of the parts - for the moment, we are drilling some holes in them for example)&lt;br /&gt;
&amp;lt;gallery perrow=6&amp;gt;&lt;br /&gt;
File:OSEPrusaXAxisIdler.png|&#039;&#039;&#039;OSE Prusa X Axis Idler&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisIdler.FCStd]]&lt;br /&gt;
File:OSEPrusaXAxisMotorMount.png|&#039;&#039;&#039;OSE Prusa X Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisMotorMount.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaYAxisIdler.png|&#039;&#039;&#039;OSE Prusa Y Axis Idler&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYAxisIdler.FCStd]]&lt;br /&gt;
File:OSEPrusaYAxisMotorMount.png&#039;&#039;&#039;OSE Prusa Y Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisMotorMount.FCStd]]&lt;br /&gt;
File:OSEPrusaYAxisBracket.png&#039;&#039;&#039;OSE Prusa Y Axis Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYAxisBracket.FCStd]]&lt;br /&gt;
File:OSEPrusaYBeltHolder.png|&#039;&#039;&#039;OSE Prusa Y Belt Holder&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYBeltHolder.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaZAxisMotorMount.png|&#039;&#039;&#039;OSE Prusa Z Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisMotorMount.FCStd]]&lt;br /&gt;
File:OSEPrusaTopLeftBracket.png|&#039;&#039;&#039;OSE Prusa Top Left Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisTopBracketLR.FCStd]]&lt;br /&gt;
File:OSEPrusaTopRightBracket.png|&#039;&#039;&#039;OSE Prusa Top Right Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisTopBracketLR.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaPrinterFoot.png|&#039;&#039;&#039;OSE Prusa Printer Foot&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaPrinterFoot.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaBedBracket.png|&#039;&#039;&#039;OSE Prusa Bed Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaBedBracket.FCStd]]&lt;br /&gt;
File:OSEPrusaBedPlate.png|&#039;&#039;&#039; OSE Prusa Bed Plate&#039;&#039;&#039; - FreeCad = [[File:OSEPrusaBedPlate.FCStd]]&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
==Extruder==&lt;br /&gt;
This printer makes use of the OSE D3D [[Simple Extruder]]&lt;br /&gt;
&lt;br /&gt;
==Build Notes - December 1, 2019==&lt;br /&gt;
*The build was completed relatively quickly despite the fact that the printed parts were all first prototype copies.  Most of the bolt holes had to be drilled slightly.  There were several other parts that needed additional holes drilled:&lt;br /&gt;
&lt;br /&gt;
===3D Printing Issues===&lt;br /&gt;
#X-Axis Motor Mount - Additional hole to allow for the smooth rod to pass through. Enlarge motor mount holes. Increase diameter of brass nut holes (4 for 3m bolts and one for the brass nut itself)&lt;br /&gt;
#X-Axis Idler - Additional hole to allow for the smooth rod to pass through. Enlarge holes for bearing bolt. Increase diameter of brass nut holes (4 for 3m bolts and one for the brass nut itself)&lt;br /&gt;
#Extruder Mount Bracket - increase the width of the GT2 belt slightly&lt;br /&gt;
#Y-Axis Motor Mount - Increase hole diameter of motor mount holes.&lt;br /&gt;
#Y-Axis Idler - increase diameter of holes for the bearing bolt&lt;br /&gt;
#Z-Axis Top Brackets - 4mm holes for attachment to frame&lt;br /&gt;
#Z-Axis Motor Mounts - 3mm holes need to enlarge.&lt;br /&gt;
#Bed Brackets - Small notches for zip ties.&lt;br /&gt;
===Other Issues===&lt;br /&gt;
#Extruder Aluminum Block - Holes were not quite the right separation - had to be drilled slightly&lt;br /&gt;
&lt;br /&gt;
==Notes for Tiffany and Ganesh==&lt;br /&gt;
*to prepare the OSE Prusa for its first print test.&lt;br /&gt;
*Here is a checklist of items to prepare:&lt;br /&gt;
#Install the spring on the extruder.   &lt;br /&gt;
##The idler bracket may need to be removed to do so.&lt;br /&gt;
##If the spring is too tight, the extruder motor may not be able to turn.&lt;br /&gt;
###Try increasing the extruder Pololu voltage to some value between 0.5V and 1.0V if this is the case (keep the voltage as low as possible)&lt;br /&gt;
##If the spring is too loose, the gear will slip on the filament.  Try putting a small object under the spring to slightly increase its tension.&lt;br /&gt;
#Slightly shorten a few of the screws on the Extruder.&lt;br /&gt;
#Solder the two fans with longer wires.  Cut the fan wire and solder the longer piece in between so that you may plug the Extruder fan to the board at the D9 terminals.&lt;br /&gt;
#&lt;br /&gt;
#Tighten the springs on the printer bed so that it stays in place as the Y-Axis moves&lt;br /&gt;
#Fasten the power supply to the side of the printer.&lt;br /&gt;
#Run the Z-Axis motor wires and Endstop Wires along the frame and secure them with Zip Ties&lt;br /&gt;
#Create a roller for the filament. A metre stick suspended by two boxes may act as a quick start in this regard.&lt;br /&gt;
#Realign and reposition the Z-Axis Endstop so that the extruder tip stops just above the printer bed.&lt;br /&gt;
#Cover the bed with masking tape.&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=OSE_Prusa&amp;diff=204564</id>
		<title>OSE Prusa</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=OSE_Prusa&amp;diff=204564"/>
		<updated>2019-12-02T21:35:22Z</updated>

		<summary type="html">&lt;p&gt;Wneal: /* Other Issues */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=OSE Prusa=&lt;br /&gt;
Based on a Chinese version of the Prusa i3 printer, this represents a simple and low-part-count option for the Open Source Ecology product system. (Nov. 22, 2019 We are in the process of replicating this printer and will assemble it in Guyana in late November, 2019.)&lt;br /&gt;
[https://photos.app.goo.gl/kMcaP3xVbS65nSns9 OSE Prusa Slideshow]&lt;br /&gt;
&lt;br /&gt;
=Bill of Materials=&lt;br /&gt;
[https://www.amazon.ca/gp/product/B01BZ5ND8O/ref=ppx_od_dt_b_asin_title_s00?ie=UTF8&amp;amp;psc=1 OSE Prusa Bill of Materials]&lt;br /&gt;
&lt;br /&gt;
=Build Instructions=&lt;br /&gt;
#Purchase and organize all parts from the Bill of Materials. &lt;br /&gt;
#Follow the suggested directions in the following sections:&lt;br /&gt;
==Frame==&lt;br /&gt;
#Make cuts in the 20mmx20mm aluminum extrusions: 400mmx3; 250mm*2; 320mm*2&lt;br /&gt;
#Slide T-Nuts for the Y Axis Idler, Motor Mount and Mounting Brackets onto the 250mm aluminum extrusions&lt;br /&gt;
#Slide T-Nuts for the Z-Axis Motor Mounts and Vertical Frame Mounts on two 400mm aluminum extrusions&lt;br /&gt;
#Complete the 290mmx400mm horizontal frame by assembling a rectangle using the 290mm and 400mm extrusions and four corner brackets.&lt;br /&gt;
#Place three corner brackets and one printer foot / printer foot bracket as feet for the horizontal frame.&lt;br /&gt;
==X-Axis==&lt;br /&gt;
#Attach the X-Axis Motor to the X-Axis Motor Mount.&lt;br /&gt;
#Place three LM8UU Linear Bearings in the X-Axis Carriage Bracket and fasten them in place with small zip ties.&lt;br /&gt;
#Attach the X-Axis Motor Mount and X-Axis Carriage Bracket to the X-Axis Motor with two 8mm smooth rods (300mm).&lt;br /&gt;
&lt;br /&gt;
==Y-Axis==&lt;br /&gt;
#Attach the Y-Axis Motor to the Y Axis Motor Mount and both onto the Horizontal Frame.&lt;br /&gt;
#Attach the Y-Axis Pulley to the Y Axis Idler Using an M5 bolt and nut.&lt;br /&gt;
#Attach the Y-Axis Idler to the Horizontal Frame.&lt;br /&gt;
#Assemble two 320mm extrusions with one 400mm extrusion to form the vertical frame.&lt;br /&gt;
#Attach the Vertical Frame to the Horizontal Frame using two corner brackets and T-Nuts.&lt;br /&gt;
#Attach LM8UU bearings to each of the Bed Mounting Brackets using Zip Ties.&lt;br /&gt;
#Attach the Bed Mounting Brackets and Y-Axis Belt Holder to the aluminum bed plate.&lt;br /&gt;
#Slide two 8mm rods through the LM8UU bearings.&lt;br /&gt;
#Attach the Aluminum Bed Plate to the Horizontal Frame using the Y Axis Mounting Brackets.  Make sure they are parallel and that the bed slides easily before tightening the screws.&lt;br /&gt;
#Attach the Y Axis Belt around the Y-Axis Motor, Idler and Belt Holder.&lt;br /&gt;
#Use small Zip Ties to hold the Y-Axis Belt in place with reasonable tension.&lt;br /&gt;
#Further tension the Y-Axis Belt with a Clothes Pin Spring.&lt;br /&gt;
==Z-Axis==&lt;br /&gt;
#Attach the Z-Axis Top Left and Right Brackets to the front of the Vertical Frame Crossbar using T-Nuts.&lt;br /&gt;
#Attach the Z-Axis Motors to the Z-Axis Motor Mounts using M3 bolts.&lt;br /&gt;
#Attach the Z-Axis Couplers to the Z-Axis Acme Rods using the associated set-screws.&lt;br /&gt;
#Place the Z-Axis Couplers on the Z-Axis Motor Axles.&lt;br /&gt;
#Place the 8mm Smooth Rods in the related holes on the Z-Axis Motor Mounts.&lt;br /&gt;
#Place the Brass Nuts of X-Axis on the Z-Axis by turning the Z-Axis Acme Rods.&lt;br /&gt;
#Place the Z-Axis Smooth Rods in the related holes on the Top Left and Right Brackets.&lt;br /&gt;
#Tighten the Top Left and Right Brackets when you have made the Z-Axis Vertical and ensured that the X-Axis may move smoothly up and down.&lt;br /&gt;
&lt;br /&gt;
==Extruder==&lt;br /&gt;
#Attach the Aluminum Extruder Block to the lower two holes of the Extruder Motor and Extruder Mounting Bracket using M3 screws.&lt;br /&gt;
#Attach the Extruder Tube through the 6mm threaded hole of the Aluminum Extruder Block.&lt;br /&gt;
#Wind two 6mm nuts up the Extruder Tube to make sure that it stays in place.  The top of the Extruder Tube should be even with the top of the Aluminum Extruder Block.&lt;br /&gt;
#Attach the Extruder Heater Block and Brass Nozzle to the Extruder Tube.&lt;br /&gt;
#Attach the Extruder Idler to the Extruder Idler Bracket using an M4 screw and Nut&lt;br /&gt;
#Attach the Extruder Bracket and Idler Bracket to the two top holes of the Extruder Motor using M3 screws.&lt;br /&gt;
#Place the Extruder Tensioner Spring in the Extruder between the Idler Bracket and the Extruder Bracket.&lt;br /&gt;
&lt;br /&gt;
==Electronics==&lt;br /&gt;
#Solder wires on the Heated Bed.&lt;br /&gt;
#Attach the Bed Thermistor to the Heated Bed&lt;br /&gt;
#Place the Heating Resistor in the Extruder Heater Block.&lt;br /&gt;
#Place the Extruder Thermistor in the Extruder Heater Block.&lt;br /&gt;
#Place the X, Y and Z End-Stops in their Respective Positions on the Printer.&lt;br /&gt;
#Prepare a Power Cable for the Power Supply.&lt;br /&gt;
#Prepare Wires to run from the Power Supply to the RAMPS Board.&lt;br /&gt;
#Prepare the Pololu Heat Sinks for the Pololu Drivers&lt;br /&gt;
#Carefully Insert the Pololus in Position on the RAMPS Board.&lt;br /&gt;
#Place the RAMPS Board on the Arduino.&lt;br /&gt;
#Place the RAMPS and Arduino on the Back of the Vertical Frame Using the T-Nuts (already on the vertical frame) and M4 screws.&lt;br /&gt;
#Run the wires of each electronics device along the frame to the RAMPS Board.  Wrap the Extruder Wires and Y-Axis Wires in a Spiral Cable Carrier. Attach the wires neatly and securely to the framw using zip ties.&lt;br /&gt;
#Attach all wires to the RAMPS Board.&lt;br /&gt;
&lt;br /&gt;
=Part Library=&lt;br /&gt;
&lt;br /&gt;
Here are the parts for the printer: (Nov. 23, 2019 - Note that the Y Belt Holder still needs to be drawn up in FreeCAD; we are still working on some minor edits to some of the parts - for the moment, we are drilling some holes in them for example)&lt;br /&gt;
&amp;lt;gallery perrow=6&amp;gt;&lt;br /&gt;
File:OSEPrusaXAxisIdler.png|&#039;&#039;&#039;OSE Prusa X Axis Idler&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisIdler.FCStd]]&lt;br /&gt;
File:OSEPrusaXAxisMotorMount.png|&#039;&#039;&#039;OSE Prusa X Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisMotorMount.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaYAxisIdler.png|&#039;&#039;&#039;OSE Prusa Y Axis Idler&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYAxisIdler.FCStd]]&lt;br /&gt;
File:OSEPrusaYAxisMotorMount.png&#039;&#039;&#039;OSE Prusa Y Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisMotorMount.FCStd]]&lt;br /&gt;
File:OSEPrusaYAxisBracket.png&#039;&#039;&#039;OSE Prusa Y Axis Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYAxisBracket.FCStd]]&lt;br /&gt;
File:OSEPrusaYBeltHolder.png|&#039;&#039;&#039;OSE Prusa Y Belt Holder&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYBeltHolder.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaZAxisMotorMount.png|&#039;&#039;&#039;OSE Prusa Z Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisMotorMount.FCStd]]&lt;br /&gt;
File:OSEPrusaTopLeftBracket.png|&#039;&#039;&#039;OSE Prusa Top Left Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisTopBracketLR.FCStd]]&lt;br /&gt;
File:OSEPrusaTopRightBracket.png|&#039;&#039;&#039;OSE Prusa Top Right Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisTopBracketLR.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaPrinterFoot.png|&#039;&#039;&#039;OSE Prusa Printer Foot&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaPrinterFoot.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaBedBracket.png|&#039;&#039;&#039;OSE Prusa Bed Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaBedBracket.FCStd]]&lt;br /&gt;
File:OSEPrusaBedPlate.png|&#039;&#039;&#039; OSE Prusa Bed Plate&#039;&#039;&#039; - FreeCad = [[File:OSEPrusaBedPlate.FCStd]]&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
==Extruder==&lt;br /&gt;
This printer makes use of the OSE D3D [[Simple Extruder]]&lt;br /&gt;
&lt;br /&gt;
==Build Notes - December 1, 2019==&lt;br /&gt;
*The build was completed relatively quickly despite the fact that the printed parts were all first prototype copies.  Most of the bolt holes had to be drilled slightly.  There were several other parts that needed additional holes drilled:&lt;br /&gt;
&lt;br /&gt;
===3D Printing Issues===&lt;br /&gt;
#X-Axis Motor Mount - Additional hole to allow for the smooth rod to pass through. Enlarge motor mount holes. Increase diameter of brass nut holes (4 for 3m bolts and one for the brass nut itself)&lt;br /&gt;
#X-Axis Idler - Additional hole to allow for the smooth rod to pass through. Enlarge holes for bearing bolt. Increase diameter of brass nut holes (4 for 3m bolts and one for the brass nut itself)&lt;br /&gt;
#Extruder Mount Bracket - increase the width of the GT2 belt slightly&lt;br /&gt;
#Y-Axis Motor Mount - Increase hole diameter of motor mount holes.&lt;br /&gt;
#Y-Axis Idler - increase diameter of holes for the bearing bolt&lt;br /&gt;
#Z-Axis Top Brackets - 4mm holes for attachment to frame&lt;br /&gt;
#Z-Axis Motor Mounts - 3mm holes need to enlarge.&lt;br /&gt;
#Bed Brackets - Small notches for zip ties.&lt;br /&gt;
===Other Issues===&lt;br /&gt;
#Extruder Aluminum Block - Holes were not quite the right separation - had to be drilled slightly&lt;br /&gt;
&lt;br /&gt;
==Notes for Tiffany and Ganesh==&lt;br /&gt;
*to prepare the OSE Prusa for its first print test.&lt;br /&gt;
*Here is a checklist of items to prepare:&lt;br /&gt;
#Install the spring on the extruder.   &lt;br /&gt;
##The idler bracket may need to be removed to do so.&lt;br /&gt;
##If the spring is too tight, the extruder motor may not be able to turn.&lt;br /&gt;
###Try increasing the extruder Pololu voltage to some value between 0.5V and 1.0V if this is the case (keep the voltage as low as possible)&lt;br /&gt;
##If the spring is too loose, the gear will slip on the filament.  Try putting a small object under the spring to slightly increase its tension.&lt;br /&gt;
#Tighten the springs on the printer bed so that it stays in place as the Y-Axis moves&lt;br /&gt;
#Fasten the power supply to the side of the printer.&lt;br /&gt;
#Run the Z-Axis motor wires and Endstop Wires along the frame and secure them with Zip Ties&lt;br /&gt;
#Create a roller for the filament. A metre stick suspended by two boxes may act as a quick start in this regard.&lt;br /&gt;
#Cover the bed with masking tape.&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=OSE_Prusa&amp;diff=204563</id>
		<title>OSE Prusa</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=OSE_Prusa&amp;diff=204563"/>
		<updated>2019-12-02T21:26:28Z</updated>

		<summary type="html">&lt;p&gt;Wneal: /* =3D Printing Issues */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=OSE Prusa=&lt;br /&gt;
Based on a Chinese version of the Prusa i3 printer, this represents a simple and low-part-count option for the Open Source Ecology product system. (Nov. 22, 2019 We are in the process of replicating this printer and will assemble it in Guyana in late November, 2019.)&lt;br /&gt;
[https://photos.app.goo.gl/kMcaP3xVbS65nSns9 OSE Prusa Slideshow]&lt;br /&gt;
&lt;br /&gt;
=Bill of Materials=&lt;br /&gt;
[https://www.amazon.ca/gp/product/B01BZ5ND8O/ref=ppx_od_dt_b_asin_title_s00?ie=UTF8&amp;amp;psc=1 OSE Prusa Bill of Materials]&lt;br /&gt;
&lt;br /&gt;
=Build Instructions=&lt;br /&gt;
#Purchase and organize all parts from the Bill of Materials. &lt;br /&gt;
#Follow the suggested directions in the following sections:&lt;br /&gt;
==Frame==&lt;br /&gt;
#Make cuts in the 20mmx20mm aluminum extrusions: 400mmx3; 250mm*2; 320mm*2&lt;br /&gt;
#Slide T-Nuts for the Y Axis Idler, Motor Mount and Mounting Brackets onto the 250mm aluminum extrusions&lt;br /&gt;
#Slide T-Nuts for the Z-Axis Motor Mounts and Vertical Frame Mounts on two 400mm aluminum extrusions&lt;br /&gt;
#Complete the 290mmx400mm horizontal frame by assembling a rectangle using the 290mm and 400mm extrusions and four corner brackets.&lt;br /&gt;
#Place three corner brackets and one printer foot / printer foot bracket as feet for the horizontal frame.&lt;br /&gt;
==X-Axis==&lt;br /&gt;
#Attach the X-Axis Motor to the X-Axis Motor Mount.&lt;br /&gt;
#Place three LM8UU Linear Bearings in the X-Axis Carriage Bracket and fasten them in place with small zip ties.&lt;br /&gt;
#Attach the X-Axis Motor Mount and X-Axis Carriage Bracket to the X-Axis Motor with two 8mm smooth rods (300mm).&lt;br /&gt;
&lt;br /&gt;
==Y-Axis==&lt;br /&gt;
#Attach the Y-Axis Motor to the Y Axis Motor Mount and both onto the Horizontal Frame.&lt;br /&gt;
#Attach the Y-Axis Pulley to the Y Axis Idler Using an M5 bolt and nut.&lt;br /&gt;
#Attach the Y-Axis Idler to the Horizontal Frame.&lt;br /&gt;
#Assemble two 320mm extrusions with one 400mm extrusion to form the vertical frame.&lt;br /&gt;
#Attach the Vertical Frame to the Horizontal Frame using two corner brackets and T-Nuts.&lt;br /&gt;
#Attach LM8UU bearings to each of the Bed Mounting Brackets using Zip Ties.&lt;br /&gt;
#Attach the Bed Mounting Brackets and Y-Axis Belt Holder to the aluminum bed plate.&lt;br /&gt;
#Slide two 8mm rods through the LM8UU bearings.&lt;br /&gt;
#Attach the Aluminum Bed Plate to the Horizontal Frame using the Y Axis Mounting Brackets.  Make sure they are parallel and that the bed slides easily before tightening the screws.&lt;br /&gt;
#Attach the Y Axis Belt around the Y-Axis Motor, Idler and Belt Holder.&lt;br /&gt;
#Use small Zip Ties to hold the Y-Axis Belt in place with reasonable tension.&lt;br /&gt;
#Further tension the Y-Axis Belt with a Clothes Pin Spring.&lt;br /&gt;
==Z-Axis==&lt;br /&gt;
#Attach the Z-Axis Top Left and Right Brackets to the front of the Vertical Frame Crossbar using T-Nuts.&lt;br /&gt;
#Attach the Z-Axis Motors to the Z-Axis Motor Mounts using M3 bolts.&lt;br /&gt;
#Attach the Z-Axis Couplers to the Z-Axis Acme Rods using the associated set-screws.&lt;br /&gt;
#Place the Z-Axis Couplers on the Z-Axis Motor Axles.&lt;br /&gt;
#Place the 8mm Smooth Rods in the related holes on the Z-Axis Motor Mounts.&lt;br /&gt;
#Place the Brass Nuts of X-Axis on the Z-Axis by turning the Z-Axis Acme Rods.&lt;br /&gt;
#Place the Z-Axis Smooth Rods in the related holes on the Top Left and Right Brackets.&lt;br /&gt;
#Tighten the Top Left and Right Brackets when you have made the Z-Axis Vertical and ensured that the X-Axis may move smoothly up and down.&lt;br /&gt;
&lt;br /&gt;
==Extruder==&lt;br /&gt;
#Attach the Aluminum Extruder Block to the lower two holes of the Extruder Motor and Extruder Mounting Bracket using M3 screws.&lt;br /&gt;
#Attach the Extruder Tube through the 6mm threaded hole of the Aluminum Extruder Block.&lt;br /&gt;
#Wind two 6mm nuts up the Extruder Tube to make sure that it stays in place.  The top of the Extruder Tube should be even with the top of the Aluminum Extruder Block.&lt;br /&gt;
#Attach the Extruder Heater Block and Brass Nozzle to the Extruder Tube.&lt;br /&gt;
#Attach the Extruder Idler to the Extruder Idler Bracket using an M4 screw and Nut&lt;br /&gt;
#Attach the Extruder Bracket and Idler Bracket to the two top holes of the Extruder Motor using M3 screws.&lt;br /&gt;
#Place the Extruder Tensioner Spring in the Extruder between the Idler Bracket and the Extruder Bracket.&lt;br /&gt;
&lt;br /&gt;
==Electronics==&lt;br /&gt;
#Solder wires on the Heated Bed.&lt;br /&gt;
#Attach the Bed Thermistor to the Heated Bed&lt;br /&gt;
#Place the Heating Resistor in the Extruder Heater Block.&lt;br /&gt;
#Place the Extruder Thermistor in the Extruder Heater Block.&lt;br /&gt;
#Place the X, Y and Z End-Stops in their Respective Positions on the Printer.&lt;br /&gt;
#Prepare a Power Cable for the Power Supply.&lt;br /&gt;
#Prepare Wires to run from the Power Supply to the RAMPS Board.&lt;br /&gt;
#Prepare the Pololu Heat Sinks for the Pololu Drivers&lt;br /&gt;
#Carefully Insert the Pololus in Position on the RAMPS Board.&lt;br /&gt;
#Place the RAMPS Board on the Arduino.&lt;br /&gt;
#Place the RAMPS and Arduino on the Back of the Vertical Frame Using the T-Nuts (already on the vertical frame) and M4 screws.&lt;br /&gt;
#Run the wires of each electronics device along the frame to the RAMPS Board.  Wrap the Extruder Wires and Y-Axis Wires in a Spiral Cable Carrier. Attach the wires neatly and securely to the framw using zip ties.&lt;br /&gt;
#Attach all wires to the RAMPS Board.&lt;br /&gt;
&lt;br /&gt;
=Part Library=&lt;br /&gt;
&lt;br /&gt;
Here are the parts for the printer: (Nov. 23, 2019 - Note that the Y Belt Holder still needs to be drawn up in FreeCAD; we are still working on some minor edits to some of the parts - for the moment, we are drilling some holes in them for example)&lt;br /&gt;
&amp;lt;gallery perrow=6&amp;gt;&lt;br /&gt;
File:OSEPrusaXAxisIdler.png|&#039;&#039;&#039;OSE Prusa X Axis Idler&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisIdler.FCStd]]&lt;br /&gt;
File:OSEPrusaXAxisMotorMount.png|&#039;&#039;&#039;OSE Prusa X Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisMotorMount.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaYAxisIdler.png|&#039;&#039;&#039;OSE Prusa Y Axis Idler&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYAxisIdler.FCStd]]&lt;br /&gt;
File:OSEPrusaYAxisMotorMount.png&#039;&#039;&#039;OSE Prusa Y Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisMotorMount.FCStd]]&lt;br /&gt;
File:OSEPrusaYAxisBracket.png&#039;&#039;&#039;OSE Prusa Y Axis Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYAxisBracket.FCStd]]&lt;br /&gt;
File:OSEPrusaYBeltHolder.png|&#039;&#039;&#039;OSE Prusa Y Belt Holder&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYBeltHolder.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaZAxisMotorMount.png|&#039;&#039;&#039;OSE Prusa Z Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisMotorMount.FCStd]]&lt;br /&gt;
File:OSEPrusaTopLeftBracket.png|&#039;&#039;&#039;OSE Prusa Top Left Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisTopBracketLR.FCStd]]&lt;br /&gt;
File:OSEPrusaTopRightBracket.png|&#039;&#039;&#039;OSE Prusa Top Right Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisTopBracketLR.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaPrinterFoot.png|&#039;&#039;&#039;OSE Prusa Printer Foot&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaPrinterFoot.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaBedBracket.png|&#039;&#039;&#039;OSE Prusa Bed Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaBedBracket.FCStd]]&lt;br /&gt;
File:OSEPrusaBedPlate.png|&#039;&#039;&#039; OSE Prusa Bed Plate&#039;&#039;&#039; - FreeCad = [[File:OSEPrusaBedPlate.FCStd]]&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
==Extruder==&lt;br /&gt;
This printer makes use of the OSE D3D [[Simple Extruder]]&lt;br /&gt;
&lt;br /&gt;
==Build Notes - December 1, 2019==&lt;br /&gt;
*The build was completed relatively quickly despite the fact that the printed parts were all first prototype copies.  Most of the bolt holes had to be drilled slightly.  There were several other parts that needed additional holes drilled:&lt;br /&gt;
&lt;br /&gt;
===3D Printing Issues===&lt;br /&gt;
#X-Axis Motor Mount - Additional hole to allow for the smooth rod to pass through. Enlarge motor mount holes. Increase diameter of brass nut holes (4 for 3m bolts and one for the brass nut itself)&lt;br /&gt;
#X-Axis Idler - Additional hole to allow for the smooth rod to pass through. Enlarge holes for bearing bolt. Increase diameter of brass nut holes (4 for 3m bolts and one for the brass nut itself)&lt;br /&gt;
#Extruder Mount Bracket - increase the width of the GT2 belt slightly&lt;br /&gt;
#Y-Axis Motor Mount - Increase hole diameter of motor mount holes.&lt;br /&gt;
#Y-Axis Idler - increase diameter of holes for the bearing bolt&lt;br /&gt;
#Z-Axis Top Brackets - 4mm holes for attachment to frame&lt;br /&gt;
#Z-Axis Motor Mounts - 3mm holes need to enlarge.&lt;br /&gt;
#Bed Brackets - Small notches for zip ties.&lt;br /&gt;
===Other Issues===&lt;br /&gt;
#Extruder Aluminum Block - Holes were not quite the right separation - had to be drilled slightly&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=OSE_Prusa&amp;diff=204562</id>
		<title>OSE Prusa</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=OSE_Prusa&amp;diff=204562"/>
		<updated>2019-12-02T21:24:36Z</updated>

		<summary type="html">&lt;p&gt;Wneal: /* Build Notes - December 1, 2019 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=OSE Prusa=&lt;br /&gt;
Based on a Chinese version of the Prusa i3 printer, this represents a simple and low-part-count option for the Open Source Ecology product system. (Nov. 22, 2019 We are in the process of replicating this printer and will assemble it in Guyana in late November, 2019.)&lt;br /&gt;
[https://photos.app.goo.gl/kMcaP3xVbS65nSns9 OSE Prusa Slideshow]&lt;br /&gt;
&lt;br /&gt;
=Bill of Materials=&lt;br /&gt;
[https://www.amazon.ca/gp/product/B01BZ5ND8O/ref=ppx_od_dt_b_asin_title_s00?ie=UTF8&amp;amp;psc=1 OSE Prusa Bill of Materials]&lt;br /&gt;
&lt;br /&gt;
=Build Instructions=&lt;br /&gt;
#Purchase and organize all parts from the Bill of Materials. &lt;br /&gt;
#Follow the suggested directions in the following sections:&lt;br /&gt;
==Frame==&lt;br /&gt;
#Make cuts in the 20mmx20mm aluminum extrusions: 400mmx3; 250mm*2; 320mm*2&lt;br /&gt;
#Slide T-Nuts for the Y Axis Idler, Motor Mount and Mounting Brackets onto the 250mm aluminum extrusions&lt;br /&gt;
#Slide T-Nuts for the Z-Axis Motor Mounts and Vertical Frame Mounts on two 400mm aluminum extrusions&lt;br /&gt;
#Complete the 290mmx400mm horizontal frame by assembling a rectangle using the 290mm and 400mm extrusions and four corner brackets.&lt;br /&gt;
#Place three corner brackets and one printer foot / printer foot bracket as feet for the horizontal frame.&lt;br /&gt;
==X-Axis==&lt;br /&gt;
#Attach the X-Axis Motor to the X-Axis Motor Mount.&lt;br /&gt;
#Place three LM8UU Linear Bearings in the X-Axis Carriage Bracket and fasten them in place with small zip ties.&lt;br /&gt;
#Attach the X-Axis Motor Mount and X-Axis Carriage Bracket to the X-Axis Motor with two 8mm smooth rods (300mm).&lt;br /&gt;
&lt;br /&gt;
==Y-Axis==&lt;br /&gt;
#Attach the Y-Axis Motor to the Y Axis Motor Mount and both onto the Horizontal Frame.&lt;br /&gt;
#Attach the Y-Axis Pulley to the Y Axis Idler Using an M5 bolt and nut.&lt;br /&gt;
#Attach the Y-Axis Idler to the Horizontal Frame.&lt;br /&gt;
#Assemble two 320mm extrusions with one 400mm extrusion to form the vertical frame.&lt;br /&gt;
#Attach the Vertical Frame to the Horizontal Frame using two corner brackets and T-Nuts.&lt;br /&gt;
#Attach LM8UU bearings to each of the Bed Mounting Brackets using Zip Ties.&lt;br /&gt;
#Attach the Bed Mounting Brackets and Y-Axis Belt Holder to the aluminum bed plate.&lt;br /&gt;
#Slide two 8mm rods through the LM8UU bearings.&lt;br /&gt;
#Attach the Aluminum Bed Plate to the Horizontal Frame using the Y Axis Mounting Brackets.  Make sure they are parallel and that the bed slides easily before tightening the screws.&lt;br /&gt;
#Attach the Y Axis Belt around the Y-Axis Motor, Idler and Belt Holder.&lt;br /&gt;
#Use small Zip Ties to hold the Y-Axis Belt in place with reasonable tension.&lt;br /&gt;
#Further tension the Y-Axis Belt with a Clothes Pin Spring.&lt;br /&gt;
==Z-Axis==&lt;br /&gt;
#Attach the Z-Axis Top Left and Right Brackets to the front of the Vertical Frame Crossbar using T-Nuts.&lt;br /&gt;
#Attach the Z-Axis Motors to the Z-Axis Motor Mounts using M3 bolts.&lt;br /&gt;
#Attach the Z-Axis Couplers to the Z-Axis Acme Rods using the associated set-screws.&lt;br /&gt;
#Place the Z-Axis Couplers on the Z-Axis Motor Axles.&lt;br /&gt;
#Place the 8mm Smooth Rods in the related holes on the Z-Axis Motor Mounts.&lt;br /&gt;
#Place the Brass Nuts of X-Axis on the Z-Axis by turning the Z-Axis Acme Rods.&lt;br /&gt;
#Place the Z-Axis Smooth Rods in the related holes on the Top Left and Right Brackets.&lt;br /&gt;
#Tighten the Top Left and Right Brackets when you have made the Z-Axis Vertical and ensured that the X-Axis may move smoothly up and down.&lt;br /&gt;
&lt;br /&gt;
==Extruder==&lt;br /&gt;
#Attach the Aluminum Extruder Block to the lower two holes of the Extruder Motor and Extruder Mounting Bracket using M3 screws.&lt;br /&gt;
#Attach the Extruder Tube through the 6mm threaded hole of the Aluminum Extruder Block.&lt;br /&gt;
#Wind two 6mm nuts up the Extruder Tube to make sure that it stays in place.  The top of the Extruder Tube should be even with the top of the Aluminum Extruder Block.&lt;br /&gt;
#Attach the Extruder Heater Block and Brass Nozzle to the Extruder Tube.&lt;br /&gt;
#Attach the Extruder Idler to the Extruder Idler Bracket using an M4 screw and Nut&lt;br /&gt;
#Attach the Extruder Bracket and Idler Bracket to the two top holes of the Extruder Motor using M3 screws.&lt;br /&gt;
#Place the Extruder Tensioner Spring in the Extruder between the Idler Bracket and the Extruder Bracket.&lt;br /&gt;
&lt;br /&gt;
==Electronics==&lt;br /&gt;
#Solder wires on the Heated Bed.&lt;br /&gt;
#Attach the Bed Thermistor to the Heated Bed&lt;br /&gt;
#Place the Heating Resistor in the Extruder Heater Block.&lt;br /&gt;
#Place the Extruder Thermistor in the Extruder Heater Block.&lt;br /&gt;
#Place the X, Y and Z End-Stops in their Respective Positions on the Printer.&lt;br /&gt;
#Prepare a Power Cable for the Power Supply.&lt;br /&gt;
#Prepare Wires to run from the Power Supply to the RAMPS Board.&lt;br /&gt;
#Prepare the Pololu Heat Sinks for the Pololu Drivers&lt;br /&gt;
#Carefully Insert the Pololus in Position on the RAMPS Board.&lt;br /&gt;
#Place the RAMPS Board on the Arduino.&lt;br /&gt;
#Place the RAMPS and Arduino on the Back of the Vertical Frame Using the T-Nuts (already on the vertical frame) and M4 screws.&lt;br /&gt;
#Run the wires of each electronics device along the frame to the RAMPS Board.  Wrap the Extruder Wires and Y-Axis Wires in a Spiral Cable Carrier. Attach the wires neatly and securely to the framw using zip ties.&lt;br /&gt;
#Attach all wires to the RAMPS Board.&lt;br /&gt;
&lt;br /&gt;
=Part Library=&lt;br /&gt;
&lt;br /&gt;
Here are the parts for the printer: (Nov. 23, 2019 - Note that the Y Belt Holder still needs to be drawn up in FreeCAD; we are still working on some minor edits to some of the parts - for the moment, we are drilling some holes in them for example)&lt;br /&gt;
&amp;lt;gallery perrow=6&amp;gt;&lt;br /&gt;
File:OSEPrusaXAxisIdler.png|&#039;&#039;&#039;OSE Prusa X Axis Idler&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisIdler.FCStd]]&lt;br /&gt;
File:OSEPrusaXAxisMotorMount.png|&#039;&#039;&#039;OSE Prusa X Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisMotorMount.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaYAxisIdler.png|&#039;&#039;&#039;OSE Prusa Y Axis Idler&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYAxisIdler.FCStd]]&lt;br /&gt;
File:OSEPrusaYAxisMotorMount.png&#039;&#039;&#039;OSE Prusa Y Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisMotorMount.FCStd]]&lt;br /&gt;
File:OSEPrusaYAxisBracket.png&#039;&#039;&#039;OSE Prusa Y Axis Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYAxisBracket.FCStd]]&lt;br /&gt;
File:OSEPrusaYBeltHolder.png|&#039;&#039;&#039;OSE Prusa Y Belt Holder&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYBeltHolder.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaZAxisMotorMount.png|&#039;&#039;&#039;OSE Prusa Z Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisMotorMount.FCStd]]&lt;br /&gt;
File:OSEPrusaTopLeftBracket.png|&#039;&#039;&#039;OSE Prusa Top Left Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisTopBracketLR.FCStd]]&lt;br /&gt;
File:OSEPrusaTopRightBracket.png|&#039;&#039;&#039;OSE Prusa Top Right Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisTopBracketLR.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaPrinterFoot.png|&#039;&#039;&#039;OSE Prusa Printer Foot&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaPrinterFoot.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaBedBracket.png|&#039;&#039;&#039;OSE Prusa Bed Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaBedBracket.FCStd]]&lt;br /&gt;
File:OSEPrusaBedPlate.png|&#039;&#039;&#039; OSE Prusa Bed Plate&#039;&#039;&#039; - FreeCad = [[File:OSEPrusaBedPlate.FCStd]]&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
==Extruder==&lt;br /&gt;
This printer makes use of the OSE D3D [[Simple Extruder]]&lt;br /&gt;
&lt;br /&gt;
==Build Notes - December 1, 2019==&lt;br /&gt;
*The build was completed relatively quickly despite the fact that the printed parts were all first prototype copies.  Most of the bolt holes had to be drilled slightly.  There were several other parts that needed additional holes drilled:&lt;br /&gt;
&lt;br /&gt;
===3D Printing Issues==&lt;br /&gt;
#X-Axis Motor Mount - Additional hole to allow for the smooth rod to pass through. Enlarge motor mount holes. Increase diameter of brass nut holes (4 for 3m bolts and one for the brass nut itself)&lt;br /&gt;
#X-Axis Idler - Additional hole to allow for the smooth rod to pass through. Enlarge holes for bearing bolt. Increase diameter of brass nut holes (4 for 3m bolts and one for the brass nut itself)&lt;br /&gt;
#Extruder Mount Bracket - increase the width of the GT2 belt slightly&lt;br /&gt;
#Y-Axis Motor Mount - Increase hole diameter of motor mount holes.&lt;br /&gt;
#Y-Axis Idler - increase diameter of holes for the bearing bolt&lt;br /&gt;
#Z-Axis Top Brackets - 4mm holes for attachment to frame&lt;br /&gt;
#Z-Axis Motor Mounts - 3mm holes need to enlarge.&lt;br /&gt;
#Bed Brackets - Small notches for zip ties.&lt;br /&gt;
===Other Issues===&lt;br /&gt;
#Extruder Aluminum Block - Holes were not quite the right separation - had to be drilled slightly&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=OSE_Prusa&amp;diff=204561</id>
		<title>OSE Prusa</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=OSE_Prusa&amp;diff=204561"/>
		<updated>2019-12-02T21:08:52Z</updated>

		<summary type="html">&lt;p&gt;Wneal: /* Extruder */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=OSE Prusa=&lt;br /&gt;
Based on a Chinese version of the Prusa i3 printer, this represents a simple and low-part-count option for the Open Source Ecology product system. (Nov. 22, 2019 We are in the process of replicating this printer and will assemble it in Guyana in late November, 2019.)&lt;br /&gt;
[https://photos.app.goo.gl/kMcaP3xVbS65nSns9 OSE Prusa Slideshow]&lt;br /&gt;
&lt;br /&gt;
=Bill of Materials=&lt;br /&gt;
[https://www.amazon.ca/gp/product/B01BZ5ND8O/ref=ppx_od_dt_b_asin_title_s00?ie=UTF8&amp;amp;psc=1 OSE Prusa Bill of Materials]&lt;br /&gt;
&lt;br /&gt;
=Build Instructions=&lt;br /&gt;
#Purchase and organize all parts from the Bill of Materials. &lt;br /&gt;
#Follow the suggested directions in the following sections:&lt;br /&gt;
==Frame==&lt;br /&gt;
#Make cuts in the 20mmx20mm aluminum extrusions: 400mmx3; 250mm*2; 320mm*2&lt;br /&gt;
#Slide T-Nuts for the Y Axis Idler, Motor Mount and Mounting Brackets onto the 250mm aluminum extrusions&lt;br /&gt;
#Slide T-Nuts for the Z-Axis Motor Mounts and Vertical Frame Mounts on two 400mm aluminum extrusions&lt;br /&gt;
#Complete the 290mmx400mm horizontal frame by assembling a rectangle using the 290mm and 400mm extrusions and four corner brackets.&lt;br /&gt;
#Place three corner brackets and one printer foot / printer foot bracket as feet for the horizontal frame.&lt;br /&gt;
==X-Axis==&lt;br /&gt;
#Attach the X-Axis Motor to the X-Axis Motor Mount.&lt;br /&gt;
#Place three LM8UU Linear Bearings in the X-Axis Carriage Bracket and fasten them in place with small zip ties.&lt;br /&gt;
#Attach the X-Axis Motor Mount and X-Axis Carriage Bracket to the X-Axis Motor with two 8mm smooth rods (300mm).&lt;br /&gt;
&lt;br /&gt;
==Y-Axis==&lt;br /&gt;
#Attach the Y-Axis Motor to the Y Axis Motor Mount and both onto the Horizontal Frame.&lt;br /&gt;
#Attach the Y-Axis Pulley to the Y Axis Idler Using an M5 bolt and nut.&lt;br /&gt;
#Attach the Y-Axis Idler to the Horizontal Frame.&lt;br /&gt;
#Assemble two 320mm extrusions with one 400mm extrusion to form the vertical frame.&lt;br /&gt;
#Attach the Vertical Frame to the Horizontal Frame using two corner brackets and T-Nuts.&lt;br /&gt;
#Attach LM8UU bearings to each of the Bed Mounting Brackets using Zip Ties.&lt;br /&gt;
#Attach the Bed Mounting Brackets and Y-Axis Belt Holder to the aluminum bed plate.&lt;br /&gt;
#Slide two 8mm rods through the LM8UU bearings.&lt;br /&gt;
#Attach the Aluminum Bed Plate to the Horizontal Frame using the Y Axis Mounting Brackets.  Make sure they are parallel and that the bed slides easily before tightening the screws.&lt;br /&gt;
#Attach the Y Axis Belt around the Y-Axis Motor, Idler and Belt Holder.&lt;br /&gt;
#Use small Zip Ties to hold the Y-Axis Belt in place with reasonable tension.&lt;br /&gt;
#Further tension the Y-Axis Belt with a Clothes Pin Spring.&lt;br /&gt;
==Z-Axis==&lt;br /&gt;
#Attach the Z-Axis Top Left and Right Brackets to the front of the Vertical Frame Crossbar using T-Nuts.&lt;br /&gt;
#Attach the Z-Axis Motors to the Z-Axis Motor Mounts using M3 bolts.&lt;br /&gt;
#Attach the Z-Axis Couplers to the Z-Axis Acme Rods using the associated set-screws.&lt;br /&gt;
#Place the Z-Axis Couplers on the Z-Axis Motor Axles.&lt;br /&gt;
#Place the 8mm Smooth Rods in the related holes on the Z-Axis Motor Mounts.&lt;br /&gt;
#Place the Brass Nuts of X-Axis on the Z-Axis by turning the Z-Axis Acme Rods.&lt;br /&gt;
#Place the Z-Axis Smooth Rods in the related holes on the Top Left and Right Brackets.&lt;br /&gt;
#Tighten the Top Left and Right Brackets when you have made the Z-Axis Vertical and ensured that the X-Axis may move smoothly up and down.&lt;br /&gt;
&lt;br /&gt;
==Extruder==&lt;br /&gt;
#Attach the Aluminum Extruder Block to the lower two holes of the Extruder Motor and Extruder Mounting Bracket using M3 screws.&lt;br /&gt;
#Attach the Extruder Tube through the 6mm threaded hole of the Aluminum Extruder Block.&lt;br /&gt;
#Wind two 6mm nuts up the Extruder Tube to make sure that it stays in place.  The top of the Extruder Tube should be even with the top of the Aluminum Extruder Block.&lt;br /&gt;
#Attach the Extruder Heater Block and Brass Nozzle to the Extruder Tube.&lt;br /&gt;
#Attach the Extruder Idler to the Extruder Idler Bracket using an M4 screw and Nut&lt;br /&gt;
#Attach the Extruder Bracket and Idler Bracket to the two top holes of the Extruder Motor using M3 screws.&lt;br /&gt;
#Place the Extruder Tensioner Spring in the Extruder between the Idler Bracket and the Extruder Bracket.&lt;br /&gt;
&lt;br /&gt;
==Electronics==&lt;br /&gt;
#Solder wires on the Heated Bed.&lt;br /&gt;
#Attach the Bed Thermistor to the Heated Bed&lt;br /&gt;
#Place the Heating Resistor in the Extruder Heater Block.&lt;br /&gt;
#Place the Extruder Thermistor in the Extruder Heater Block.&lt;br /&gt;
#Place the X, Y and Z End-Stops in their Respective Positions on the Printer.&lt;br /&gt;
#Prepare a Power Cable for the Power Supply.&lt;br /&gt;
#Prepare Wires to run from the Power Supply to the RAMPS Board.&lt;br /&gt;
#Prepare the Pololu Heat Sinks for the Pololu Drivers&lt;br /&gt;
#Carefully Insert the Pololus in Position on the RAMPS Board.&lt;br /&gt;
#Place the RAMPS Board on the Arduino.&lt;br /&gt;
#Place the RAMPS and Arduino on the Back of the Vertical Frame Using the T-Nuts (already on the vertical frame) and M4 screws.&lt;br /&gt;
#Run the wires of each electronics device along the frame to the RAMPS Board.  Wrap the Extruder Wires and Y-Axis Wires in a Spiral Cable Carrier. Attach the wires neatly and securely to the framw using zip ties.&lt;br /&gt;
#Attach all wires to the RAMPS Board.&lt;br /&gt;
&lt;br /&gt;
=Part Library=&lt;br /&gt;
&lt;br /&gt;
Here are the parts for the printer: (Nov. 23, 2019 - Note that the Y Belt Holder still needs to be drawn up in FreeCAD; we are still working on some minor edits to some of the parts - for the moment, we are drilling some holes in them for example)&lt;br /&gt;
&amp;lt;gallery perrow=6&amp;gt;&lt;br /&gt;
File:OSEPrusaXAxisIdler.png|&#039;&#039;&#039;OSE Prusa X Axis Idler&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisIdler.FCStd]]&lt;br /&gt;
File:OSEPrusaXAxisMotorMount.png|&#039;&#039;&#039;OSE Prusa X Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisMotorMount.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaYAxisIdler.png|&#039;&#039;&#039;OSE Prusa Y Axis Idler&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYAxisIdler.FCStd]]&lt;br /&gt;
File:OSEPrusaYAxisMotorMount.png&#039;&#039;&#039;OSE Prusa Y Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisMotorMount.FCStd]]&lt;br /&gt;
File:OSEPrusaYAxisBracket.png&#039;&#039;&#039;OSE Prusa Y Axis Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYAxisBracket.FCStd]]&lt;br /&gt;
File:OSEPrusaYBeltHolder.png|&#039;&#039;&#039;OSE Prusa Y Belt Holder&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYBeltHolder.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaZAxisMotorMount.png|&#039;&#039;&#039;OSE Prusa Z Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisMotorMount.FCStd]]&lt;br /&gt;
File:OSEPrusaTopLeftBracket.png|&#039;&#039;&#039;OSE Prusa Top Left Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisTopBracketLR.FCStd]]&lt;br /&gt;
File:OSEPrusaTopRightBracket.png|&#039;&#039;&#039;OSE Prusa Top Right Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisTopBracketLR.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaPrinterFoot.png|&#039;&#039;&#039;OSE Prusa Printer Foot&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaPrinterFoot.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaBedBracket.png|&#039;&#039;&#039;OSE Prusa Bed Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaBedBracket.FCStd]]&lt;br /&gt;
File:OSEPrusaBedPlate.png|&#039;&#039;&#039; OSE Prusa Bed Plate&#039;&#039;&#039; - FreeCad = [[File:OSEPrusaBedPlate.FCStd]]&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
==Extruder==&lt;br /&gt;
This printer makes use of the OSE D3D [[Simple Extruder]]&lt;br /&gt;
&lt;br /&gt;
==Build Notes - December 1, 2019==&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=OSE_Prusa&amp;diff=204560</id>
		<title>OSE Prusa</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=OSE_Prusa&amp;diff=204560"/>
		<updated>2019-12-02T21:08:12Z</updated>

		<summary type="html">&lt;p&gt;Wneal: /* Build Instructions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=OSE Prusa=&lt;br /&gt;
Based on a Chinese version of the Prusa i3 printer, this represents a simple and low-part-count option for the Open Source Ecology product system. (Nov. 22, 2019 We are in the process of replicating this printer and will assemble it in Guyana in late November, 2019.)&lt;br /&gt;
[https://photos.app.goo.gl/kMcaP3xVbS65nSns9 OSE Prusa Slideshow]&lt;br /&gt;
&lt;br /&gt;
=Bill of Materials=&lt;br /&gt;
[https://www.amazon.ca/gp/product/B01BZ5ND8O/ref=ppx_od_dt_b_asin_title_s00?ie=UTF8&amp;amp;psc=1 OSE Prusa Bill of Materials]&lt;br /&gt;
&lt;br /&gt;
=Build Instructions=&lt;br /&gt;
#Purchase and organize all parts from the Bill of Materials. &lt;br /&gt;
#Follow the suggested directions in the following sections:&lt;br /&gt;
==Frame==&lt;br /&gt;
#Make cuts in the 20mmx20mm aluminum extrusions: 400mmx3; 250mm*2; 320mm*2&lt;br /&gt;
#Slide T-Nuts for the Y Axis Idler, Motor Mount and Mounting Brackets onto the 250mm aluminum extrusions&lt;br /&gt;
#Slide T-Nuts for the Z-Axis Motor Mounts and Vertical Frame Mounts on two 400mm aluminum extrusions&lt;br /&gt;
#Complete the 290mmx400mm horizontal frame by assembling a rectangle using the 290mm and 400mm extrusions and four corner brackets.&lt;br /&gt;
#Place three corner brackets and one printer foot / printer foot bracket as feet for the horizontal frame.&lt;br /&gt;
==X-Axis==&lt;br /&gt;
#Attach the X-Axis Motor to the X-Axis Motor Mount.&lt;br /&gt;
#Place three LM8UU Linear Bearings in the X-Axis Carriage Bracket and fasten them in place with small zip ties.&lt;br /&gt;
#Attach the X-Axis Motor Mount and X-Axis Carriage Bracket to the X-Axis Motor with two 8mm smooth rods (300mm).&lt;br /&gt;
&lt;br /&gt;
==Y-Axis==&lt;br /&gt;
#Attach the Y-Axis Motor to the Y Axis Motor Mount and both onto the Horizontal Frame.&lt;br /&gt;
#Attach the Y-Axis Pulley to the Y Axis Idler Using an M5 bolt and nut.&lt;br /&gt;
#Attach the Y-Axis Idler to the Horizontal Frame.&lt;br /&gt;
#Assemble two 320mm extrusions with one 400mm extrusion to form the vertical frame.&lt;br /&gt;
#Attach the Vertical Frame to the Horizontal Frame using two corner brackets and T-Nuts.&lt;br /&gt;
#Attach LM8UU bearings to each of the Bed Mounting Brackets using Zip Ties.&lt;br /&gt;
#Attach the Bed Mounting Brackets and Y-Axis Belt Holder to the aluminum bed plate.&lt;br /&gt;
#Slide two 8mm rods through the LM8UU bearings.&lt;br /&gt;
#Attach the Aluminum Bed Plate to the Horizontal Frame using the Y Axis Mounting Brackets.  Make sure they are parallel and that the bed slides easily before tightening the screws.&lt;br /&gt;
#Attach the Y Axis Belt around the Y-Axis Motor, Idler and Belt Holder.&lt;br /&gt;
#Use small Zip Ties to hold the Y-Axis Belt in place with reasonable tension.&lt;br /&gt;
#Further tension the Y-Axis Belt with a Clothes Pin Spring.&lt;br /&gt;
==Z-Axis==&lt;br /&gt;
#Attach the Z-Axis Top Left and Right Brackets to the front of the Vertical Frame Crossbar using T-Nuts.&lt;br /&gt;
#Attach the Z-Axis Motors to the Z-Axis Motor Mounts using M3 bolts.&lt;br /&gt;
#Attach the Z-Axis Couplers to the Z-Axis Acme Rods using the associated set-screws.&lt;br /&gt;
#Place the Z-Axis Couplers on the Z-Axis Motor Axles.&lt;br /&gt;
#Place the 8mm Smooth Rods in the related holes on the Z-Axis Motor Mounts.&lt;br /&gt;
#Place the Brass Nuts of X-Axis on the Z-Axis by turning the Z-Axis Acme Rods.&lt;br /&gt;
#Place the Z-Axis Smooth Rods in the related holes on the Top Left and Right Brackets.&lt;br /&gt;
#Tighten the Top Left and Right Brackets when you have made the Z-Axis Vertical and ensured that the X-Axis may move smoothly up and down.&lt;br /&gt;
&lt;br /&gt;
==Extruder==&lt;br /&gt;
#Attach the Aluminum Extruder Block to the lower two holes of the Extruder Motor and Extruder Mounting Bracket using M3 screws.&lt;br /&gt;
#Attach the Extruder Tube through the 6mm threaded hole of the Aluminum Extruder Block.&lt;br /&gt;
#Wind two 6mm nuts up the Extruder Tube to make sure that it stays in place.  The top of the Extruder Tube should be even with the top of the Aluminum Extruder Block.&lt;br /&gt;
#Attach the Extruder Heater Block and Brass Nozzle to the Extruder Tube.&lt;br /&gt;
#Attach the Extruder Idler to the Extruder Idler Bracket using an M4 screw and Nut&lt;br /&gt;
#Attach the Extruder Bracket and Idler Bracket to the two top holes of the Extruder Motor using M3 screws.&lt;br /&gt;
#Place the Extruder Tensioner Spring in the Extruder between the Idler Bracket and the Extruder Bracket.&lt;br /&gt;
&lt;br /&gt;
==Electronics==&lt;br /&gt;
#Solder wires on the Heated Bed.&lt;br /&gt;
#Attach the Bed Thermistor to the Heated Bed&lt;br /&gt;
#Place the Heating Resistor in the Extruder Heater Block.&lt;br /&gt;
#Place the Extruder Thermistor in the Extruder Heater Block.&lt;br /&gt;
#Place the X, Y and Z End-Stops in their Respective Positions on the Printer.&lt;br /&gt;
#Prepare a Power Cable for the Power Supply.&lt;br /&gt;
#Prepare Wires to run from the Power Supply to the RAMPS Board.&lt;br /&gt;
#Prepare the Pololu Heat Sinks for the Pololu Drivers&lt;br /&gt;
#Carefully Insert the Pololus in Position on the RAMPS Board.&lt;br /&gt;
#Place the RAMPS Board on the Arduino.&lt;br /&gt;
#Place the RAMPS and Arduino on the Back of the Vertical Frame Using the T-Nuts (already on the vertical frame) and M4 screws.&lt;br /&gt;
#Run the wires of each electronics device along the frame to the RAMPS Board.  Wrap the Extruder Wires and Y-Axis Wires in a Spiral Cable Carrier. Attach the wires neatly and securely to the framw using zip ties.&lt;br /&gt;
#Attach all wires to the RAMPS Board.&lt;br /&gt;
&lt;br /&gt;
=Part Library=&lt;br /&gt;
&lt;br /&gt;
Here are the parts for the printer: (Nov. 23, 2019 - Note that the Y Belt Holder still needs to be drawn up in FreeCAD; we are still working on some minor edits to some of the parts - for the moment, we are drilling some holes in them for example)&lt;br /&gt;
&amp;lt;gallery perrow=6&amp;gt;&lt;br /&gt;
File:OSEPrusaXAxisIdler.png|&#039;&#039;&#039;OSE Prusa X Axis Idler&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisIdler.FCStd]]&lt;br /&gt;
File:OSEPrusaXAxisMotorMount.png|&#039;&#039;&#039;OSE Prusa X Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisMotorMount.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaYAxisIdler.png|&#039;&#039;&#039;OSE Prusa Y Axis Idler&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYAxisIdler.FCStd]]&lt;br /&gt;
File:OSEPrusaYAxisMotorMount.png&#039;&#039;&#039;OSE Prusa Y Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisMotorMount.FCStd]]&lt;br /&gt;
File:OSEPrusaYAxisBracket.png&#039;&#039;&#039;OSE Prusa Y Axis Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYAxisBracket.FCStd]]&lt;br /&gt;
File:OSEPrusaYBeltHolder.png|&#039;&#039;&#039;OSE Prusa Y Belt Holder&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYBeltHolder.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaZAxisMotorMount.png|&#039;&#039;&#039;OSE Prusa Z Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisMotorMount.FCStd]]&lt;br /&gt;
File:OSEPrusaTopLeftBracket.png|&#039;&#039;&#039;OSE Prusa Top Left Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisTopBracketLR.FCStd]]&lt;br /&gt;
File:OSEPrusaTopRightBracket.png|&#039;&#039;&#039;OSE Prusa Top Right Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisTopBracketLR.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaPrinterFoot.png|&#039;&#039;&#039;OSE Prusa Printer Foot&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaPrinterFoot.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaBedBracket.png|&#039;&#039;&#039;OSE Prusa Bed Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaBedBracket.FCStd]]&lt;br /&gt;
File:OSEPrusaBedPlate.png|&#039;&#039;&#039; OSE Prusa Bed Plate&#039;&#039;&#039; - FreeCad = [[File:OSEPrusaBedPlate.FCStd]]&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
==Extruder==&lt;br /&gt;
This printer makes use of the OSE D3D [[Simple Extruder]]&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=OSE_Prusa&amp;diff=204559</id>
		<title>OSE Prusa</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=OSE_Prusa&amp;diff=204559"/>
		<updated>2019-12-02T21:07:32Z</updated>

		<summary type="html">&lt;p&gt;Wneal: /* Z Axis */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=OSE Prusa=&lt;br /&gt;
Based on a Chinese version of the Prusa i3 printer, this represents a simple and low-part-count option for the Open Source Ecology product system. (Nov. 22, 2019 We are in the process of replicating this printer and will assemble it in Guyana in late November, 2019.)&lt;br /&gt;
[https://photos.app.goo.gl/kMcaP3xVbS65nSns9 OSE Prusa Slideshow]&lt;br /&gt;
&lt;br /&gt;
=Bill of Materials=&lt;br /&gt;
[https://www.amazon.ca/gp/product/B01BZ5ND8O/ref=ppx_od_dt_b_asin_title_s00?ie=UTF8&amp;amp;psc=1 OSE Prusa Bill of Materials]&lt;br /&gt;
&lt;br /&gt;
=Build Instructions=&lt;br /&gt;
#Purchase and organize all parts from the Bill of Materials&lt;br /&gt;
==Frame==&lt;br /&gt;
#Make cuts in the 20mmx20mm aluminum extrusions: 400mmx3; 250mm*2; 320mm*2&lt;br /&gt;
#Slide T-Nuts for the Y Axis Idler, Motor Mount and Mounting Brackets onto the 250mm aluminum extrusions&lt;br /&gt;
#Slide T-Nuts for the Z-Axis Motor Mounts and Vertical Frame Mounts on two 400mm aluminum extrusions&lt;br /&gt;
#Complete the 290mmx400mm horizontal frame by assembling a rectangle using the 290mm and 400mm extrusions and four corner brackets.&lt;br /&gt;
#Place three corner brackets and one printer foot / printer foot bracket as feet for the horizontal frame.&lt;br /&gt;
==X-Axis==&lt;br /&gt;
#Attach the X-Axis Motor to the X-Axis Motor Mount.&lt;br /&gt;
#Place three LM8UU Linear Bearings in the X-Axis Carriage Bracket and fasten them in place with small zip ties.&lt;br /&gt;
#Attach the X-Axis Motor Mount and X-Axis Carriage Bracket to the X-Axis Motor with two 8mm smooth rods (300mm).&lt;br /&gt;
&lt;br /&gt;
==Y-Axis==&lt;br /&gt;
#Attach the Y-Axis Motor to the Y Axis Motor Mount and both onto the Horizontal Frame.&lt;br /&gt;
#Attach the Y-Axis Pulley to the Y Axis Idler Using an M5 bolt and nut.&lt;br /&gt;
#Attach the Y-Axis Idler to the Horizontal Frame.&lt;br /&gt;
#Assemble two 320mm extrusions with one 400mm extrusion to form the vertical frame.&lt;br /&gt;
#Attach the Vertical Frame to the Horizontal Frame using two corner brackets and T-Nuts.&lt;br /&gt;
#Attach LM8UU bearings to each of the Bed Mounting Brackets using Zip Ties.&lt;br /&gt;
#Attach the Bed Mounting Brackets and Y-Axis Belt Holder to the aluminum bed plate.&lt;br /&gt;
#Slide two 8mm rods through the LM8UU bearings.&lt;br /&gt;
#Attach the Aluminum Bed Plate to the Horizontal Frame using the Y Axis Mounting Brackets.  Make sure they are parallel and that the bed slides easily before tightening the screws.&lt;br /&gt;
#Attach the Y Axis Belt around the Y-Axis Motor, Idler and Belt Holder.&lt;br /&gt;
#Use small Zip Ties to hold the Y-Axis Belt in place with reasonable tension.&lt;br /&gt;
#Further tension the Y-Axis Belt with a Clothes Pin Spring.&lt;br /&gt;
==Z-Axis==&lt;br /&gt;
#Attach the Z-Axis Top Left and Right Brackets to the front of the Vertical Frame Crossbar using T-Nuts.&lt;br /&gt;
#Attach the Z-Axis Motors to the Z-Axis Motor Mounts using M3 bolts.&lt;br /&gt;
#Attach the Z-Axis Couplers to the Z-Axis Acme Rods using the associated set-screws.&lt;br /&gt;
#Place the Z-Axis Couplers on the Z-Axis Motor Axles.&lt;br /&gt;
#Place the 8mm Smooth Rods in the related holes on the Z-Axis Motor Mounts.&lt;br /&gt;
#Place the Brass Nuts of X-Axis on the Z-Axis by turning the Z-Axis Acme Rods.&lt;br /&gt;
#Place the Z-Axis Smooth Rods in the related holes on the Top Left and Right Brackets.&lt;br /&gt;
#Tighten the Top Left and Right Brackets when you have made the Z-Axis Vertical and ensured that the X-Axis may move smoothly up and down.&lt;br /&gt;
&lt;br /&gt;
==Extruder==&lt;br /&gt;
#Attach the Aluminum Extruder Block to the lower two holes of the Extruder Motor and Extruder Mounting Bracket using M3 screws.&lt;br /&gt;
#Attach the Extruder Tube through the 6mm threaded hole of the Aluminum Extruder Block.&lt;br /&gt;
#Wind two 6mm nuts up the Extruder Tube to make sure that it stays in place.  The top of the Extruder Tube should be even with the top of the Aluminum Extruder Block.&lt;br /&gt;
#Attach the Extruder Heater Block and Brass Nozzle to the Extruder Tube.&lt;br /&gt;
#Attach the Extruder Idler to the Extruder Idler Bracket using an M4 screw and Nut&lt;br /&gt;
#Attach the Extruder Bracket and Idler Bracket to the two top holes of the Extruder Motor using M3 screws.&lt;br /&gt;
#Place the Extruder Tensioner Spring in the Extruder between the Idler Bracket and the Extruder Bracket.&lt;br /&gt;
&lt;br /&gt;
==Electronics==&lt;br /&gt;
#Solder wires on the Heated Bed.&lt;br /&gt;
#Attach the Bed Thermistor to the Heated Bed&lt;br /&gt;
#Place the Heating Resistor in the Extruder Heater Block.&lt;br /&gt;
#Place the Extruder Thermistor in the Extruder Heater Block.&lt;br /&gt;
#Place the X, Y and Z End-Stops in their Respective Positions on the Printer.&lt;br /&gt;
#Prepare a Power Cable for the Power Supply.&lt;br /&gt;
#Prepare Wires to run from the Power Supply to the RAMPS Board.&lt;br /&gt;
#Prepare the Pololu Heat Sinks for the Pololu Drivers&lt;br /&gt;
#Carefully Insert the Pololus in Position on the RAMPS Board.&lt;br /&gt;
#Place the RAMPS Board on the Arduino.&lt;br /&gt;
#Place the RAMPS and Arduino on the Back of the Vertical Frame Using the T-Nuts (already on the vertical frame) and M4 screws.&lt;br /&gt;
#Run the wires of each electronics device along the frame to the RAMPS Board.  Wrap the Extruder Wires and Y-Axis Wires in a Spiral Cable Carrier. Attach the wires neatly and securely to the framw using zip ties.&lt;br /&gt;
#Attach all wires to the RAMPS Board.&lt;br /&gt;
&lt;br /&gt;
=Part Library=&lt;br /&gt;
&lt;br /&gt;
Here are the parts for the printer: (Nov. 23, 2019 - Note that the Y Belt Holder still needs to be drawn up in FreeCAD; we are still working on some minor edits to some of the parts - for the moment, we are drilling some holes in them for example)&lt;br /&gt;
&amp;lt;gallery perrow=6&amp;gt;&lt;br /&gt;
File:OSEPrusaXAxisIdler.png|&#039;&#039;&#039;OSE Prusa X Axis Idler&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisIdler.FCStd]]&lt;br /&gt;
File:OSEPrusaXAxisMotorMount.png|&#039;&#039;&#039;OSE Prusa X Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisMotorMount.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaYAxisIdler.png|&#039;&#039;&#039;OSE Prusa Y Axis Idler&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYAxisIdler.FCStd]]&lt;br /&gt;
File:OSEPrusaYAxisMotorMount.png&#039;&#039;&#039;OSE Prusa Y Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisMotorMount.FCStd]]&lt;br /&gt;
File:OSEPrusaYAxisBracket.png&#039;&#039;&#039;OSE Prusa Y Axis Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYAxisBracket.FCStd]]&lt;br /&gt;
File:OSEPrusaYBeltHolder.png|&#039;&#039;&#039;OSE Prusa Y Belt Holder&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYBeltHolder.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaZAxisMotorMount.png|&#039;&#039;&#039;OSE Prusa Z Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisMotorMount.FCStd]]&lt;br /&gt;
File:OSEPrusaTopLeftBracket.png|&#039;&#039;&#039;OSE Prusa Top Left Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisTopBracketLR.FCStd]]&lt;br /&gt;
File:OSEPrusaTopRightBracket.png|&#039;&#039;&#039;OSE Prusa Top Right Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisTopBracketLR.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaPrinterFoot.png|&#039;&#039;&#039;OSE Prusa Printer Foot&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaPrinterFoot.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaBedBracket.png|&#039;&#039;&#039;OSE Prusa Bed Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaBedBracket.FCStd]]&lt;br /&gt;
File:OSEPrusaBedPlate.png|&#039;&#039;&#039; OSE Prusa Bed Plate&#039;&#039;&#039; - FreeCad = [[File:OSEPrusaBedPlate.FCStd]]&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
==Extruder==&lt;br /&gt;
This printer makes use of the OSE D3D [[Simple Extruder]]&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=OSE_Prusa&amp;diff=204558</id>
		<title>OSE Prusa</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=OSE_Prusa&amp;diff=204558"/>
		<updated>2019-12-02T21:07:08Z</updated>

		<summary type="html">&lt;p&gt;Wneal: /* Part Library */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=OSE Prusa=&lt;br /&gt;
Based on a Chinese version of the Prusa i3 printer, this represents a simple and low-part-count option for the Open Source Ecology product system. (Nov. 22, 2019 We are in the process of replicating this printer and will assemble it in Guyana in late November, 2019.)&lt;br /&gt;
[https://photos.app.goo.gl/kMcaP3xVbS65nSns9 OSE Prusa Slideshow]&lt;br /&gt;
&lt;br /&gt;
=Bill of Materials=&lt;br /&gt;
[https://www.amazon.ca/gp/product/B01BZ5ND8O/ref=ppx_od_dt_b_asin_title_s00?ie=UTF8&amp;amp;psc=1 OSE Prusa Bill of Materials]&lt;br /&gt;
&lt;br /&gt;
=Build Instructions=&lt;br /&gt;
#Purchase and organize all parts from the Bill of Materials&lt;br /&gt;
==Frame==&lt;br /&gt;
#Make cuts in the 20mmx20mm aluminum extrusions: 400mmx3; 250mm*2; 320mm*2&lt;br /&gt;
#Slide T-Nuts for the Y Axis Idler, Motor Mount and Mounting Brackets onto the 250mm aluminum extrusions&lt;br /&gt;
#Slide T-Nuts for the Z-Axis Motor Mounts and Vertical Frame Mounts on two 400mm aluminum extrusions&lt;br /&gt;
#Complete the 290mmx400mm horizontal frame by assembling a rectangle using the 290mm and 400mm extrusions and four corner brackets.&lt;br /&gt;
#Place three corner brackets and one printer foot / printer foot bracket as feet for the horizontal frame.&lt;br /&gt;
==X-Axis==&lt;br /&gt;
#Attach the X-Axis Motor to the X-Axis Motor Mount.&lt;br /&gt;
#Place three LM8UU Linear Bearings in the X-Axis Carriage Bracket and fasten them in place with small zip ties.&lt;br /&gt;
#Attach the X-Axis Motor Mount and X-Axis Carriage Bracket to the X-Axis Motor with two 8mm smooth rods (300mm).&lt;br /&gt;
&lt;br /&gt;
==Y-Axis==&lt;br /&gt;
#Attach the Y-Axis Motor to the Y Axis Motor Mount and both onto the Horizontal Frame.&lt;br /&gt;
#Attach the Y-Axis Pulley to the Y Axis Idler Using an M5 bolt and nut.&lt;br /&gt;
#Attach the Y-Axis Idler to the Horizontal Frame.&lt;br /&gt;
#Assemble two 320mm extrusions with one 400mm extrusion to form the vertical frame.&lt;br /&gt;
#Attach the Vertical Frame to the Horizontal Frame using two corner brackets and T-Nuts.&lt;br /&gt;
#Attach LM8UU bearings to each of the Bed Mounting Brackets using Zip Ties.&lt;br /&gt;
#Attach the Bed Mounting Brackets and Y-Axis Belt Holder to the aluminum bed plate.&lt;br /&gt;
#Slide two 8mm rods through the LM8UU bearings.&lt;br /&gt;
#Attach the Aluminum Bed Plate to the Horizontal Frame using the Y Axis Mounting Brackets.  Make sure they are parallel and that the bed slides easily before tightening the screws.&lt;br /&gt;
#Attach the Y Axis Belt around the Y-Axis Motor, Idler and Belt Holder.&lt;br /&gt;
#Use small Zip Ties to hold the Y-Axis Belt in place with reasonable tension.&lt;br /&gt;
#Further tension the Y-Axis Belt with a Clothes Pin Spring.&lt;br /&gt;
==Z Axis==&lt;br /&gt;
#Attach the Z-Axis Top Left and Right Brackets to the front of the Vertical Frame Crossbar using T-Nuts.&lt;br /&gt;
#Attach the Z-Axis Motors to the Z-Axis Motor Mounts using M3 bolts.&lt;br /&gt;
#Attach the Z-Axis Couplers to the Z-Axis Acme Rods using the associated set-screws.&lt;br /&gt;
#Place the Z-Axis Couplers on the Z-Axis Motor Axles.&lt;br /&gt;
#Place the 8mm Smooth Rods in the related holes on the Z-Axis Motor Mounts.&lt;br /&gt;
#Place the Brass Nuts of X-Axis on the Z-Axis by turning the Z-Axis Acme Rods.&lt;br /&gt;
#Place the Z-Axis Smooth Rods in the related holes on the Top Left and Right Brackets.&lt;br /&gt;
#Tighten the Top Left and Right Brackets when you have made the Z-Axis Vertical and ensured that the X-Axis may move smoothly up and down.&lt;br /&gt;
==Extruder==&lt;br /&gt;
#Attach the Aluminum Extruder Block to the lower two holes of the Extruder Motor and Extruder Mounting Bracket using M3 screws.&lt;br /&gt;
#Attach the Extruder Tube through the 6mm threaded hole of the Aluminum Extruder Block.&lt;br /&gt;
#Wind two 6mm nuts up the Extruder Tube to make sure that it stays in place.  The top of the Extruder Tube should be even with the top of the Aluminum Extruder Block.&lt;br /&gt;
#Attach the Extruder Heater Block and Brass Nozzle to the Extruder Tube.&lt;br /&gt;
#Attach the Extruder Idler to the Extruder Idler Bracket using an M4 screw and Nut&lt;br /&gt;
#Attach the Extruder Bracket and Idler Bracket to the two top holes of the Extruder Motor using M3 screws.&lt;br /&gt;
#Place the Extruder Tensioner Spring in the Extruder between the Idler Bracket and the Extruder Bracket.&lt;br /&gt;
&lt;br /&gt;
==Electronics==&lt;br /&gt;
#Solder wires on the Heated Bed.&lt;br /&gt;
#Attach the Bed Thermistor to the Heated Bed&lt;br /&gt;
#Place the Heating Resistor in the Extruder Heater Block.&lt;br /&gt;
#Place the Extruder Thermistor in the Extruder Heater Block.&lt;br /&gt;
#Place the X, Y and Z End-Stops in their Respective Positions on the Printer.&lt;br /&gt;
#Prepare a Power Cable for the Power Supply.&lt;br /&gt;
#Prepare Wires to run from the Power Supply to the RAMPS Board.&lt;br /&gt;
#Prepare the Pololu Heat Sinks for the Pololu Drivers&lt;br /&gt;
#Carefully Insert the Pololus in Position on the RAMPS Board.&lt;br /&gt;
#Place the RAMPS Board on the Arduino.&lt;br /&gt;
#Place the RAMPS and Arduino on the Back of the Vertical Frame Using the T-Nuts (already on the vertical frame) and M4 screws.&lt;br /&gt;
#Run the wires of each electronics device along the frame to the RAMPS Board.  Wrap the Extruder Wires and Y-Axis Wires in a Spiral Cable Carrier. Attach the wires neatly and securely to the framw using zip ties.&lt;br /&gt;
#Attach all wires to the RAMPS Board.&lt;br /&gt;
&lt;br /&gt;
=Part Library=&lt;br /&gt;
&lt;br /&gt;
Here are the parts for the printer: (Nov. 23, 2019 - Note that the Y Belt Holder still needs to be drawn up in FreeCAD; we are still working on some minor edits to some of the parts - for the moment, we are drilling some holes in them for example)&lt;br /&gt;
&amp;lt;gallery perrow=6&amp;gt;&lt;br /&gt;
File:OSEPrusaXAxisIdler.png|&#039;&#039;&#039;OSE Prusa X Axis Idler&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisIdler.FCStd]]&lt;br /&gt;
File:OSEPrusaXAxisMotorMount.png|&#039;&#039;&#039;OSE Prusa X Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisMotorMount.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaYAxisIdler.png|&#039;&#039;&#039;OSE Prusa Y Axis Idler&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYAxisIdler.FCStd]]&lt;br /&gt;
File:OSEPrusaYAxisMotorMount.png&#039;&#039;&#039;OSE Prusa Y Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisMotorMount.FCStd]]&lt;br /&gt;
File:OSEPrusaYAxisBracket.png&#039;&#039;&#039;OSE Prusa Y Axis Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYAxisBracket.FCStd]]&lt;br /&gt;
File:OSEPrusaYBeltHolder.png|&#039;&#039;&#039;OSE Prusa Y Belt Holder&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYBeltHolder.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaZAxisMotorMount.png|&#039;&#039;&#039;OSE Prusa Z Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisMotorMount.FCStd]]&lt;br /&gt;
File:OSEPrusaTopLeftBracket.png|&#039;&#039;&#039;OSE Prusa Top Left Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisTopBracketLR.FCStd]]&lt;br /&gt;
File:OSEPrusaTopRightBracket.png|&#039;&#039;&#039;OSE Prusa Top Right Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisTopBracketLR.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaPrinterFoot.png|&#039;&#039;&#039;OSE Prusa Printer Foot&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaPrinterFoot.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaBedBracket.png|&#039;&#039;&#039;OSE Prusa Bed Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaBedBracket.FCStd]]&lt;br /&gt;
File:OSEPrusaBedPlate.png|&#039;&#039;&#039; OSE Prusa Bed Plate&#039;&#039;&#039; - FreeCad = [[File:OSEPrusaBedPlate.FCStd]]&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
==Extruder==&lt;br /&gt;
This printer makes use of the OSE D3D [[Simple Extruder]]&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=OSE_Prusa&amp;diff=204557</id>
		<title>OSE Prusa</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=OSE_Prusa&amp;diff=204557"/>
		<updated>2019-12-02T21:05:40Z</updated>

		<summary type="html">&lt;p&gt;Wneal: /* Bill of Materials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=OSE Prusa=&lt;br /&gt;
Based on a Chinese version of the Prusa i3 printer, this represents a simple and low-part-count option for the Open Source Ecology product system. (Nov. 22, 2019 We are in the process of replicating this printer and will assemble it in Guyana in late November, 2019.)&lt;br /&gt;
[https://photos.app.goo.gl/kMcaP3xVbS65nSns9 OSE Prusa Slideshow]&lt;br /&gt;
&lt;br /&gt;
=Bill of Materials=&lt;br /&gt;
[https://www.amazon.ca/gp/product/B01BZ5ND8O/ref=ppx_od_dt_b_asin_title_s00?ie=UTF8&amp;amp;psc=1 OSE Prusa Bill of Materials]&lt;br /&gt;
&lt;br /&gt;
=Build Instructions=&lt;br /&gt;
#Purchase and organize all parts from the Bill of Materials&lt;br /&gt;
==Frame==&lt;br /&gt;
#Make cuts in the 20mmx20mm aluminum extrusions: 400mmx3; 250mm*2; 320mm*2&lt;br /&gt;
#Slide T-Nuts for the Y Axis Idler, Motor Mount and Mounting Brackets onto the 250mm aluminum extrusions&lt;br /&gt;
#Slide T-Nuts for the Z-Axis Motor Mounts and Vertical Frame Mounts on two 400mm aluminum extrusions&lt;br /&gt;
#Complete the 290mmx400mm horizontal frame by assembling a rectangle using the 290mm and 400mm extrusions and four corner brackets.&lt;br /&gt;
#Place three corner brackets and one printer foot / printer foot bracket as feet for the horizontal frame.&lt;br /&gt;
==X-Axis==&lt;br /&gt;
#Attach the X-Axis Motor to the X-Axis Motor Mount.&lt;br /&gt;
#Place three LM8UU Linear Bearings in the X-Axis Carriage Bracket and fasten them in place with small zip ties.&lt;br /&gt;
#Attach the X-Axis Motor Mount and X-Axis Carriage Bracket to the X-Axis Motor with two 8mm smooth rods (300mm).&lt;br /&gt;
&lt;br /&gt;
==Y-Axis==&lt;br /&gt;
#Attach the Y-Axis Motor to the Y Axis Motor Mount and both onto the Horizontal Frame.&lt;br /&gt;
#Attach the Y-Axis Pulley to the Y Axis Idler Using an M5 bolt and nut.&lt;br /&gt;
#Attach the Y-Axis Idler to the Horizontal Frame.&lt;br /&gt;
#Assemble two 320mm extrusions with one 400mm extrusion to form the vertical frame.&lt;br /&gt;
#Attach the Vertical Frame to the Horizontal Frame using two corner brackets and T-Nuts.&lt;br /&gt;
#Attach LM8UU bearings to each of the Bed Mounting Brackets using Zip Ties.&lt;br /&gt;
#Attach the Bed Mounting Brackets and Y-Axis Belt Holder to the aluminum bed plate.&lt;br /&gt;
#Slide two 8mm rods through the LM8UU bearings.&lt;br /&gt;
#Attach the Aluminum Bed Plate to the Horizontal Frame using the Y Axis Mounting Brackets.  Make sure they are parallel and that the bed slides easily before tightening the screws.&lt;br /&gt;
#Attach the Y Axis Belt around the Y-Axis Motor, Idler and Belt Holder.&lt;br /&gt;
#Use small Zip Ties to hold the Y-Axis Belt in place with reasonable tension.&lt;br /&gt;
#Further tension the Y-Axis Belt with a Clothes Pin Spring.&lt;br /&gt;
==Z Axis==&lt;br /&gt;
#Attach the Z-Axis Top Left and Right Brackets to the front of the Vertical Frame Crossbar using T-Nuts.&lt;br /&gt;
#Attach the Z-Axis Motors to the Z-Axis Motor Mounts using M3 bolts.&lt;br /&gt;
#Attach the Z-Axis Couplers to the Z-Axis Acme Rods using the associated set-screws.&lt;br /&gt;
#Place the Z-Axis Couplers on the Z-Axis Motor Axles.&lt;br /&gt;
#Place the 8mm Smooth Rods in the related holes on the Z-Axis Motor Mounts.&lt;br /&gt;
#Place the Brass Nuts of X-Axis on the Z-Axis by turning the Z-Axis Acme Rods.&lt;br /&gt;
#Place the Z-Axis Smooth Rods in the related holes on the Top Left and Right Brackets.&lt;br /&gt;
#Tighten the Top Left and Right Brackets when you have made the Z-Axis Vertical and ensured that the X-Axis may move smoothly up and down.&lt;br /&gt;
==Extruder==&lt;br /&gt;
#Attach the Aluminum Extruder Block to the lower two holes of the Extruder Motor and Extruder Mounting Bracket using M3 screws.&lt;br /&gt;
#Attach the Extruder Tube through the 6mm threaded hole of the Aluminum Extruder Block.&lt;br /&gt;
#Wind two 6mm nuts up the Extruder Tube to make sure that it stays in place.  The top of the Extruder Tube should be even with the top of the Aluminum Extruder Block.&lt;br /&gt;
#Attach the Extruder Heater Block and Brass Nozzle to the Extruder Tube.&lt;br /&gt;
#Attach the Extruder Idler to the Extruder Idler Bracket using an M4 screw and Nut&lt;br /&gt;
#Attach the Extruder Bracket and Idler Bracket to the two top holes of the Extruder Motor using M3 screws.&lt;br /&gt;
#Place the Extruder Tensioner Spring in the Extruder between the Idler Bracket and the Extruder Bracket.&lt;br /&gt;
&lt;br /&gt;
==Electronics==&lt;br /&gt;
#Solder wires on the Heated Bed.&lt;br /&gt;
#Attach the Bed Thermistor to the Heated Bed&lt;br /&gt;
#Place the Heating Resistor in the Extruder Heater Block.&lt;br /&gt;
#Place the Extruder Thermistor in the Extruder Heater Block.&lt;br /&gt;
#Place the X, Y and Z End-Stops in their Respective Positions on the Printer.&lt;br /&gt;
#Prepare a Power Cable for the Power Supply.&lt;br /&gt;
#Prepare Wires to run from the Power Supply to the RAMPS Board.&lt;br /&gt;
#Prepare the Pololu Heat Sinks for the Pololu Drivers&lt;br /&gt;
#Carefully Insert the Pololus in Position on the RAMPS Board.&lt;br /&gt;
#Place the RAMPS Board on the Arduino.&lt;br /&gt;
#Place the RAMPS and Arduino on the Back of the Vertical Frame Using the T-Nuts (already on the vertical frame) and M4 screws.&lt;br /&gt;
#Run the wires of each electronics device along the frame to the RAMPS Board.  Wrap the Extruder Wires and Y-Axis Wires in a Spiral Cable Carrier. Attach the wires neatly and securely to the framw using zip ties.&lt;br /&gt;
#Attach all wires to the RAMPS Board.&lt;br /&gt;
&lt;br /&gt;
=Part Library=&lt;br /&gt;
&lt;br /&gt;
Here are the parts for the printer: (Nov. 23, 2019 - Note that the Y Belt Holder still needs to be drawn up in FreeCAD; we are still working on some minor edits to some of the parts - for the moment, we are drilling some holes in them for example)&lt;br /&gt;
&amp;lt;gallery perrow=6&amp;gt;&lt;br /&gt;
File:OSEPrusaXAxisIdler.png|&#039;&#039;&#039;OSE Prusa X Axis Idler&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisIdler.FCStd]]&lt;br /&gt;
File:OSEPrusaXAxisMotorMount.png|&#039;&#039;&#039;OSE Prusa X Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisMotorMount.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaYAxisIdler.png|&#039;&#039;&#039;OSE Prusa Y Axis Idler&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYAxisIdler.FCStd]]&lt;br /&gt;
File:OSEPrusaYAxisMotorMount.png&#039;&#039;&#039;OSE Prusa Y Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisMotorMount.FCStd]]&lt;br /&gt;
File:OSEPrusaYAxisBracket.png&#039;&#039;&#039;OSE Prusa Y Axis Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYAxisBracket.FCStd]]&lt;br /&gt;
File:OSEPrusaYBeltHolder.png|&#039;&#039;&#039;OSE Prusa Y Belt Holder&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYBeltHolder.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaZAxisMotorMount.png|&#039;&#039;&#039;OSE Prusa Z Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisMotorMount.FCStd]]&lt;br /&gt;
File:OSEPrusaTopLeftBracket.png|&#039;&#039;&#039;OSE Prusa Top Left Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisTopBracketLR.FCStd]]&lt;br /&gt;
File:OSEPrusaTopRightBracket.png|&#039;&#039;&#039;OSE Prusa Top Right Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisTopBracketLR.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaPrinterFoot.png|&#039;&#039;&#039;OSE Prusa Printer Foot&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaPrinterFoot.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaBedBracket.png|&#039;&#039;&#039;OSE Prusa Bed Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaBedBracket.FCStd]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
==Extruder==&lt;br /&gt;
This printer makes use of the OSE D3D [[Simple Extruder]]&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=204556</id>
		<title>William Neal Log</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=204556"/>
		<updated>2019-12-02T20:31:13Z</updated>

		<summary type="html">&lt;p&gt;Wneal: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{RightTOC}}&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;600&amp;quot; height=&amp;quot;600&amp;quot; src=&amp;quot;https://osedev.org/wiki/William?start=2/1/2017&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
=Saturday November 30 - Sunday December 1=&lt;br /&gt;
Finished OSE Prusa Build in Guyana. Used [https://www.repetier.com/documentation/repetier-firmware/ Repetier Firmware] and [https://www.repetier.com/ Repetier Host] to control the printer.&lt;br /&gt;
=Thursday November 28 - Friday November 29=&lt;br /&gt;
Workshop with the Guyana Prison Service - 12 prison staff from five facilities in Guyana. Reactivated 6 discarded computers using Ubuntu and OSE Linux. [[Introduction to Python]]. [https://m.facebook.com/groups/398759490316633?view=permalink&amp;amp;id=1215623975296843 OSE Prusa Build]&lt;br /&gt;
&lt;br /&gt;
=Saturday November 23  Wednesday November 27=&lt;br /&gt;
Workshop in Guyana with the Guyana Prison Service: The CSSP Project.  This project aims to replace the current model of prison management with an approach based on human nobility, education and rehabilitation.&lt;br /&gt;
=Thursday November 28=&lt;br /&gt;
[[OSE Linux]] - we got six old computers working on Ubuntu using flash drives.  Tomorrow will have an Open Source software workshop using OSE Linux on USB drives. We will use Python, FreeCAD, LibreOffice, etc. Showed the TED talk to our group of 12 prison officers from five facilities in Guyana.&lt;br /&gt;
&lt;br /&gt;
=Saturday November 2 - Friday November 22=&lt;br /&gt;
Worked on the [[OSE Prusa]] in order to support the establishment of a STEM centre in Trinidad and Tobago and to prepare for a workshop with the Government of Guyana.&lt;br /&gt;
#Items in a numbered list&lt;br /&gt;
#More Items&lt;br /&gt;
##Yet More&lt;br /&gt;
*Items in a bullet list&lt;br /&gt;
*More Items&lt;br /&gt;
**Yet More&lt;br /&gt;
&lt;br /&gt;
=Thursday October 24 - Friday November 1=&lt;br /&gt;
*Tested printing on the London replication of the D3D printer for the first time.&lt;br /&gt;
*Team of 9 students from Western university preparing a project around OSE - D3D replication + filament extruder replication + Chinese Reprap Prusa i3 reverse engineering.&lt;br /&gt;
=Sunday October 12 - Wednesday October 23=&lt;br /&gt;
*Updated some files used in the simple extruder build [https://wiki.opensourceecology.org/wiki/Simple_3D_Printer_Extruder#CAD here.]&lt;br /&gt;
&lt;br /&gt;
=Friday October 4 - Saturday October 11=&lt;br /&gt;
*Successfully tested D3D simple extruder based on Chinese Prusa i3.&lt;br /&gt;
*D3D challenge - Y axis end stop stopped working...&lt;br /&gt;
*Almost finished replicating first of two D3D printers in London Ontario.&lt;br /&gt;
*Preparing a D3D / Brushless motor workshop for the Guyana Prison Service. &lt;br /&gt;
*FreeCAD activity completed at Western University - varied response of individuals in the groups - the allocated time was too short. &lt;br /&gt;
=Friday September 27 - Thursday October 3=&lt;br /&gt;
*Continued work on D3D build.&lt;br /&gt;
*Experimenting with highly differentiated instruction unconstrained by government curricular concerns - our STEM club&#039;s three sections - Robotics / Computers and CAD / STEM projects have each gradually evolved over the last several weeks such that small groups of 1-4 students specialize on special tasks.&lt;br /&gt;
*Introduced FreeCAD to a group of junior youth from a local neighborhood. After about 40 minutes each group of two participants completed a motor rotor design.&lt;br /&gt;
*Second FreeCAD session with a group of 40 teacher candidate students at Western University&#039;s Althouse. Also used highly differentiated / interdisciplinary instruction with this group. After one hour and a half, most groups were able to generate several parts of a brushless motor and begin the process of parameterizing with a spreadsheet and creating an assembly.  Some trained engineers in the crowd generated excellent &amp;quot;propellers&amp;quot; for the motor using advanced features.&lt;br /&gt;
&lt;br /&gt;
=Tuesday, September 1 - Thursday, September 26=&lt;br /&gt;
*New School Year - over 40 students participating in our special STEM/Business/Arts program.&lt;br /&gt;
*Two sections of our program, STEM Projects and Computer Programming/CAD,  include OSE-related topics:&lt;br /&gt;
**Building 3D printers&lt;br /&gt;
**3D-printing&lt;br /&gt;
**OSE Motor design and fabrication&lt;br /&gt;
**Filament extruder&lt;br /&gt;
**CAD&lt;br /&gt;
*Building a 3D printer in collaboration with Bill Phelan, Vice President of Die-X Ltd.&lt;br /&gt;
*Remote collaboration with Branko Misovic in Holland.&lt;br /&gt;
*Preparing for a two-week 3D-printer build / open source hardware workshop in Guyana in November.&lt;br /&gt;
*Working on simple extruder for the D3D printer.&lt;br /&gt;
*Some 3D-printed parts for the D3D printer are not precise enough as they were printed with 1.0mm and 0.8mm nozzles.  We are switching to a 0.4mm nozzle and re-printing.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 27 - Monday September 1=&lt;br /&gt;
*Preparation for STEM camps in China. &lt;br /&gt;
*Travel to China.  Caught behind firewall - Internet was actually a large Intranet - difficult to post, communicate or access any useful sites. &lt;br /&gt;
*STEM Camp at Fujing Foreign language school - 10 days - 60 students, 1.5 hours daily - worked on FreeCAD and the OSE motor. &lt;br /&gt;
*Built OSE D3D printer with eight 9-11 year-old students (10 days, 3 hours daily) at EIC Education in Shenzhen.  The students assembled the axes and helped design some custom 3D-printed brackets for the frame which had to be made out of linear rail. The students learned FreeCAD and were able to design useful parts. Ganesh Ramsahai provided support in completing the build and configuration process. Presented the OSE D3D Shenzhen to the EIC Education Group with a half-hour overview and offer to provide remote support.&lt;br /&gt;
*STEM Camp at Zhangjiagang Foreign Language School in Jiangsu province. 30 students, 3 days, 6 hours per day.  Introduced FreeCAD and had the students design rotors and stators for the OSE brushless motor.&lt;br /&gt;
*Showed the TED talk to four different groups.&lt;br /&gt;
*Uploaded raw FreeCAD and stl files from the camps at Fujing Foreign Language School and Zhangjiagang Foreign Language School to [https://drive.google.com/open?id=1K7U8lEGqRgxwQf-WNX1Llbf-WE7LJCqL Google Drive]&lt;br /&gt;
*Uploaded [https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH custom files] generated during the build of the D3D 19.08 Shenzhen.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 20 - Friday July 26=&lt;br /&gt;
LIA summer STEM camp continued with 38 different students from Shenzhen, China.  The students discussed, in the context of Marcin&#039;s TED Talk, the concept that the human mind, focused and in collaboration with others, has the power to make positive changes in society.  Design of covers and caps for the OSE radial motor. Photos from the STEM Camp activities are [https://photos.app.goo.gl/zcpKk8jaFcDon31K7 here].  Trying to find the USB where we collected all the FreeCAD files.  These will be posted ASAP.&lt;br /&gt;
&lt;br /&gt;
=Monday July 15 - Friday July 19=&lt;br /&gt;
LIA summer STEM camp with 23 students from Vietnam and China. OSE Motor project part II - designing, printing and testing a radial motor. The motor concept was based on the following video: [https://www.youtube.com/watch?v=JkwLpAAfBVI 3D-Printed Axial Brushless Motor for Drones] Students were presented with the concept and asked to design such a motor from scratch using two rotors with eight disc magnets each and two sets of six wire loops.&lt;br /&gt;
&lt;br /&gt;
=Wednesday July 10 - Sunday July 14=&lt;br /&gt;
Preparation for summer STEM Camps at LIA.  Prepared 3D printers.  Began replication of two D3D v19.06 units.&lt;br /&gt;
=Friday June 28 - Tuesday July 9= &lt;br /&gt;
Open Source Ecology Microfactory STEAM Camp&lt;br /&gt;
=Thursday June 27=&lt;br /&gt;
Titan Aero finally working better with 1.5 full turns + a little bit more for good measure - has not jammed all afternoon now - three parts printed.  Logistics for Microfatory STEAM Camp - rented a vehicle and contacted a few participants. A prototype of the OSE extruder has been nearly completed. The extruder gear is scheduled to arrive at Factor e Farm by tomorrow. Then it will be ready for testing.  [https://photos.app.goo.gl/fWUX8ynAdqcn6Fvs6 OSE D3D Extruder - Photo Album][https://drive.google.com/open?id=17BLyvyk1EbrMOhkCfeSwByAq86SemSLX Files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 25 - Wednesday June 26=&lt;br /&gt;
OSE D3D Extruder.  Worked on attaching extruder to X-axis. Ordered extruder motor gears to arrive at FeF on Friday. Printed out bracket 1 successfully. Working on large aluminium block and designing x-axis adapter.&lt;br /&gt;
=Monday June 24=&lt;br /&gt;
Discussion about design of OSE Power Electronics. Problem - transformers are expensive and inflexible. Solution - research the feasibility of creating a 120V buck converter.  Would it be sufficiently efficient and would it be feasible to build?  Here are some potential parts to use: [https://www.digikey.ca/product-detail/en/comchip-technology/GBPC5010W-G/641-1389-ND/2074854 1kV Recifier] [https://www.digikey.ca/product-detail/en/ixys/IXFX120N65X2/IXFX120N65X2-ND/5629498?utm_adgroup=&amp;amp;mkwid=sFMkJ49os&amp;amp;pcrid=311971049444&amp;amp;pkw=&amp;amp;pmt=&amp;amp;pdv=c&amp;amp;productid=5629498&amp;amp;slid=&amp;amp;gclid=EAIaIQobChMIgbDd1fSC4wIVwkOGCh1f8gijEAQYAyABEgJGffD_BwE 650V MOSFET].  One problem seems to be that there may be a high level of energy loss in the circuit....[https://www.digikey.com/product-detail/en/everlight-electronics-co-ltd/H11L1S-TA/1080-1201-1-ND/2675935 Optocoupler] (to isolate the Arduino)[http://fpec.ucf.edu/teaching/EEL%205245%20Lectures/Lecture13%20Chapter4_BoostandBuckBoost_CCM_Analysis.pdf Some background theory]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 19 - Sunday June 23=&lt;br /&gt;
DIY Buck Converter based on the following video (and others): https://www.youtube.com/watch?v=L5oeY53pE0E&amp;amp;t=162s. [https://photos.app.goo.gl/kkHUwBQtD7h48mhB6 Photos.] All four 3D printers are down.  A crucial piece of the extruder of the most reliable printer finally broke. CAD already done for the replacement part. Got the OSE D3D working again on Friday.  Ready for printing on Monday - will print replacement part for other printer.  Other 2 printers almost working...&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 18=&lt;br /&gt;
[https://www.pythonpowerelectronics.com/ Python Power Electronics]&lt;br /&gt;
=Thursday June 13 - Monday June 17=&lt;br /&gt;
Buck Converters. OSE [[Power Electronics]] research. Arduino as controller of Power electronics - frequency issues / limitations. Scalability of Power electronics - can we add modular components to increase voltage, current, etc.?  &lt;br /&gt;
=Tuesday June 11 - Wednesday June 12=&lt;br /&gt;
Completed and sent CAD Drawings for OSE 3D Printer. Spent most of Wednesday working through a jam on the Titan Aero - it has jammed more in a few days than our other extruder has jammed in over three years.&lt;br /&gt;
=Monday June 10=&lt;br /&gt;
[https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH FreeCAD Drawings] for OSE 3D Printer. Note the use of parametric design in the CAD files - Spreadsheet values become variables used in constraint dimensions.&lt;br /&gt;
The following is my most recent FreeCAD Parametric Part Design and Drawing Workflow:[[FreeCAD Workflow]]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 5 - Sunday June 9=&lt;br /&gt;
[https://www.youtube.com/watch?v=CEhBN5_fO5o|DC-DC Buck Converters]&lt;br /&gt;
Power Supply: Transformer + Buck Converter + Ripple Smoothing Circuitry&lt;br /&gt;
=Tuesday June 4=&lt;br /&gt;
*[[Arduino Controlled Power Supply]] - ordered many components.&lt;br /&gt;
*Many electronic components specified in DIY articles and videos are now listed as obsolete.  Finding replacement parts is not easy. Case in point: LM338K Linear Voltage Regulators - Listed as obsolete on the Mouser website and selling for $91 or more on the Digi-key website.&lt;br /&gt;
*[https://www.eetimes.com/document.asp?doc_id=1333695# Article about obsolescence and demand and supply issues in the electronics industry]&lt;br /&gt;
&lt;br /&gt;
=Saturday June 1 - Monday June 3=&lt;br /&gt;
Reviewed [[OSE Design Guides]] Reviewed [[DIY Semiconductors]] Microfactory STEAM Camp Critical Path [[Arduino Controlled Power Supply]] Fabrication of aluminium blocks for hot end for OSE 3D printer extruder. Parametric modelling in FreeCAD.&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 28 - Friday May 31=&lt;br /&gt;
[[Halbach Array Brushless Motor]]&lt;br /&gt;
&lt;br /&gt;
=Monday May 27= &lt;br /&gt;
[https://www.youtube.com/watch?v=uOQk8SJso6Q How to Control an ESC with an Arduino] [https://photos.app.goo.gl/HMvWbigvuw3S26YG8 Test of the OSE Motor].&lt;br /&gt;
&lt;br /&gt;
=Friday May 24 - Sunday May 26= &lt;br /&gt;
Not all that much.&lt;br /&gt;
=Thursday May 23=&lt;br /&gt;
Thank you to Marcin and Catarina for a refreshing, enlightening and enjoyable visit to Factor e Farm and the Seed Ecohome. Returned to London.&lt;br /&gt;
=Wednesday May 22=&lt;br /&gt;
Skype appointment - 12pm Missouri time - friend in Colombia. Uploaded FreeCAD files for D3D v19.04 Power Plug Case to Wiki. [https://en.wikipedia.org/wiki/Buck_converter Buck Converter]&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 21=&lt;br /&gt;
[https://www.powerelectronicsnews.com/problems-solutions/power-supply-design-tutorial Power Supply Design Tutorial] Edited the [https://docs.google.com/document/d/1_3t_97giFOtqJ4ExPZdYeVEilCRhMmu0IWLLpBCrG-0/edit?usp=sharing Video Script] &lt;br /&gt;
Contacted STEM people in Nigeria and Pennsylvania based on the OSE STEAM Camp posted in this [https://www.facebook.com/groups/822455171229260/ Facebook Forum]&lt;br /&gt;
Further communication with friends in Mexico regarding the STEAM camp. Contacted a friend of a friend in Kansas City - Baha&#039;i Community.&lt;br /&gt;
&lt;br /&gt;
=Monday May 20=&lt;br /&gt;
Posted Microfactory STEAM camp on several Facebook STEM/STEAM Education pages. [[The Living Curriculum]] [https://github.com/MarlinFirmware/Marlin/issues/8903 Marlin Bed Temperature Settings] Worked on the Titan-Aero extruder repairs. The two parts of the extruder tube must be fairly tight (but not too tight!) to avoid leakage.&lt;br /&gt;
&lt;br /&gt;
=Sunday May 19=&lt;br /&gt;
Printing ABS using the OSE D3D - Set the bed temperature to 83 and the nozzle temperature to 255.  After 5 minutes of printing, several layers were adhering well. Thermal runaway. Tried 80 and 244; thermal runaway again. Joined several online STEM/Education groups.&lt;br /&gt;
&lt;br /&gt;
=Saturday May 18=&lt;br /&gt;
[[OSE Revenue Generation]] - Grameen Bank / Social Business - [[OSE Curriculum]]&lt;br /&gt;
&lt;br /&gt;
=Friday May 17=&lt;br /&gt;
[[OSE STEM Camp Marketing Strategy]]&lt;br /&gt;
=Friday May 10 - Thursday May 16= &lt;br /&gt;
Preparation for trip to Factor e Farm - gathered supplies - PCB boards, glossy paper, wire, magnets, electronic components, hardware, etc. Arrival at Factor e Farm. Work on D3D v. 19.04: [Photos - OSE D3D v19.04 Build at FeF https://www.facebook.com/photo.php?fbid=10161819908970597&amp;amp;set=pcb.1063740287151880&amp;amp;type=3&amp;amp;theater&amp;amp;ifg=1]&lt;br /&gt;
 &lt;br /&gt;
=Friday April 12 - Thursday May 9=&lt;br /&gt;
[https://drive.google.com/open?id=1-DpgMCARsA5iz4JLZtUeP3SD4a3UrXhj OSE Motor Completed] - ready for testing - Open Source Chinese Prusa i3 Printer Extruder - Configured and began printing with OSE D3D - printing very well at the moment - Booked a flight to Kansas City - heading to Factor e Farm soon!&lt;br /&gt;
&lt;br /&gt;
=Monday March 4 - Thursday April 11=&lt;br /&gt;
FRC Robotics - Ryerson University, Western University. OSE Motor - students have made some progress: [https://drive.google.com/open?id=1n99XWM8KMwvnV-tCmcWjImsBG27ReRSc OSE Brushless Motor] Additional work on the [[Simple 3D Printer Extruder]]&lt;br /&gt;
&lt;br /&gt;
=Sunday March 3=&lt;br /&gt;
Completed the first model of the most difficult part to CAD in the extruder - the X-Axis bracket.  Will now print CAD files and measure their accuracy before making changes to the CAD parameters.  Hopefully this process will result in more accurate parts.&lt;br /&gt;
&lt;br /&gt;
=Friday March 1 - Saturday March 2 =&lt;br /&gt;
Further work on open sourcing Chinese Prusa i3 3D printer extruder.&lt;br /&gt;
&lt;br /&gt;
=Monday February 18 - Thursday February 28=&lt;br /&gt;
Began the process of open-sourcing our 3D printer extruder: [[Simple 3D Printer Extruder]] (see photos and CAD files in the 3D Printer Folder) &lt;br /&gt;
Started a new unit in Computer Engineering Technology class.  Two groups of students are working on OSE materials:  &lt;br /&gt;
#The OSE Collaborative Contest&lt;br /&gt;
#The OSE Filament Extruder&lt;br /&gt;
&lt;br /&gt;
=Saturday February 9-Sunday February 17=&lt;br /&gt;
Hosted a group of six STEM students from School of the Nations in Georgetown, Guyana. STEM Camp at London International Academy.  Introduced the concept of the OSE collaborative contest. Introductory FreeCAD activities. Introduced Python computer programming.  Printed out various parts for an open source brushless motor.  [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX Link to CAD Files] (see School of the Nations sub-folder)[[file:Rotor.jpg|200px]] [http://guyanachronicle.com/2019/02/17/nations-benefits-from-robotics-training-in-canada Article in Guyana Chronicle]&lt;br /&gt;
&lt;br /&gt;
=Wednesday February 6= &lt;br /&gt;
[[OSE Coopetition]].  Discussed wiki + part library + documentation of OSE Coopetition.&lt;br /&gt;
&lt;br /&gt;
=Monday February 4=&lt;br /&gt;
Uploaded version 0.1 of the OSE Collaborative Contest Rules to [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest]&lt;br /&gt;
=Wednesday January 30 - Sunday February 3=&lt;br /&gt;
FRC Build season.  [https://drive.google.com/drive/folders/1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH?usp=sharing Team 6162 Cap Alpaca FreeCAD files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday January 29=&lt;br /&gt;
Collected FreeCAD files in a Google drive folder: [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest] &lt;br /&gt;
Summary of Nanjing group&#039;s schedule: [https://docs.google.com/document/d/1R-Dtu3kdZ0u8Qo5w3_vDuNEg5myr8mUmLjSpPOf-HoI/edit?usp=sharing | 2019 Winter Camp]&lt;br /&gt;
Here is some sample work from the FreeCAD workshop:&lt;br /&gt;
*[[File:ReyJessica.png|200px]]&lt;br /&gt;
*[[File:ZJHLSR.png|200px]]&lt;br /&gt;
&lt;br /&gt;
=Sunday January 27 - Monday January 28=&lt;br /&gt;
Discussed record keeping, file sharing and other skills for collaborative literacy. Created a sample page stub: [[Brushless Motor Design]].  Asked students to reflect on sessions learning FreeCAD.  Found that it is not necessary to learn a whole lot about FreeCAD in order to get students learning it.  Demonstrated two sample FreeCAD 0.17 design processes:&lt;br /&gt;
#Design a part like a motor adapter: body - sketch a circle - pad - sketch on a surface - pocket&lt;br /&gt;
#Design a sketch with constraints - some straight lines and some arcs closed in a loop with particular dimensions and angles.&lt;br /&gt;
After that, students were directed to Youtube videos that covered specific additional skills: &lt;br /&gt;
*Threading - inner and outer&lt;br /&gt;
*Polar patterns&lt;br /&gt;
Through this process, I learned how to do these skills from some students and was able to show other students the same, especially with polar patterns.&lt;br /&gt;
&lt;br /&gt;
=Sunday January, 20 - Saturday January 26, 2019=&lt;br /&gt;
Prepared for and welcomed 19 students from Jinling High School in China. Introduced the concept of the OSE Collaborative Contest.  Marcin spoke with the group over Jitsi on Thursday and on Saturday and proposed that the students participate in the OSE Collaborative Contest. It was well received despite the students&#039; fatigue from travel and skiing. Introduced FreeCAD and had students download and install it. Some computers do not immediately work with FreeCAD; hope that the problem may be solved. We plan to further discuss the students&#039; participation in the contest tomorrow and 3D print some of their early FreeCAD work on Monday. Created a link to LIA students&#039; FreeCAD work.  Currently the folder is being used for FRC preparation.  After the FRC robot is built, we are planning to transition to OSE-related work in this folder: [https://drive.google.com/open?id=1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH LIA OSE Club CAD Files]&lt;br /&gt;
&lt;br /&gt;
=Thursday January 10 - Saturday Jan 19, 2019=&lt;br /&gt;
Heaviest schedule of the year - January and February; progress slower during this time. Working on STEM Curriculum for FeF STEM Camps - [[Summer School 2019]].&lt;br /&gt;
&lt;br /&gt;
=Wed Jan 9, 2019=&lt;br /&gt;
*Use a presentation - template - make a copy - pass this to Heydar - document the simple 3D printing extruder for a low cost 3d printer - [https://docs.google.com/presentation/d/1_kUzO4eRCqrHVpqxSSTs17oLhtikTTyYe_1NxrTKlTI/edit#slide=id.g45ed589c64_0_0]&lt;br /&gt;
*Homework: Complete STEM Curriculum&lt;br /&gt;
&lt;br /&gt;
=January 2, 2019=&lt;br /&gt;
Ordered parts for a brushless motor to be constructed as part of the contest and part of the Computer Engineering Technology class at London International Academy.&lt;br /&gt;
In order to make the collaborative contest work, we will need to create a kit of parts to be easily shipped to participating schools.&lt;br /&gt;
&lt;br /&gt;
=December 24 2018-January 1, 2019=&lt;br /&gt;
Took a break. Reflected on plans for OSE London / OSE Club at London International Academy / OSE Collaborative Contest&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=December 23, 2018=&lt;br /&gt;
Defined particulars of [[OSE STEM Camps]].&lt;br /&gt;
&lt;br /&gt;
=December 22,2018=&lt;br /&gt;
[[William Conversation | Conversation with Marcin]]. Research on OSE Club Activities. Planning for winter semester courses&#039; links to OSE - Computer Engineering Technology and Computer Science. Plans to do the following in Computer Engineering Technology: build a brushless motor and ESC from scratch. Computer Science: Programming projects related to OSE - simulation program? Western University Introduction to STEM Class - offer the OSE Competition as a choice for a final project - help administer / judge / communicate / etc.&lt;br /&gt;
&lt;br /&gt;
=December 12-21, 2018=&lt;br /&gt;
Exams and marking - excellent ways to hinder educational progress. Discussed Canadian bill of materials with Russ Purvis. Discussed the upcoming OSE workshop in Prince George, BC currently in the planning phase. Several phone conversations with Charlie. Worked on some particulars for the upcoming OSE competition in January. Contacted a teacher in Iran to invite her to join the competition with her students. Sent a letter of reference to Russ with respect to hosting an OSE workshop.&lt;br /&gt;
&lt;br /&gt;
=December 8-11, 2018=&lt;br /&gt;
Spoke with Charlie about development of OSE workshops.  Spoke with Marcin and Catarina about the same. Updated Marcin about development of OSE club at London International Academy.  We now have plans to include at least four schools in our first design challenge - School of the Nations in Guyana, Fujing Foreign Language School in Shenzhen and Jinling School in Nanjing. Was approached by a friend to contact Makerspace managers in St. Thomas and Toronto. Arranged a meeting with the makerspace managers at Western University. OSE Marlin v18.10 works for printing with new printer. Successfully printed base layer of a file.  It seems that the extruder may have jammed.  Will check again as soon as possible. LIA students continue to develop their FreeCAD skills and are able to design parts in parallel according to a spacial plan and assemble them into a larger model. Installed OSE Linux on laptop now with a new old-school 1TcB hard drive. OSE Linux did not recognise the card reader; everything else seems to work very well. &amp;lt;strong&amp;gt;Note: Stepper motors on y axis of D3D became alarmingly hot after about 15 minutes of printing.&amp;lt;/strong&amp;gt; Perhaps this is a configuration issue; may need to resolve this before allowing the printer to do a full print.&lt;br /&gt;
&lt;br /&gt;
=December 7, 2018= &lt;br /&gt;
Using OSE Ubuntu on laptop with fried SSD. Internet has connection through ping but does not display pages in Chromium. D3D Marlin recent version from OSE website installed in printer. Autohome produces a collision of the z axis with the extruder as by default the z probe is off the plate.  Tried to move the y axis using various commands such as G0 Y40 and G1 Y40 all of which cause the Y axis to move until it hits the maximum physically possible position. Spoke with Johann Wong about the possibility of combining an OSE Makerspace skills (Arduino, CAD, etc.) + 3D printer workshop with Human Innovation PIE&#039;s soft skills innovation workshop through the London International Academy Foundation. Was using wrong Marlin file for D3D printer - will try correct one asap. Suggestions for D3D: use zip ties and clothespin springs for tensioning belts.  This has worked exceptionally well and reliably for our Chinese Prusa derivative; the belts have needed nearly no attention in three years.&lt;br /&gt;
&lt;br /&gt;
=December 6, 2018=&lt;br /&gt;
Was about to test print on OSE D3D when SSD crashed.  Did Ubuntu fry it?  Researching this.&lt;br /&gt;
&lt;br /&gt;
=December 5, 2018=&lt;br /&gt;
Introduced the OSE design challenge to OSE Club students at London International Academy.&lt;br /&gt;
&lt;br /&gt;
=December 4, 2018= &lt;br /&gt;
Held an informal Introduction to Arduino Workshop at London International Academy to help two grade 11 students with a project.  Spoke with Marcin about plans for the OSE design challenge, OSE club and possibility of a summer camp at FeF in May or June of 2019.&lt;br /&gt;
&lt;br /&gt;
=December 2, 2018=&lt;br /&gt;
 Created a document outlining a framework for OSL - Open Source London and shared it on Google Docs; visited Charlie to discuss the document.&lt;br /&gt;
&lt;br /&gt;
=November 29, 2018=&lt;br /&gt;
 Introduced OSE 3D Printer and Prusa i3 3D printer to parents and students at a local French Immersion school - PAFI.  Designed and printed various models using Blender and Repetier.&lt;br /&gt;
&lt;br /&gt;
=November 28, 2018=&lt;br /&gt;
*Updated OSECartCoin with letters. &lt;br /&gt;
**[[File:PAFI.stl]]&lt;br /&gt;
**[[File:PAFI.fcstd]]&lt;br /&gt;
*Call with Marcin regarding &#039;&#039;&#039;[[LIA OSE Club]]&#039;&#039;&#039;&lt;br /&gt;
*Build from last week - [https://www.facebook.com/groups/398759490316633/permalink/963594880499755/]&lt;br /&gt;
&lt;br /&gt;
=November 27, 2018=&lt;br /&gt;
Wrote the suggested intro to Marcin&#039;s next TED talk: [[Marcin&#039;s Next TED Talk]]&lt;br /&gt;
=November 26, 2018=&lt;br /&gt;
Uploaded FeF Brick Press Fabrication video from July 29, 2011 - [https://youtu.be/LwW8sOUO00s]&lt;br /&gt;
&amp;lt;p&amp;gt;Uploaded video of the &amp;quot;Cluckaphone&amp;quot; - July 29, 2011 - [https://www.youtube.com/watch?v=PNOhZX7ftLk&amp;amp;feature=youtu.be]&lt;br /&gt;
Call with Marcin, Catarina and Charlie - OSE Planning&lt;br /&gt;
&lt;br /&gt;
=November 25, 2018=&lt;br /&gt;
Consultation about the establishment of an OSE Club at London International Academy and future directions for the development of OSE Clubs and Makerspaces.&lt;br /&gt;
&lt;br /&gt;
=November 24, 2018=&lt;br /&gt;
We made an OSE Cart Coin with FreeCAD &lt;br /&gt;
Here are the files for OSE Cart Coin v0.1:&lt;br /&gt;
[[File:OSECartCoin.fcstd]]&lt;br /&gt;
[[File:OSECartCoin.stl]]&lt;br /&gt;
Attended Marcin&#039;s presentation entitled &amp;quot;Education for the Open Source Economy&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=November 23, 2018=&lt;br /&gt;
Built a an OSE 3D printer at London International Academy&lt;br /&gt;
&lt;br /&gt;
=November 23-25=&lt;br /&gt;
Attended first OSE Professional Development workshop at London International Academy with Charles Freer, Pascal Gingras, Marcin and Catarina.&lt;br /&gt;
&lt;br /&gt;
=November 18-22= &lt;br /&gt;
Prepared for the visit of Marcin and Catarina to London.&lt;br /&gt;
&lt;br /&gt;
=November 17, 2018=&lt;br /&gt;
Conversation about OSE development with Charlie.  In particular, discussion about education and its relationship to developing the capacity to lead a meaningful and productive life. Reference to overlap of Baha&#039;i means and principles with those of the OSE - elimination of the extremes of wealth and poverty, building capabilities in a population, individual agency and initiative within a systematically evolving framework, etc.&lt;br /&gt;
&lt;br /&gt;
=November 16, 2018=&lt;br /&gt;
*Received US $5000 Shuttleworth Foundation Flash Grant&lt;br /&gt;
*Conference call with Marcin and Charles Freer regarding Marcin and Catarina&#039;s upcoming visit to London, Ontario&lt;br /&gt;
&lt;br /&gt;
=November 15, 2018=&lt;br /&gt;
Engineering Club students designed and printed a part to add to the Lyman Filament Extruder repository - a bracket for a rocker switch&lt;br /&gt;
&lt;br /&gt;
[[File:SwitchBracket2.png]]&lt;br /&gt;
[[File:Switchbase2.stl]]&lt;br /&gt;
[[File:SwitchBracket.FCStd]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=May, 2012=&lt;br /&gt;
Started project to build metric version of OSE CEB Press in Nanjing, China&lt;br /&gt;
&lt;br /&gt;
=April, 2012=&lt;br /&gt;
Began 3D Printing project in physics class at London International Academy&lt;br /&gt;
&lt;br /&gt;
=July, 2011-October, 2018=&lt;br /&gt;
Many things happened including severe neglect of the OSE wiki&lt;br /&gt;
Some highlights:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Regular incorporation of OSE concepts into classes and presentations 2011-present&lt;br /&gt;
*May, 2013 - started collaboration with Human InnovationPIE, a London non-profit organization focused on providing soft skills education for innovation.&lt;br /&gt;
*April, 2014 - Recognized in local paper for 3D Printer build with students&lt;br /&gt;
*July, 2015 - Asked to start STEM program at London International Academy further to success and popularity of 3D printer project&lt;br /&gt;
*September, 2015 - Began building Farmbot with students&lt;br /&gt;
*January, 2017 - Began teaching an Introduction to STEM course at Western University with significant OSE-based content.&lt;br /&gt;
&lt;br /&gt;
=July 16, 2011=&lt;br /&gt;
Arrived at Factor e Farm with Haydar Neal&lt;br /&gt;
&lt;br /&gt;
=March,  2011=&lt;br /&gt;
Saw TED Talk and wrote away to Marcin immediately&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=204477</id>
		<title>William Neal Log</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=204477"/>
		<updated>2019-11-30T13:21:26Z</updated>

		<summary type="html">&lt;p&gt;Wneal: /* Thursday November 28 - Friday November 29 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{RightTOC}}&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;600&amp;quot; height=&amp;quot;600&amp;quot; src=&amp;quot;https://osedev.org/wiki/William?start=2/1/2017&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
=Thursday November 28 - Friday November 29=&lt;br /&gt;
Workshop with the Guyana Prison Service - 12 prison staff from five facilities in Guyana. Reactivated 6 discarded computers using Ubuntu and OSE Linux. [[Introduction to Python]]. [https://m.facebook.com/groups/398759490316633?view=permalink&amp;amp;id=1215623975296843 OSE Prusa Build]&lt;br /&gt;
&lt;br /&gt;
=Saturday November 23  Wednesday November 27=&lt;br /&gt;
Workshop in Guyana with the Guyana Prison Service: The CSSP Project.  This project aims to replace the current model of prison management with an approach based on human nobility, education and rehabilitation.&lt;br /&gt;
=Thursday November 28=&lt;br /&gt;
[[OSE Linux]] - we got six old computers working on Ubuntu using flash drives.  Tomorrow will have an Open Source software workshop using OSE Linux on USB drives. We will use Python, FreeCAD, LibreOffice, etc. Showed the TED talk to our group of 12 prison officers from five facilities in Guyana.&lt;br /&gt;
&lt;br /&gt;
=Saturday November 2 - Friday November 22=&lt;br /&gt;
Worked on the [[OSE Prusa]] in order to support the establishment of a STEM centre in Trinidad and Tobago and to prepare for a workshop with the Government of Guyana.&lt;br /&gt;
#Items in a numbered list&lt;br /&gt;
#More Items&lt;br /&gt;
##Yet More&lt;br /&gt;
*Items in a bullet list&lt;br /&gt;
*More Items&lt;br /&gt;
**Yet More&lt;br /&gt;
&lt;br /&gt;
=Thursday October 24 - Friday November 1=&lt;br /&gt;
*Tested printing on the London replication of the D3D printer for the first time.&lt;br /&gt;
*Team of 9 students from Western university preparing a project around OSE - D3D replication + filament extruder replication + Chinese Reprap Prusa i3 reverse engineering.&lt;br /&gt;
=Sunday October 12 - Wednesday October 23=&lt;br /&gt;
*Updated some files used in the simple extruder build [https://wiki.opensourceecology.org/wiki/Simple_3D_Printer_Extruder#CAD here.]&lt;br /&gt;
&lt;br /&gt;
=Friday October 4 - Saturday October 11=&lt;br /&gt;
*Successfully tested D3D simple extruder based on Chinese Prusa i3.&lt;br /&gt;
*D3D challenge - Y axis end stop stopped working...&lt;br /&gt;
*Almost finished replicating first of two D3D printers in London Ontario.&lt;br /&gt;
*Preparing a D3D / Brushless motor workshop for the Guyana Prison Service. &lt;br /&gt;
*FreeCAD activity completed at Western University - varied response of individuals in the groups - the allocated time was too short. &lt;br /&gt;
=Friday September 27 - Thursday October 3=&lt;br /&gt;
*Continued work on D3D build.&lt;br /&gt;
*Experimenting with highly differentiated instruction unconstrained by government curricular concerns - our STEM club&#039;s three sections - Robotics / Computers and CAD / STEM projects have each gradually evolved over the last several weeks such that small groups of 1-4 students specialize on special tasks.&lt;br /&gt;
*Introduced FreeCAD to a group of junior youth from a local neighborhood. After about 40 minutes each group of two participants completed a motor rotor design.&lt;br /&gt;
*Second FreeCAD session with a group of 40 teacher candidate students at Western University&#039;s Althouse. Also used highly differentiated / interdisciplinary instruction with this group. After one hour and a half, most groups were able to generate several parts of a brushless motor and begin the process of parameterizing with a spreadsheet and creating an assembly.  Some trained engineers in the crowd generated excellent &amp;quot;propellers&amp;quot; for the motor using advanced features.&lt;br /&gt;
&lt;br /&gt;
=Tuesday, September 1 - Thursday, September 26=&lt;br /&gt;
*New School Year - over 40 students participating in our special STEM/Business/Arts program.&lt;br /&gt;
*Two sections of our program, STEM Projects and Computer Programming/CAD,  include OSE-related topics:&lt;br /&gt;
**Building 3D printers&lt;br /&gt;
**3D-printing&lt;br /&gt;
**OSE Motor design and fabrication&lt;br /&gt;
**Filament extruder&lt;br /&gt;
**CAD&lt;br /&gt;
*Building a 3D printer in collaboration with Bill Phelan, Vice President of Die-X Ltd.&lt;br /&gt;
*Remote collaboration with Branko Misovic in Holland.&lt;br /&gt;
*Preparing for a two-week 3D-printer build / open source hardware workshop in Guyana in November.&lt;br /&gt;
*Working on simple extruder for the D3D printer.&lt;br /&gt;
*Some 3D-printed parts for the D3D printer are not precise enough as they were printed with 1.0mm and 0.8mm nozzles.  We are switching to a 0.4mm nozzle and re-printing.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 27 - Monday September 1=&lt;br /&gt;
*Preparation for STEM camps in China. &lt;br /&gt;
*Travel to China.  Caught behind firewall - Internet was actually a large Intranet - difficult to post, communicate or access any useful sites. &lt;br /&gt;
*STEM Camp at Fujing Foreign language school - 10 days - 60 students, 1.5 hours daily - worked on FreeCAD and the OSE motor. &lt;br /&gt;
*Built OSE D3D printer with eight 9-11 year-old students (10 days, 3 hours daily) at EIC Education in Shenzhen.  The students assembled the axes and helped design some custom 3D-printed brackets for the frame which had to be made out of linear rail. The students learned FreeCAD and were able to design useful parts. Ganesh Ramsahai provided support in completing the build and configuration process. Presented the OSE D3D Shenzhen to the EIC Education Group with a half-hour overview and offer to provide remote support.&lt;br /&gt;
*STEM Camp at Zhangjiagang Foreign Language School in Jiangsu province. 30 students, 3 days, 6 hours per day.  Introduced FreeCAD and had the students design rotors and stators for the OSE brushless motor.&lt;br /&gt;
*Showed the TED talk to four different groups.&lt;br /&gt;
*Uploaded raw FreeCAD and stl files from the camps at Fujing Foreign Language School and Zhangjiagang Foreign Language School to [https://drive.google.com/open?id=1K7U8lEGqRgxwQf-WNX1Llbf-WE7LJCqL Google Drive]&lt;br /&gt;
*Uploaded [https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH custom files] generated during the build of the D3D 19.08 Shenzhen.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 20 - Friday July 26=&lt;br /&gt;
LIA summer STEM camp continued with 38 different students from Shenzhen, China.  The students discussed, in the context of Marcin&#039;s TED Talk, the concept that the human mind, focused and in collaboration with others, has the power to make positive changes in society.  Design of covers and caps for the OSE radial motor. Photos from the STEM Camp activities are [https://photos.app.goo.gl/zcpKk8jaFcDon31K7 here].  Trying to find the USB where we collected all the FreeCAD files.  These will be posted ASAP.&lt;br /&gt;
&lt;br /&gt;
=Monday July 15 - Friday July 19=&lt;br /&gt;
LIA summer STEM camp with 23 students from Vietnam and China. OSE Motor project part II - designing, printing and testing a radial motor. The motor concept was based on the following video: [https://www.youtube.com/watch?v=JkwLpAAfBVI 3D-Printed Axial Brushless Motor for Drones] Students were presented with the concept and asked to design such a motor from scratch using two rotors with eight disc magnets each and two sets of six wire loops.&lt;br /&gt;
&lt;br /&gt;
=Wednesday July 10 - Sunday July 14=&lt;br /&gt;
Preparation for summer STEM Camps at LIA.  Prepared 3D printers.  Began replication of two D3D v19.06 units.&lt;br /&gt;
=Friday June 28 - Tuesday July 9= &lt;br /&gt;
Open Source Ecology Microfactory STEAM Camp&lt;br /&gt;
=Thursday June 27=&lt;br /&gt;
Titan Aero finally working better with 1.5 full turns + a little bit more for good measure - has not jammed all afternoon now - three parts printed.  Logistics for Microfatory STEAM Camp - rented a vehicle and contacted a few participants. A prototype of the OSE extruder has been nearly completed. The extruder gear is scheduled to arrive at Factor e Farm by tomorrow. Then it will be ready for testing.  [https://photos.app.goo.gl/fWUX8ynAdqcn6Fvs6 OSE D3D Extruder - Photo Album][https://drive.google.com/open?id=17BLyvyk1EbrMOhkCfeSwByAq86SemSLX Files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 25 - Wednesday June 26=&lt;br /&gt;
OSE D3D Extruder.  Worked on attaching extruder to X-axis. Ordered extruder motor gears to arrive at FeF on Friday. Printed out bracket 1 successfully. Working on large aluminium block and designing x-axis adapter.&lt;br /&gt;
=Monday June 24=&lt;br /&gt;
Discussion about design of OSE Power Electronics. Problem - transformers are expensive and inflexible. Solution - research the feasibility of creating a 120V buck converter.  Would it be sufficiently efficient and would it be feasible to build?  Here are some potential parts to use: [https://www.digikey.ca/product-detail/en/comchip-technology/GBPC5010W-G/641-1389-ND/2074854 1kV Recifier] [https://www.digikey.ca/product-detail/en/ixys/IXFX120N65X2/IXFX120N65X2-ND/5629498?utm_adgroup=&amp;amp;mkwid=sFMkJ49os&amp;amp;pcrid=311971049444&amp;amp;pkw=&amp;amp;pmt=&amp;amp;pdv=c&amp;amp;productid=5629498&amp;amp;slid=&amp;amp;gclid=EAIaIQobChMIgbDd1fSC4wIVwkOGCh1f8gijEAQYAyABEgJGffD_BwE 650V MOSFET].  One problem seems to be that there may be a high level of energy loss in the circuit....[https://www.digikey.com/product-detail/en/everlight-electronics-co-ltd/H11L1S-TA/1080-1201-1-ND/2675935 Optocoupler] (to isolate the Arduino)[http://fpec.ucf.edu/teaching/EEL%205245%20Lectures/Lecture13%20Chapter4_BoostandBuckBoost_CCM_Analysis.pdf Some background theory]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 19 - Sunday June 23=&lt;br /&gt;
DIY Buck Converter based on the following video (and others): https://www.youtube.com/watch?v=L5oeY53pE0E&amp;amp;t=162s. [https://photos.app.goo.gl/kkHUwBQtD7h48mhB6 Photos.] All four 3D printers are down.  A crucial piece of the extruder of the most reliable printer finally broke. CAD already done for the replacement part. Got the OSE D3D working again on Friday.  Ready for printing on Monday - will print replacement part for other printer.  Other 2 printers almost working...&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 18=&lt;br /&gt;
[https://www.pythonpowerelectronics.com/ Python Power Electronics]&lt;br /&gt;
=Thursday June 13 - Monday June 17=&lt;br /&gt;
Buck Converters. OSE [[Power Electronics]] research. Arduino as controller of Power electronics - frequency issues / limitations. Scalability of Power electronics - can we add modular components to increase voltage, current, etc.?  &lt;br /&gt;
=Tuesday June 11 - Wednesday June 12=&lt;br /&gt;
Completed and sent CAD Drawings for OSE 3D Printer. Spent most of Wednesday working through a jam on the Titan Aero - it has jammed more in a few days than our other extruder has jammed in over three years.&lt;br /&gt;
=Monday June 10=&lt;br /&gt;
[https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH FreeCAD Drawings] for OSE 3D Printer. Note the use of parametric design in the CAD files - Spreadsheet values become variables used in constraint dimensions.&lt;br /&gt;
The following is my most recent FreeCAD Parametric Part Design and Drawing Workflow:[[FreeCAD Workflow]]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 5 - Sunday June 9=&lt;br /&gt;
[https://www.youtube.com/watch?v=CEhBN5_fO5o|DC-DC Buck Converters]&lt;br /&gt;
Power Supply: Transformer + Buck Converter + Ripple Smoothing Circuitry&lt;br /&gt;
=Tuesday June 4=&lt;br /&gt;
*[[Arduino Controlled Power Supply]] - ordered many components.&lt;br /&gt;
*Many electronic components specified in DIY articles and videos are now listed as obsolete.  Finding replacement parts is not easy. Case in point: LM338K Linear Voltage Regulators - Listed as obsolete on the Mouser website and selling for $91 or more on the Digi-key website.&lt;br /&gt;
*[https://www.eetimes.com/document.asp?doc_id=1333695# Article about obsolescence and demand and supply issues in the electronics industry]&lt;br /&gt;
&lt;br /&gt;
=Saturday June 1 - Monday June 3=&lt;br /&gt;
Reviewed [[OSE Design Guides]] Reviewed [[DIY Semiconductors]] Microfactory STEAM Camp Critical Path [[Arduino Controlled Power Supply]] Fabrication of aluminium blocks for hot end for OSE 3D printer extruder. Parametric modelling in FreeCAD.&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 28 - Friday May 31=&lt;br /&gt;
[[Halbach Array Brushless Motor]]&lt;br /&gt;
&lt;br /&gt;
=Monday May 27= &lt;br /&gt;
[https://www.youtube.com/watch?v=uOQk8SJso6Q How to Control an ESC with an Arduino] [https://photos.app.goo.gl/HMvWbigvuw3S26YG8 Test of the OSE Motor].&lt;br /&gt;
&lt;br /&gt;
=Friday May 24 - Sunday May 26= &lt;br /&gt;
Not all that much.&lt;br /&gt;
=Thursday May 23=&lt;br /&gt;
Thank you to Marcin and Catarina for a refreshing, enlightening and enjoyable visit to Factor e Farm and the Seed Ecohome. Returned to London.&lt;br /&gt;
=Wednesday May 22=&lt;br /&gt;
Skype appointment - 12pm Missouri time - friend in Colombia. Uploaded FreeCAD files for D3D v19.04 Power Plug Case to Wiki. [https://en.wikipedia.org/wiki/Buck_converter Buck Converter]&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 21=&lt;br /&gt;
[https://www.powerelectronicsnews.com/problems-solutions/power-supply-design-tutorial Power Supply Design Tutorial] Edited the [https://docs.google.com/document/d/1_3t_97giFOtqJ4ExPZdYeVEilCRhMmu0IWLLpBCrG-0/edit?usp=sharing Video Script] &lt;br /&gt;
Contacted STEM people in Nigeria and Pennsylvania based on the OSE STEAM Camp posted in this [https://www.facebook.com/groups/822455171229260/ Facebook Forum]&lt;br /&gt;
Further communication with friends in Mexico regarding the STEAM camp. Contacted a friend of a friend in Kansas City - Baha&#039;i Community.&lt;br /&gt;
&lt;br /&gt;
=Monday May 20=&lt;br /&gt;
Posted Microfactory STEAM camp on several Facebook STEM/STEAM Education pages. [[The Living Curriculum]] [https://github.com/MarlinFirmware/Marlin/issues/8903 Marlin Bed Temperature Settings] Worked on the Titan-Aero extruder repairs. The two parts of the extruder tube must be fairly tight (but not too tight!) to avoid leakage.&lt;br /&gt;
&lt;br /&gt;
=Sunday May 19=&lt;br /&gt;
Printing ABS using the OSE D3D - Set the bed temperature to 83 and the nozzle temperature to 255.  After 5 minutes of printing, several layers were adhering well. Thermal runaway. Tried 80 and 244; thermal runaway again. Joined several online STEM/Education groups.&lt;br /&gt;
&lt;br /&gt;
=Saturday May 18=&lt;br /&gt;
[[OSE Revenue Generation]] - Grameen Bank / Social Business - [[OSE Curriculum]]&lt;br /&gt;
&lt;br /&gt;
=Friday May 17=&lt;br /&gt;
[[OSE STEM Camp Marketing Strategy]]&lt;br /&gt;
=Friday May 10 - Thursday May 16= &lt;br /&gt;
Preparation for trip to Factor e Farm - gathered supplies - PCB boards, glossy paper, wire, magnets, electronic components, hardware, etc. Arrival at Factor e Farm. Work on D3D v. 19.04: [Photos - OSE D3D v19.04 Build at FeF https://www.facebook.com/photo.php?fbid=10161819908970597&amp;amp;set=pcb.1063740287151880&amp;amp;type=3&amp;amp;theater&amp;amp;ifg=1]&lt;br /&gt;
 &lt;br /&gt;
=Friday April 12 - Thursday May 9=&lt;br /&gt;
[https://drive.google.com/open?id=1-DpgMCARsA5iz4JLZtUeP3SD4a3UrXhj OSE Motor Completed] - ready for testing - Open Source Chinese Prusa i3 Printer Extruder - Configured and began printing with OSE D3D - printing very well at the moment - Booked a flight to Kansas City - heading to Factor e Farm soon!&lt;br /&gt;
&lt;br /&gt;
=Monday March 4 - Thursday April 11=&lt;br /&gt;
FRC Robotics - Ryerson University, Western University. OSE Motor - students have made some progress: [https://drive.google.com/open?id=1n99XWM8KMwvnV-tCmcWjImsBG27ReRSc OSE Brushless Motor] Additional work on the [[Simple 3D Printer Extruder]]&lt;br /&gt;
&lt;br /&gt;
=Sunday March 3=&lt;br /&gt;
Completed the first model of the most difficult part to CAD in the extruder - the X-Axis bracket.  Will now print CAD files and measure their accuracy before making changes to the CAD parameters.  Hopefully this process will result in more accurate parts.&lt;br /&gt;
&lt;br /&gt;
=Friday March 1 - Saturday March 2 =&lt;br /&gt;
Further work on open sourcing Chinese Prusa i3 3D printer extruder.&lt;br /&gt;
&lt;br /&gt;
=Monday February 18 - Thursday February 28=&lt;br /&gt;
Began the process of open-sourcing our 3D printer extruder: [[Simple 3D Printer Extruder]] (see photos and CAD files in the 3D Printer Folder) &lt;br /&gt;
Started a new unit in Computer Engineering Technology class.  Two groups of students are working on OSE materials:  &lt;br /&gt;
#The OSE Collaborative Contest&lt;br /&gt;
#The OSE Filament Extruder&lt;br /&gt;
&lt;br /&gt;
=Saturday February 9-Sunday February 17=&lt;br /&gt;
Hosted a group of six STEM students from School of the Nations in Georgetown, Guyana. STEM Camp at London International Academy.  Introduced the concept of the OSE collaborative contest. Introductory FreeCAD activities. Introduced Python computer programming.  Printed out various parts for an open source brushless motor.  [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX Link to CAD Files] (see School of the Nations sub-folder)[[file:Rotor.jpg|200px]] [http://guyanachronicle.com/2019/02/17/nations-benefits-from-robotics-training-in-canada Article in Guyana Chronicle]&lt;br /&gt;
&lt;br /&gt;
=Wednesday February 6= &lt;br /&gt;
[[OSE Coopetition]].  Discussed wiki + part library + documentation of OSE Coopetition.&lt;br /&gt;
&lt;br /&gt;
=Monday February 4=&lt;br /&gt;
Uploaded version 0.1 of the OSE Collaborative Contest Rules to [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest]&lt;br /&gt;
=Wednesday January 30 - Sunday February 3=&lt;br /&gt;
FRC Build season.  [https://drive.google.com/drive/folders/1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH?usp=sharing Team 6162 Cap Alpaca FreeCAD files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday January 29=&lt;br /&gt;
Collected FreeCAD files in a Google drive folder: [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest] &lt;br /&gt;
Summary of Nanjing group&#039;s schedule: [https://docs.google.com/document/d/1R-Dtu3kdZ0u8Qo5w3_vDuNEg5myr8mUmLjSpPOf-HoI/edit?usp=sharing | 2019 Winter Camp]&lt;br /&gt;
Here is some sample work from the FreeCAD workshop:&lt;br /&gt;
*[[File:ReyJessica.png|200px]]&lt;br /&gt;
*[[File:ZJHLSR.png|200px]]&lt;br /&gt;
&lt;br /&gt;
=Sunday January 27 - Monday January 28=&lt;br /&gt;
Discussed record keeping, file sharing and other skills for collaborative literacy. Created a sample page stub: [[Brushless Motor Design]].  Asked students to reflect on sessions learning FreeCAD.  Found that it is not necessary to learn a whole lot about FreeCAD in order to get students learning it.  Demonstrated two sample FreeCAD 0.17 design processes:&lt;br /&gt;
#Design a part like a motor adapter: body - sketch a circle - pad - sketch on a surface - pocket&lt;br /&gt;
#Design a sketch with constraints - some straight lines and some arcs closed in a loop with particular dimensions and angles.&lt;br /&gt;
After that, students were directed to Youtube videos that covered specific additional skills: &lt;br /&gt;
*Threading - inner and outer&lt;br /&gt;
*Polar patterns&lt;br /&gt;
Through this process, I learned how to do these skills from some students and was able to show other students the same, especially with polar patterns.&lt;br /&gt;
&lt;br /&gt;
=Sunday January, 20 - Saturday January 26, 2019=&lt;br /&gt;
Prepared for and welcomed 19 students from Jinling High School in China. Introduced the concept of the OSE Collaborative Contest.  Marcin spoke with the group over Jitsi on Thursday and on Saturday and proposed that the students participate in the OSE Collaborative Contest. It was well received despite the students&#039; fatigue from travel and skiing. Introduced FreeCAD and had students download and install it. Some computers do not immediately work with FreeCAD; hope that the problem may be solved. We plan to further discuss the students&#039; participation in the contest tomorrow and 3D print some of their early FreeCAD work on Monday. Created a link to LIA students&#039; FreeCAD work.  Currently the folder is being used for FRC preparation.  After the FRC robot is built, we are planning to transition to OSE-related work in this folder: [https://drive.google.com/open?id=1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH LIA OSE Club CAD Files]&lt;br /&gt;
&lt;br /&gt;
=Thursday January 10 - Saturday Jan 19, 2019=&lt;br /&gt;
Heaviest schedule of the year - January and February; progress slower during this time. Working on STEM Curriculum for FeF STEM Camps - [[Summer School 2019]].&lt;br /&gt;
&lt;br /&gt;
=Wed Jan 9, 2019=&lt;br /&gt;
*Use a presentation - template - make a copy - pass this to Heydar - document the simple 3D printing extruder for a low cost 3d printer - [https://docs.google.com/presentation/d/1_kUzO4eRCqrHVpqxSSTs17oLhtikTTyYe_1NxrTKlTI/edit#slide=id.g45ed589c64_0_0]&lt;br /&gt;
*Homework: Complete STEM Curriculum&lt;br /&gt;
&lt;br /&gt;
=January 2, 2019=&lt;br /&gt;
Ordered parts for a brushless motor to be constructed as part of the contest and part of the Computer Engineering Technology class at London International Academy.&lt;br /&gt;
In order to make the collaborative contest work, we will need to create a kit of parts to be easily shipped to participating schools.&lt;br /&gt;
&lt;br /&gt;
=December 24 2018-January 1, 2019=&lt;br /&gt;
Took a break. Reflected on plans for OSE London / OSE Club at London International Academy / OSE Collaborative Contest&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=December 23, 2018=&lt;br /&gt;
Defined particulars of [[OSE STEM Camps]].&lt;br /&gt;
&lt;br /&gt;
=December 22,2018=&lt;br /&gt;
[[William Conversation | Conversation with Marcin]]. Research on OSE Club Activities. Planning for winter semester courses&#039; links to OSE - Computer Engineering Technology and Computer Science. Plans to do the following in Computer Engineering Technology: build a brushless motor and ESC from scratch. Computer Science: Programming projects related to OSE - simulation program? Western University Introduction to STEM Class - offer the OSE Competition as a choice for a final project - help administer / judge / communicate / etc.&lt;br /&gt;
&lt;br /&gt;
=December 12-21, 2018=&lt;br /&gt;
Exams and marking - excellent ways to hinder educational progress. Discussed Canadian bill of materials with Russ Purvis. Discussed the upcoming OSE workshop in Prince George, BC currently in the planning phase. Several phone conversations with Charlie. Worked on some particulars for the upcoming OSE competition in January. Contacted a teacher in Iran to invite her to join the competition with her students. Sent a letter of reference to Russ with respect to hosting an OSE workshop.&lt;br /&gt;
&lt;br /&gt;
=December 8-11, 2018=&lt;br /&gt;
Spoke with Charlie about development of OSE workshops.  Spoke with Marcin and Catarina about the same. Updated Marcin about development of OSE club at London International Academy.  We now have plans to include at least four schools in our first design challenge - School of the Nations in Guyana, Fujing Foreign Language School in Shenzhen and Jinling School in Nanjing. Was approached by a friend to contact Makerspace managers in St. Thomas and Toronto. Arranged a meeting with the makerspace managers at Western University. OSE Marlin v18.10 works for printing with new printer. Successfully printed base layer of a file.  It seems that the extruder may have jammed.  Will check again as soon as possible. LIA students continue to develop their FreeCAD skills and are able to design parts in parallel according to a spacial plan and assemble them into a larger model. Installed OSE Linux on laptop now with a new old-school 1TcB hard drive. OSE Linux did not recognise the card reader; everything else seems to work very well. &amp;lt;strong&amp;gt;Note: Stepper motors on y axis of D3D became alarmingly hot after about 15 minutes of printing.&amp;lt;/strong&amp;gt; Perhaps this is a configuration issue; may need to resolve this before allowing the printer to do a full print.&lt;br /&gt;
&lt;br /&gt;
=December 7, 2018= &lt;br /&gt;
Using OSE Ubuntu on laptop with fried SSD. Internet has connection through ping but does not display pages in Chromium. D3D Marlin recent version from OSE website installed in printer. Autohome produces a collision of the z axis with the extruder as by default the z probe is off the plate.  Tried to move the y axis using various commands such as G0 Y40 and G1 Y40 all of which cause the Y axis to move until it hits the maximum physically possible position. Spoke with Johann Wong about the possibility of combining an OSE Makerspace skills (Arduino, CAD, etc.) + 3D printer workshop with Human Innovation PIE&#039;s soft skills innovation workshop through the London International Academy Foundation. Was using wrong Marlin file for D3D printer - will try correct one asap. Suggestions for D3D: use zip ties and clothespin springs for tensioning belts.  This has worked exceptionally well and reliably for our Chinese Prusa derivative; the belts have needed nearly no attention in three years.&lt;br /&gt;
&lt;br /&gt;
=December 6, 2018=&lt;br /&gt;
Was about to test print on OSE D3D when SSD crashed.  Did Ubuntu fry it?  Researching this.&lt;br /&gt;
&lt;br /&gt;
=December 5, 2018=&lt;br /&gt;
Introduced the OSE design challenge to OSE Club students at London International Academy.&lt;br /&gt;
&lt;br /&gt;
=December 4, 2018= &lt;br /&gt;
Held an informal Introduction to Arduino Workshop at London International Academy to help two grade 11 students with a project.  Spoke with Marcin about plans for the OSE design challenge, OSE club and possibility of a summer camp at FeF in May or June of 2019.&lt;br /&gt;
&lt;br /&gt;
=December 2, 2018=&lt;br /&gt;
 Created a document outlining a framework for OSL - Open Source London and shared it on Google Docs; visited Charlie to discuss the document.&lt;br /&gt;
&lt;br /&gt;
=November 29, 2018=&lt;br /&gt;
 Introduced OSE 3D Printer and Prusa i3 3D printer to parents and students at a local French Immersion school - PAFI.  Designed and printed various models using Blender and Repetier.&lt;br /&gt;
&lt;br /&gt;
=November 28, 2018=&lt;br /&gt;
*Updated OSECartCoin with letters. &lt;br /&gt;
**[[File:PAFI.stl]]&lt;br /&gt;
**[[File:PAFI.fcstd]]&lt;br /&gt;
*Call with Marcin regarding &#039;&#039;&#039;[[LIA OSE Club]]&#039;&#039;&#039;&lt;br /&gt;
*Build from last week - [https://www.facebook.com/groups/398759490316633/permalink/963594880499755/]&lt;br /&gt;
&lt;br /&gt;
=November 27, 2018=&lt;br /&gt;
Wrote the suggested intro to Marcin&#039;s next TED talk: [[Marcin&#039;s Next TED Talk]]&lt;br /&gt;
=November 26, 2018=&lt;br /&gt;
Uploaded FeF Brick Press Fabrication video from July 29, 2011 - [https://youtu.be/LwW8sOUO00s]&lt;br /&gt;
&amp;lt;p&amp;gt;Uploaded video of the &amp;quot;Cluckaphone&amp;quot; - July 29, 2011 - [https://www.youtube.com/watch?v=PNOhZX7ftLk&amp;amp;feature=youtu.be]&lt;br /&gt;
Call with Marcin, Catarina and Charlie - OSE Planning&lt;br /&gt;
&lt;br /&gt;
=November 25, 2018=&lt;br /&gt;
Consultation about the establishment of an OSE Club at London International Academy and future directions for the development of OSE Clubs and Makerspaces.&lt;br /&gt;
&lt;br /&gt;
=November 24, 2018=&lt;br /&gt;
We made an OSE Cart Coin with FreeCAD &lt;br /&gt;
Here are the files for OSE Cart Coin v0.1:&lt;br /&gt;
[[File:OSECartCoin.fcstd]]&lt;br /&gt;
[[File:OSECartCoin.stl]]&lt;br /&gt;
Attended Marcin&#039;s presentation entitled &amp;quot;Education for the Open Source Economy&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=November 23, 2018=&lt;br /&gt;
Built a an OSE 3D printer at London International Academy&lt;br /&gt;
&lt;br /&gt;
=November 23-25=&lt;br /&gt;
Attended first OSE Professional Development workshop at London International Academy with Charles Freer, Pascal Gingras, Marcin and Catarina.&lt;br /&gt;
&lt;br /&gt;
=November 18-22= &lt;br /&gt;
Prepared for the visit of Marcin and Catarina to London.&lt;br /&gt;
&lt;br /&gt;
=November 17, 2018=&lt;br /&gt;
Conversation about OSE development with Charlie.  In particular, discussion about education and its relationship to developing the capacity to lead a meaningful and productive life. Reference to overlap of Baha&#039;i means and principles with those of the OSE - elimination of the extremes of wealth and poverty, building capabilities in a population, individual agency and initiative within a systematically evolving framework, etc.&lt;br /&gt;
&lt;br /&gt;
=November 16, 2018=&lt;br /&gt;
*Received US $5000 Shuttleworth Foundation Flash Grant&lt;br /&gt;
*Conference call with Marcin and Charles Freer regarding Marcin and Catarina&#039;s upcoming visit to London, Ontario&lt;br /&gt;
&lt;br /&gt;
=November 15, 2018=&lt;br /&gt;
Engineering Club students designed and printed a part to add to the Lyman Filament Extruder repository - a bracket for a rocker switch&lt;br /&gt;
&lt;br /&gt;
[[File:SwitchBracket2.png]]&lt;br /&gt;
[[File:Switchbase2.stl]]&lt;br /&gt;
[[File:SwitchBracket.FCStd]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=May, 2012=&lt;br /&gt;
Started project to build metric version of OSE CEB Press in Nanjing, China&lt;br /&gt;
&lt;br /&gt;
=April, 2012=&lt;br /&gt;
Began 3D Printing project in physics class at London International Academy&lt;br /&gt;
&lt;br /&gt;
=July, 2011-October, 2018=&lt;br /&gt;
Many things happened including severe neglect of the OSE wiki&lt;br /&gt;
Some highlights:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Regular incorporation of OSE concepts into classes and presentations 2011-present&lt;br /&gt;
*May, 2013 - started collaboration with Human InnovationPIE, a London non-profit organization focused on providing soft skills education for innovation.&lt;br /&gt;
*April, 2014 - Recognized in local paper for 3D Printer build with students&lt;br /&gt;
*July, 2015 - Asked to start STEM program at London International Academy further to success and popularity of 3D printer project&lt;br /&gt;
*September, 2015 - Began building Farmbot with students&lt;br /&gt;
*January, 2017 - Began teaching an Introduction to STEM course at Western University with significant OSE-based content.&lt;br /&gt;
&lt;br /&gt;
=July 16, 2011=&lt;br /&gt;
Arrived at Factor e Farm with Haydar Neal&lt;br /&gt;
&lt;br /&gt;
=March,  2011=&lt;br /&gt;
Saw TED Talk and wrote away to Marcin immediately&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=Introduction_to_Python&amp;diff=204474</id>
		<title>Introduction to Python</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=Introduction_to_Python&amp;diff=204474"/>
		<updated>2019-11-30T00:46:32Z</updated>

		<summary type="html">&lt;p&gt;Wneal: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page highlights an approach to rapid on-boarding in Python programming.  Sample files with a few concepts are presented.  Participants type in the files and then examine the behaviour of the resulting programs, learning the effect of a few Python keywords each step.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;Python&amp;quot; line=&#039;line&#039;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
#Quiz Program&lt;br /&gt;
answer = input(&amp;quot;What is the capital city of Guyana?&amp;quot;)&lt;br /&gt;
if answer == &amp;quot;Georgetown&amp;quot;:&lt;br /&gt;
    print(&amp;quot;Good answer&amp;quot;)&lt;br /&gt;
elif answer == &amp;quot;GT&amp;quot;:&lt;br /&gt;
    print(&amp;quot;Ok.  We will accept that&amp;quot;)&lt;br /&gt;
else:&lt;br /&gt;
    print(&amp;quot;What kind of an answer is that?&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=Introduction_to_Python&amp;diff=204473</id>
		<title>Introduction to Python</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=Introduction_to_Python&amp;diff=204473"/>
		<updated>2019-11-30T00:43:41Z</updated>

		<summary type="html">&lt;p&gt;Wneal: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page highlights an approach to rapid on-boarding in Python programming.  Sample files with a few concepts are presented.  Participants type in the files and then examine the behaviour of the resulting programs, learning the effect of a few Python keywords each step.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;Python&amp;quot; line=&#039;line&#039;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
#Quiz Program&lt;br /&gt;
answer = input(&amp;quot;What is the capital city of Guyana?&amp;quot;)&lt;br /&gt;
if answer == &amp;quot;Georgetown&amp;quot;:&lt;br /&gt;
    print(&amp;quot;Good answer&amp;quot;)&lt;br /&gt;
elif answer == &amp;quot;GT&amp;quot;:&lt;br /&gt;
    print(&amp;quot;Ok.  We will accept that&amp;quot;)&lt;br /&gt;
else:&lt;br /&gt;
    print(&amp;quot;What kind of an answer is that?&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=Introduction_to_Python&amp;diff=204472</id>
		<title>Introduction to Python</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=Introduction_to_Python&amp;diff=204472"/>
		<updated>2019-11-30T00:42:28Z</updated>

		<summary type="html">&lt;p&gt;Wneal: Created page with &amp;quot;This page highlights an approach to rapid on-boarding in Python programming.  Sample files with a few concepts are presented.  Participants type in the files and then examine...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page highlights an approach to rapid on-boarding in Python programming.  Sample files with a few concepts are presented.  Participants type in the files and then examine the behaviour of the resulting programs, learning the effect of a few Python keywords each step.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;SyntaxHighlight lang=&amp;quot;Python&amp;quot; line=&#039;line&#039;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
#Quiz Program&lt;br /&gt;
answer = input(&amp;quot;What is the capital city of Guyana?&amp;quot;)&lt;br /&gt;
if answer == &amp;quot;Georgetown&amp;quot;:&lt;br /&gt;
    print(&amp;quot;Good answer&amp;quot;)&lt;br /&gt;
elif answer == &amp;quot;GT&amp;quot;:&lt;br /&gt;
    print(&amp;quot;Ok.  We will accept that&amp;quot;)&lt;br /&gt;
else:&lt;br /&gt;
    print(&amp;quot;What kind of an answer is that?&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/SyntaxHighlight&amp;gt;&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=204471</id>
		<title>William Neal Log</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=204471"/>
		<updated>2019-11-30T00:31:43Z</updated>

		<summary type="html">&lt;p&gt;Wneal: /* Thursday November 28 - Friday November 29 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{RightTOC}}&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;600&amp;quot; height=&amp;quot;600&amp;quot; src=&amp;quot;https://osedev.org/wiki/William?start=2/1/2017&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
=Thursday November 28 - Friday November 29=&lt;br /&gt;
Workshop with the Guyana Prison Service - 12 prison staff from five facilities in Guyana. Reactivated 6 discarded computers using Ubuntu and OSE Linux. [[Introduction to Python]] [https://m.facebook.com/groups/398759490316633?view=permalink&amp;amp;id=1215623975296843 OSE Prusa Build]&lt;br /&gt;
&lt;br /&gt;
=Saturday November 23  Wednesday November 27=&lt;br /&gt;
Workshop in Guyana with the Guyana Prison Service: The CSSP Project.  This project aims to replace the current model of prison management with an approach based on human nobility, education and rehabilitation.&lt;br /&gt;
=Thursday November 28=&lt;br /&gt;
[[OSE Linux]] - we got six old computers working on Ubuntu using flash drives.  Tomorrow will have an Open Source software workshop using OSE Linux on USB drives. We will use Python, FreeCAD, LibreOffice, etc. Showed the TED talk to our group of 12 prison officers from five facilities in Guyana.&lt;br /&gt;
&lt;br /&gt;
=Saturday November 2 - Friday November 22=&lt;br /&gt;
Worked on the [[OSE Prusa]] in order to support the establishment of a STEM centre in Trinidad and Tobago and to prepare for a workshop with the Government of Guyana.&lt;br /&gt;
#Items in a numbered list&lt;br /&gt;
#More Items&lt;br /&gt;
##Yet More&lt;br /&gt;
*Items in a bullet list&lt;br /&gt;
*More Items&lt;br /&gt;
**Yet More&lt;br /&gt;
&lt;br /&gt;
=Thursday October 24 - Friday November 1=&lt;br /&gt;
*Tested printing on the London replication of the D3D printer for the first time.&lt;br /&gt;
*Team of 9 students from Western university preparing a project around OSE - D3D replication + filament extruder replication + Chinese Reprap Prusa i3 reverse engineering.&lt;br /&gt;
=Sunday October 12 - Wednesday October 23=&lt;br /&gt;
*Updated some files used in the simple extruder build [https://wiki.opensourceecology.org/wiki/Simple_3D_Printer_Extruder#CAD here.]&lt;br /&gt;
&lt;br /&gt;
=Friday October 4 - Saturday October 11=&lt;br /&gt;
*Successfully tested D3D simple extruder based on Chinese Prusa i3.&lt;br /&gt;
*D3D challenge - Y axis end stop stopped working...&lt;br /&gt;
*Almost finished replicating first of two D3D printers in London Ontario.&lt;br /&gt;
*Preparing a D3D / Brushless motor workshop for the Guyana Prison Service. &lt;br /&gt;
*FreeCAD activity completed at Western University - varied response of individuals in the groups - the allocated time was too short. &lt;br /&gt;
=Friday September 27 - Thursday October 3=&lt;br /&gt;
*Continued work on D3D build.&lt;br /&gt;
*Experimenting with highly differentiated instruction unconstrained by government curricular concerns - our STEM club&#039;s three sections - Robotics / Computers and CAD / STEM projects have each gradually evolved over the last several weeks such that small groups of 1-4 students specialize on special tasks.&lt;br /&gt;
*Introduced FreeCAD to a group of junior youth from a local neighborhood. After about 40 minutes each group of two participants completed a motor rotor design.&lt;br /&gt;
*Second FreeCAD session with a group of 40 teacher candidate students at Western University&#039;s Althouse. Also used highly differentiated / interdisciplinary instruction with this group. After one hour and a half, most groups were able to generate several parts of a brushless motor and begin the process of parameterizing with a spreadsheet and creating an assembly.  Some trained engineers in the crowd generated excellent &amp;quot;propellers&amp;quot; for the motor using advanced features.&lt;br /&gt;
&lt;br /&gt;
=Tuesday, September 1 - Thursday, September 26=&lt;br /&gt;
*New School Year - over 40 students participating in our special STEM/Business/Arts program.&lt;br /&gt;
*Two sections of our program, STEM Projects and Computer Programming/CAD,  include OSE-related topics:&lt;br /&gt;
**Building 3D printers&lt;br /&gt;
**3D-printing&lt;br /&gt;
**OSE Motor design and fabrication&lt;br /&gt;
**Filament extruder&lt;br /&gt;
**CAD&lt;br /&gt;
*Building a 3D printer in collaboration with Bill Phelan, Vice President of Die-X Ltd.&lt;br /&gt;
*Remote collaboration with Branko Misovic in Holland.&lt;br /&gt;
*Preparing for a two-week 3D-printer build / open source hardware workshop in Guyana in November.&lt;br /&gt;
*Working on simple extruder for the D3D printer.&lt;br /&gt;
*Some 3D-printed parts for the D3D printer are not precise enough as they were printed with 1.0mm and 0.8mm nozzles.  We are switching to a 0.4mm nozzle and re-printing.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 27 - Monday September 1=&lt;br /&gt;
*Preparation for STEM camps in China. &lt;br /&gt;
*Travel to China.  Caught behind firewall - Internet was actually a large Intranet - difficult to post, communicate or access any useful sites. &lt;br /&gt;
*STEM Camp at Fujing Foreign language school - 10 days - 60 students, 1.5 hours daily - worked on FreeCAD and the OSE motor. &lt;br /&gt;
*Built OSE D3D printer with eight 9-11 year-old students (10 days, 3 hours daily) at EIC Education in Shenzhen.  The students assembled the axes and helped design some custom 3D-printed brackets for the frame which had to be made out of linear rail. The students learned FreeCAD and were able to design useful parts. Ganesh Ramsahai provided support in completing the build and configuration process. Presented the OSE D3D Shenzhen to the EIC Education Group with a half-hour overview and offer to provide remote support.&lt;br /&gt;
*STEM Camp at Zhangjiagang Foreign Language School in Jiangsu province. 30 students, 3 days, 6 hours per day.  Introduced FreeCAD and had the students design rotors and stators for the OSE brushless motor.&lt;br /&gt;
*Showed the TED talk to four different groups.&lt;br /&gt;
*Uploaded raw FreeCAD and stl files from the camps at Fujing Foreign Language School and Zhangjiagang Foreign Language School to [https://drive.google.com/open?id=1K7U8lEGqRgxwQf-WNX1Llbf-WE7LJCqL Google Drive]&lt;br /&gt;
*Uploaded [https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH custom files] generated during the build of the D3D 19.08 Shenzhen.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 20 - Friday July 26=&lt;br /&gt;
LIA summer STEM camp continued with 38 different students from Shenzhen, China.  The students discussed, in the context of Marcin&#039;s TED Talk, the concept that the human mind, focused and in collaboration with others, has the power to make positive changes in society.  Design of covers and caps for the OSE radial motor. Photos from the STEM Camp activities are [https://photos.app.goo.gl/zcpKk8jaFcDon31K7 here].  Trying to find the USB where we collected all the FreeCAD files.  These will be posted ASAP.&lt;br /&gt;
&lt;br /&gt;
=Monday July 15 - Friday July 19=&lt;br /&gt;
LIA summer STEM camp with 23 students from Vietnam and China. OSE Motor project part II - designing, printing and testing a radial motor. The motor concept was based on the following video: [https://www.youtube.com/watch?v=JkwLpAAfBVI 3D-Printed Axial Brushless Motor for Drones] Students were presented with the concept and asked to design such a motor from scratch using two rotors with eight disc magnets each and two sets of six wire loops.&lt;br /&gt;
&lt;br /&gt;
=Wednesday July 10 - Sunday July 14=&lt;br /&gt;
Preparation for summer STEM Camps at LIA.  Prepared 3D printers.  Began replication of two D3D v19.06 units.&lt;br /&gt;
=Friday June 28 - Tuesday July 9= &lt;br /&gt;
Open Source Ecology Microfactory STEAM Camp&lt;br /&gt;
=Thursday June 27=&lt;br /&gt;
Titan Aero finally working better with 1.5 full turns + a little bit more for good measure - has not jammed all afternoon now - three parts printed.  Logistics for Microfatory STEAM Camp - rented a vehicle and contacted a few participants. A prototype of the OSE extruder has been nearly completed. The extruder gear is scheduled to arrive at Factor e Farm by tomorrow. Then it will be ready for testing.  [https://photos.app.goo.gl/fWUX8ynAdqcn6Fvs6 OSE D3D Extruder - Photo Album][https://drive.google.com/open?id=17BLyvyk1EbrMOhkCfeSwByAq86SemSLX Files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 25 - Wednesday June 26=&lt;br /&gt;
OSE D3D Extruder.  Worked on attaching extruder to X-axis. Ordered extruder motor gears to arrive at FeF on Friday. Printed out bracket 1 successfully. Working on large aluminium block and designing x-axis adapter.&lt;br /&gt;
=Monday June 24=&lt;br /&gt;
Discussion about design of OSE Power Electronics. Problem - transformers are expensive and inflexible. Solution - research the feasibility of creating a 120V buck converter.  Would it be sufficiently efficient and would it be feasible to build?  Here are some potential parts to use: [https://www.digikey.ca/product-detail/en/comchip-technology/GBPC5010W-G/641-1389-ND/2074854 1kV Recifier] [https://www.digikey.ca/product-detail/en/ixys/IXFX120N65X2/IXFX120N65X2-ND/5629498?utm_adgroup=&amp;amp;mkwid=sFMkJ49os&amp;amp;pcrid=311971049444&amp;amp;pkw=&amp;amp;pmt=&amp;amp;pdv=c&amp;amp;productid=5629498&amp;amp;slid=&amp;amp;gclid=EAIaIQobChMIgbDd1fSC4wIVwkOGCh1f8gijEAQYAyABEgJGffD_BwE 650V MOSFET].  One problem seems to be that there may be a high level of energy loss in the circuit....[https://www.digikey.com/product-detail/en/everlight-electronics-co-ltd/H11L1S-TA/1080-1201-1-ND/2675935 Optocoupler] (to isolate the Arduino)[http://fpec.ucf.edu/teaching/EEL%205245%20Lectures/Lecture13%20Chapter4_BoostandBuckBoost_CCM_Analysis.pdf Some background theory]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 19 - Sunday June 23=&lt;br /&gt;
DIY Buck Converter based on the following video (and others): https://www.youtube.com/watch?v=L5oeY53pE0E&amp;amp;t=162s. [https://photos.app.goo.gl/kkHUwBQtD7h48mhB6 Photos.] All four 3D printers are down.  A crucial piece of the extruder of the most reliable printer finally broke. CAD already done for the replacement part. Got the OSE D3D working again on Friday.  Ready for printing on Monday - will print replacement part for other printer.  Other 2 printers almost working...&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 18=&lt;br /&gt;
[https://www.pythonpowerelectronics.com/ Python Power Electronics]&lt;br /&gt;
=Thursday June 13 - Monday June 17=&lt;br /&gt;
Buck Converters. OSE [[Power Electronics]] research. Arduino as controller of Power electronics - frequency issues / limitations. Scalability of Power electronics - can we add modular components to increase voltage, current, etc.?  &lt;br /&gt;
=Tuesday June 11 - Wednesday June 12=&lt;br /&gt;
Completed and sent CAD Drawings for OSE 3D Printer. Spent most of Wednesday working through a jam on the Titan Aero - it has jammed more in a few days than our other extruder has jammed in over three years.&lt;br /&gt;
=Monday June 10=&lt;br /&gt;
[https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH FreeCAD Drawings] for OSE 3D Printer. Note the use of parametric design in the CAD files - Spreadsheet values become variables used in constraint dimensions.&lt;br /&gt;
The following is my most recent FreeCAD Parametric Part Design and Drawing Workflow:[[FreeCAD Workflow]]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 5 - Sunday June 9=&lt;br /&gt;
[https://www.youtube.com/watch?v=CEhBN5_fO5o|DC-DC Buck Converters]&lt;br /&gt;
Power Supply: Transformer + Buck Converter + Ripple Smoothing Circuitry&lt;br /&gt;
=Tuesday June 4=&lt;br /&gt;
*[[Arduino Controlled Power Supply]] - ordered many components.&lt;br /&gt;
*Many electronic components specified in DIY articles and videos are now listed as obsolete.  Finding replacement parts is not easy. Case in point: LM338K Linear Voltage Regulators - Listed as obsolete on the Mouser website and selling for $91 or more on the Digi-key website.&lt;br /&gt;
*[https://www.eetimes.com/document.asp?doc_id=1333695# Article about obsolescence and demand and supply issues in the electronics industry]&lt;br /&gt;
&lt;br /&gt;
=Saturday June 1 - Monday June 3=&lt;br /&gt;
Reviewed [[OSE Design Guides]] Reviewed [[DIY Semiconductors]] Microfactory STEAM Camp Critical Path [[Arduino Controlled Power Supply]] Fabrication of aluminium blocks for hot end for OSE 3D printer extruder. Parametric modelling in FreeCAD.&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 28 - Friday May 31=&lt;br /&gt;
[[Halbach Array Brushless Motor]]&lt;br /&gt;
&lt;br /&gt;
=Monday May 27= &lt;br /&gt;
[https://www.youtube.com/watch?v=uOQk8SJso6Q How to Control an ESC with an Arduino] [https://photos.app.goo.gl/HMvWbigvuw3S26YG8 Test of the OSE Motor].&lt;br /&gt;
&lt;br /&gt;
=Friday May 24 - Sunday May 26= &lt;br /&gt;
Not all that much.&lt;br /&gt;
=Thursday May 23=&lt;br /&gt;
Thank you to Marcin and Catarina for a refreshing, enlightening and enjoyable visit to Factor e Farm and the Seed Ecohome. Returned to London.&lt;br /&gt;
=Wednesday May 22=&lt;br /&gt;
Skype appointment - 12pm Missouri time - friend in Colombia. Uploaded FreeCAD files for D3D v19.04 Power Plug Case to Wiki. [https://en.wikipedia.org/wiki/Buck_converter Buck Converter]&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 21=&lt;br /&gt;
[https://www.powerelectronicsnews.com/problems-solutions/power-supply-design-tutorial Power Supply Design Tutorial] Edited the [https://docs.google.com/document/d/1_3t_97giFOtqJ4ExPZdYeVEilCRhMmu0IWLLpBCrG-0/edit?usp=sharing Video Script] &lt;br /&gt;
Contacted STEM people in Nigeria and Pennsylvania based on the OSE STEAM Camp posted in this [https://www.facebook.com/groups/822455171229260/ Facebook Forum]&lt;br /&gt;
Further communication with friends in Mexico regarding the STEAM camp. Contacted a friend of a friend in Kansas City - Baha&#039;i Community.&lt;br /&gt;
&lt;br /&gt;
=Monday May 20=&lt;br /&gt;
Posted Microfactory STEAM camp on several Facebook STEM/STEAM Education pages. [[The Living Curriculum]] [https://github.com/MarlinFirmware/Marlin/issues/8903 Marlin Bed Temperature Settings] Worked on the Titan-Aero extruder repairs. The two parts of the extruder tube must be fairly tight (but not too tight!) to avoid leakage.&lt;br /&gt;
&lt;br /&gt;
=Sunday May 19=&lt;br /&gt;
Printing ABS using the OSE D3D - Set the bed temperature to 83 and the nozzle temperature to 255.  After 5 minutes of printing, several layers were adhering well. Thermal runaway. Tried 80 and 244; thermal runaway again. Joined several online STEM/Education groups.&lt;br /&gt;
&lt;br /&gt;
=Saturday May 18=&lt;br /&gt;
[[OSE Revenue Generation]] - Grameen Bank / Social Business - [[OSE Curriculum]]&lt;br /&gt;
&lt;br /&gt;
=Friday May 17=&lt;br /&gt;
[[OSE STEM Camp Marketing Strategy]]&lt;br /&gt;
=Friday May 10 - Thursday May 16= &lt;br /&gt;
Preparation for trip to Factor e Farm - gathered supplies - PCB boards, glossy paper, wire, magnets, electronic components, hardware, etc. Arrival at Factor e Farm. Work on D3D v. 19.04: [Photos - OSE D3D v19.04 Build at FeF https://www.facebook.com/photo.php?fbid=10161819908970597&amp;amp;set=pcb.1063740287151880&amp;amp;type=3&amp;amp;theater&amp;amp;ifg=1]&lt;br /&gt;
 &lt;br /&gt;
=Friday April 12 - Thursday May 9=&lt;br /&gt;
[https://drive.google.com/open?id=1-DpgMCARsA5iz4JLZtUeP3SD4a3UrXhj OSE Motor Completed] - ready for testing - Open Source Chinese Prusa i3 Printer Extruder - Configured and began printing with OSE D3D - printing very well at the moment - Booked a flight to Kansas City - heading to Factor e Farm soon!&lt;br /&gt;
&lt;br /&gt;
=Monday March 4 - Thursday April 11=&lt;br /&gt;
FRC Robotics - Ryerson University, Western University. OSE Motor - students have made some progress: [https://drive.google.com/open?id=1n99XWM8KMwvnV-tCmcWjImsBG27ReRSc OSE Brushless Motor] Additional work on the [[Simple 3D Printer Extruder]]&lt;br /&gt;
&lt;br /&gt;
=Sunday March 3=&lt;br /&gt;
Completed the first model of the most difficult part to CAD in the extruder - the X-Axis bracket.  Will now print CAD files and measure their accuracy before making changes to the CAD parameters.  Hopefully this process will result in more accurate parts.&lt;br /&gt;
&lt;br /&gt;
=Friday March 1 - Saturday March 2 =&lt;br /&gt;
Further work on open sourcing Chinese Prusa i3 3D printer extruder.&lt;br /&gt;
&lt;br /&gt;
=Monday February 18 - Thursday February 28=&lt;br /&gt;
Began the process of open-sourcing our 3D printer extruder: [[Simple 3D Printer Extruder]] (see photos and CAD files in the 3D Printer Folder) &lt;br /&gt;
Started a new unit in Computer Engineering Technology class.  Two groups of students are working on OSE materials:  &lt;br /&gt;
#The OSE Collaborative Contest&lt;br /&gt;
#The OSE Filament Extruder&lt;br /&gt;
&lt;br /&gt;
=Saturday February 9-Sunday February 17=&lt;br /&gt;
Hosted a group of six STEM students from School of the Nations in Georgetown, Guyana. STEM Camp at London International Academy.  Introduced the concept of the OSE collaborative contest. Introductory FreeCAD activities. Introduced Python computer programming.  Printed out various parts for an open source brushless motor.  [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX Link to CAD Files] (see School of the Nations sub-folder)[[file:Rotor.jpg|200px]] [http://guyanachronicle.com/2019/02/17/nations-benefits-from-robotics-training-in-canada Article in Guyana Chronicle]&lt;br /&gt;
&lt;br /&gt;
=Wednesday February 6= &lt;br /&gt;
[[OSE Coopetition]].  Discussed wiki + part library + documentation of OSE Coopetition.&lt;br /&gt;
&lt;br /&gt;
=Monday February 4=&lt;br /&gt;
Uploaded version 0.1 of the OSE Collaborative Contest Rules to [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest]&lt;br /&gt;
=Wednesday January 30 - Sunday February 3=&lt;br /&gt;
FRC Build season.  [https://drive.google.com/drive/folders/1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH?usp=sharing Team 6162 Cap Alpaca FreeCAD files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday January 29=&lt;br /&gt;
Collected FreeCAD files in a Google drive folder: [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest] &lt;br /&gt;
Summary of Nanjing group&#039;s schedule: [https://docs.google.com/document/d/1R-Dtu3kdZ0u8Qo5w3_vDuNEg5myr8mUmLjSpPOf-HoI/edit?usp=sharing | 2019 Winter Camp]&lt;br /&gt;
Here is some sample work from the FreeCAD workshop:&lt;br /&gt;
*[[File:ReyJessica.png|200px]]&lt;br /&gt;
*[[File:ZJHLSR.png|200px]]&lt;br /&gt;
&lt;br /&gt;
=Sunday January 27 - Monday January 28=&lt;br /&gt;
Discussed record keeping, file sharing and other skills for collaborative literacy. Created a sample page stub: [[Brushless Motor Design]].  Asked students to reflect on sessions learning FreeCAD.  Found that it is not necessary to learn a whole lot about FreeCAD in order to get students learning it.  Demonstrated two sample FreeCAD 0.17 design processes:&lt;br /&gt;
#Design a part like a motor adapter: body - sketch a circle - pad - sketch on a surface - pocket&lt;br /&gt;
#Design a sketch with constraints - some straight lines and some arcs closed in a loop with particular dimensions and angles.&lt;br /&gt;
After that, students were directed to Youtube videos that covered specific additional skills: &lt;br /&gt;
*Threading - inner and outer&lt;br /&gt;
*Polar patterns&lt;br /&gt;
Through this process, I learned how to do these skills from some students and was able to show other students the same, especially with polar patterns.&lt;br /&gt;
&lt;br /&gt;
=Sunday January, 20 - Saturday January 26, 2019=&lt;br /&gt;
Prepared for and welcomed 19 students from Jinling High School in China. Introduced the concept of the OSE Collaborative Contest.  Marcin spoke with the group over Jitsi on Thursday and on Saturday and proposed that the students participate in the OSE Collaborative Contest. It was well received despite the students&#039; fatigue from travel and skiing. Introduced FreeCAD and had students download and install it. Some computers do not immediately work with FreeCAD; hope that the problem may be solved. We plan to further discuss the students&#039; participation in the contest tomorrow and 3D print some of their early FreeCAD work on Monday. Created a link to LIA students&#039; FreeCAD work.  Currently the folder is being used for FRC preparation.  After the FRC robot is built, we are planning to transition to OSE-related work in this folder: [https://drive.google.com/open?id=1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH LIA OSE Club CAD Files]&lt;br /&gt;
&lt;br /&gt;
=Thursday January 10 - Saturday Jan 19, 2019=&lt;br /&gt;
Heaviest schedule of the year - January and February; progress slower during this time. Working on STEM Curriculum for FeF STEM Camps - [[Summer School 2019]].&lt;br /&gt;
&lt;br /&gt;
=Wed Jan 9, 2019=&lt;br /&gt;
*Use a presentation - template - make a copy - pass this to Heydar - document the simple 3D printing extruder for a low cost 3d printer - [https://docs.google.com/presentation/d/1_kUzO4eRCqrHVpqxSSTs17oLhtikTTyYe_1NxrTKlTI/edit#slide=id.g45ed589c64_0_0]&lt;br /&gt;
*Homework: Complete STEM Curriculum&lt;br /&gt;
&lt;br /&gt;
=January 2, 2019=&lt;br /&gt;
Ordered parts for a brushless motor to be constructed as part of the contest and part of the Computer Engineering Technology class at London International Academy.&lt;br /&gt;
In order to make the collaborative contest work, we will need to create a kit of parts to be easily shipped to participating schools.&lt;br /&gt;
&lt;br /&gt;
=December 24 2018-January 1, 2019=&lt;br /&gt;
Took a break. Reflected on plans for OSE London / OSE Club at London International Academy / OSE Collaborative Contest&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=December 23, 2018=&lt;br /&gt;
Defined particulars of [[OSE STEM Camps]].&lt;br /&gt;
&lt;br /&gt;
=December 22,2018=&lt;br /&gt;
[[William Conversation | Conversation with Marcin]]. Research on OSE Club Activities. Planning for winter semester courses&#039; links to OSE - Computer Engineering Technology and Computer Science. Plans to do the following in Computer Engineering Technology: build a brushless motor and ESC from scratch. Computer Science: Programming projects related to OSE - simulation program? Western University Introduction to STEM Class - offer the OSE Competition as a choice for a final project - help administer / judge / communicate / etc.&lt;br /&gt;
&lt;br /&gt;
=December 12-21, 2018=&lt;br /&gt;
Exams and marking - excellent ways to hinder educational progress. Discussed Canadian bill of materials with Russ Purvis. Discussed the upcoming OSE workshop in Prince George, BC currently in the planning phase. Several phone conversations with Charlie. Worked on some particulars for the upcoming OSE competition in January. Contacted a teacher in Iran to invite her to join the competition with her students. Sent a letter of reference to Russ with respect to hosting an OSE workshop.&lt;br /&gt;
&lt;br /&gt;
=December 8-11, 2018=&lt;br /&gt;
Spoke with Charlie about development of OSE workshops.  Spoke with Marcin and Catarina about the same. Updated Marcin about development of OSE club at London International Academy.  We now have plans to include at least four schools in our first design challenge - School of the Nations in Guyana, Fujing Foreign Language School in Shenzhen and Jinling School in Nanjing. Was approached by a friend to contact Makerspace managers in St. Thomas and Toronto. Arranged a meeting with the makerspace managers at Western University. OSE Marlin v18.10 works for printing with new printer. Successfully printed base layer of a file.  It seems that the extruder may have jammed.  Will check again as soon as possible. LIA students continue to develop their FreeCAD skills and are able to design parts in parallel according to a spacial plan and assemble them into a larger model. Installed OSE Linux on laptop now with a new old-school 1TcB hard drive. OSE Linux did not recognise the card reader; everything else seems to work very well. &amp;lt;strong&amp;gt;Note: Stepper motors on y axis of D3D became alarmingly hot after about 15 minutes of printing.&amp;lt;/strong&amp;gt; Perhaps this is a configuration issue; may need to resolve this before allowing the printer to do a full print.&lt;br /&gt;
&lt;br /&gt;
=December 7, 2018= &lt;br /&gt;
Using OSE Ubuntu on laptop with fried SSD. Internet has connection through ping but does not display pages in Chromium. D3D Marlin recent version from OSE website installed in printer. Autohome produces a collision of the z axis with the extruder as by default the z probe is off the plate.  Tried to move the y axis using various commands such as G0 Y40 and G1 Y40 all of which cause the Y axis to move until it hits the maximum physically possible position. Spoke with Johann Wong about the possibility of combining an OSE Makerspace skills (Arduino, CAD, etc.) + 3D printer workshop with Human Innovation PIE&#039;s soft skills innovation workshop through the London International Academy Foundation. Was using wrong Marlin file for D3D printer - will try correct one asap. Suggestions for D3D: use zip ties and clothespin springs for tensioning belts.  This has worked exceptionally well and reliably for our Chinese Prusa derivative; the belts have needed nearly no attention in three years.&lt;br /&gt;
&lt;br /&gt;
=December 6, 2018=&lt;br /&gt;
Was about to test print on OSE D3D when SSD crashed.  Did Ubuntu fry it?  Researching this.&lt;br /&gt;
&lt;br /&gt;
=December 5, 2018=&lt;br /&gt;
Introduced the OSE design challenge to OSE Club students at London International Academy.&lt;br /&gt;
&lt;br /&gt;
=December 4, 2018= &lt;br /&gt;
Held an informal Introduction to Arduino Workshop at London International Academy to help two grade 11 students with a project.  Spoke with Marcin about plans for the OSE design challenge, OSE club and possibility of a summer camp at FeF in May or June of 2019.&lt;br /&gt;
&lt;br /&gt;
=December 2, 2018=&lt;br /&gt;
 Created a document outlining a framework for OSL - Open Source London and shared it on Google Docs; visited Charlie to discuss the document.&lt;br /&gt;
&lt;br /&gt;
=November 29, 2018=&lt;br /&gt;
 Introduced OSE 3D Printer and Prusa i3 3D printer to parents and students at a local French Immersion school - PAFI.  Designed and printed various models using Blender and Repetier.&lt;br /&gt;
&lt;br /&gt;
=November 28, 2018=&lt;br /&gt;
*Updated OSECartCoin with letters. &lt;br /&gt;
**[[File:PAFI.stl]]&lt;br /&gt;
**[[File:PAFI.fcstd]]&lt;br /&gt;
*Call with Marcin regarding &#039;&#039;&#039;[[LIA OSE Club]]&#039;&#039;&#039;&lt;br /&gt;
*Build from last week - [https://www.facebook.com/groups/398759490316633/permalink/963594880499755/]&lt;br /&gt;
&lt;br /&gt;
=November 27, 2018=&lt;br /&gt;
Wrote the suggested intro to Marcin&#039;s next TED talk: [[Marcin&#039;s Next TED Talk]]&lt;br /&gt;
=November 26, 2018=&lt;br /&gt;
Uploaded FeF Brick Press Fabrication video from July 29, 2011 - [https://youtu.be/LwW8sOUO00s]&lt;br /&gt;
&amp;lt;p&amp;gt;Uploaded video of the &amp;quot;Cluckaphone&amp;quot; - July 29, 2011 - [https://www.youtube.com/watch?v=PNOhZX7ftLk&amp;amp;feature=youtu.be]&lt;br /&gt;
Call with Marcin, Catarina and Charlie - OSE Planning&lt;br /&gt;
&lt;br /&gt;
=November 25, 2018=&lt;br /&gt;
Consultation about the establishment of an OSE Club at London International Academy and future directions for the development of OSE Clubs and Makerspaces.&lt;br /&gt;
&lt;br /&gt;
=November 24, 2018=&lt;br /&gt;
We made an OSE Cart Coin with FreeCAD &lt;br /&gt;
Here are the files for OSE Cart Coin v0.1:&lt;br /&gt;
[[File:OSECartCoin.fcstd]]&lt;br /&gt;
[[File:OSECartCoin.stl]]&lt;br /&gt;
Attended Marcin&#039;s presentation entitled &amp;quot;Education for the Open Source Economy&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=November 23, 2018=&lt;br /&gt;
Built a an OSE 3D printer at London International Academy&lt;br /&gt;
&lt;br /&gt;
=November 23-25=&lt;br /&gt;
Attended first OSE Professional Development workshop at London International Academy with Charles Freer, Pascal Gingras, Marcin and Catarina.&lt;br /&gt;
&lt;br /&gt;
=November 18-22= &lt;br /&gt;
Prepared for the visit of Marcin and Catarina to London.&lt;br /&gt;
&lt;br /&gt;
=November 17, 2018=&lt;br /&gt;
Conversation about OSE development with Charlie.  In particular, discussion about education and its relationship to developing the capacity to lead a meaningful and productive life. Reference to overlap of Baha&#039;i means and principles with those of the OSE - elimination of the extremes of wealth and poverty, building capabilities in a population, individual agency and initiative within a systematically evolving framework, etc.&lt;br /&gt;
&lt;br /&gt;
=November 16, 2018=&lt;br /&gt;
*Received US $5000 Shuttleworth Foundation Flash Grant&lt;br /&gt;
*Conference call with Marcin and Charles Freer regarding Marcin and Catarina&#039;s upcoming visit to London, Ontario&lt;br /&gt;
&lt;br /&gt;
=November 15, 2018=&lt;br /&gt;
Engineering Club students designed and printed a part to add to the Lyman Filament Extruder repository - a bracket for a rocker switch&lt;br /&gt;
&lt;br /&gt;
[[File:SwitchBracket2.png]]&lt;br /&gt;
[[File:Switchbase2.stl]]&lt;br /&gt;
[[File:SwitchBracket.FCStd]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=May, 2012=&lt;br /&gt;
Started project to build metric version of OSE CEB Press in Nanjing, China&lt;br /&gt;
&lt;br /&gt;
=April, 2012=&lt;br /&gt;
Began 3D Printing project in physics class at London International Academy&lt;br /&gt;
&lt;br /&gt;
=July, 2011-October, 2018=&lt;br /&gt;
Many things happened including severe neglect of the OSE wiki&lt;br /&gt;
Some highlights:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Regular incorporation of OSE concepts into classes and presentations 2011-present&lt;br /&gt;
*May, 2013 - started collaboration with Human InnovationPIE, a London non-profit organization focused on providing soft skills education for innovation.&lt;br /&gt;
*April, 2014 - Recognized in local paper for 3D Printer build with students&lt;br /&gt;
*July, 2015 - Asked to start STEM program at London International Academy further to success and popularity of 3D printer project&lt;br /&gt;
*September, 2015 - Began building Farmbot with students&lt;br /&gt;
*January, 2017 - Began teaching an Introduction to STEM course at Western University with significant OSE-based content.&lt;br /&gt;
&lt;br /&gt;
=July 16, 2011=&lt;br /&gt;
Arrived at Factor e Farm with Haydar Neal&lt;br /&gt;
&lt;br /&gt;
=March,  2011=&lt;br /&gt;
Saw TED Talk and wrote away to Marcin immediately&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=204432</id>
		<title>William Neal Log</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=204432"/>
		<updated>2019-11-29T20:28:12Z</updated>

		<summary type="html">&lt;p&gt;Wneal: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{RightTOC}}&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;600&amp;quot; height=&amp;quot;600&amp;quot; src=&amp;quot;https://osedev.org/wiki/William?start=2/1/2017&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
=Thursday November 28 - Friday November 29=&lt;br /&gt;
Workshop with the Guyana Prison Service - 12 prison staff from five facilities in Guyana. Reactivated 6 discarded computers using Ubuntu and OSE Linux. Introduction to Python programming. [https://m.facebook.com/groups/398759490316633?view=permalink&amp;amp;id=1215623975296843 OSE Prusa Build]&lt;br /&gt;
=Saturday November 23  Wednesday November 27=&lt;br /&gt;
Workshop in Guyana with the Guyana Prison Service: The CSSP Project.  This project aims to replace the current model of prison management with an approach based on human nobility, education and rehabilitation.&lt;br /&gt;
=Thursday November 28=&lt;br /&gt;
[[OSE Linux]] - we got six old computers working on Ubuntu using flash drives.  Tomorrow will have an Open Source software workshop using OSE Linux on USB drives. We will use Python, FreeCAD, LibreOffice, etc. Showed the TED talk to our group of 12 prison officers from five facilities in Guyana.&lt;br /&gt;
&lt;br /&gt;
=Saturday November 2 - Friday November 22=&lt;br /&gt;
Worked on the [[OSE Prusa]] in order to support the establishment of a STEM centre in Trinidad and Tobago and to prepare for a workshop with the Government of Guyana.&lt;br /&gt;
#Items in a numbered list&lt;br /&gt;
#More Items&lt;br /&gt;
##Yet More&lt;br /&gt;
*Items in a bullet list&lt;br /&gt;
*More Items&lt;br /&gt;
**Yet More&lt;br /&gt;
&lt;br /&gt;
=Thursday October 24 - Friday November 1=&lt;br /&gt;
*Tested printing on the London replication of the D3D printer for the first time.&lt;br /&gt;
*Team of 9 students from Western university preparing a project around OSE - D3D replication + filament extruder replication + Chinese Reprap Prusa i3 reverse engineering.&lt;br /&gt;
=Sunday October 12 - Wednesday October 23=&lt;br /&gt;
*Updated some files used in the simple extruder build [https://wiki.opensourceecology.org/wiki/Simple_3D_Printer_Extruder#CAD here.]&lt;br /&gt;
&lt;br /&gt;
=Friday October 4 - Saturday October 11=&lt;br /&gt;
*Successfully tested D3D simple extruder based on Chinese Prusa i3.&lt;br /&gt;
*D3D challenge - Y axis end stop stopped working...&lt;br /&gt;
*Almost finished replicating first of two D3D printers in London Ontario.&lt;br /&gt;
*Preparing a D3D / Brushless motor workshop for the Guyana Prison Service. &lt;br /&gt;
*FreeCAD activity completed at Western University - varied response of individuals in the groups - the allocated time was too short. &lt;br /&gt;
=Friday September 27 - Thursday October 3=&lt;br /&gt;
*Continued work on D3D build.&lt;br /&gt;
*Experimenting with highly differentiated instruction unconstrained by government curricular concerns - our STEM club&#039;s three sections - Robotics / Computers and CAD / STEM projects have each gradually evolved over the last several weeks such that small groups of 1-4 students specialize on special tasks.&lt;br /&gt;
*Introduced FreeCAD to a group of junior youth from a local neighborhood. After about 40 minutes each group of two participants completed a motor rotor design.&lt;br /&gt;
*Second FreeCAD session with a group of 40 teacher candidate students at Western University&#039;s Althouse. Also used highly differentiated / interdisciplinary instruction with this group. After one hour and a half, most groups were able to generate several parts of a brushless motor and begin the process of parameterizing with a spreadsheet and creating an assembly.  Some trained engineers in the crowd generated excellent &amp;quot;propellers&amp;quot; for the motor using advanced features.&lt;br /&gt;
&lt;br /&gt;
=Tuesday, September 1 - Thursday, September 26=&lt;br /&gt;
*New School Year - over 40 students participating in our special STEM/Business/Arts program.&lt;br /&gt;
*Two sections of our program, STEM Projects and Computer Programming/CAD,  include OSE-related topics:&lt;br /&gt;
**Building 3D printers&lt;br /&gt;
**3D-printing&lt;br /&gt;
**OSE Motor design and fabrication&lt;br /&gt;
**Filament extruder&lt;br /&gt;
**CAD&lt;br /&gt;
*Building a 3D printer in collaboration with Bill Phelan, Vice President of Die-X Ltd.&lt;br /&gt;
*Remote collaboration with Branko Misovic in Holland.&lt;br /&gt;
*Preparing for a two-week 3D-printer build / open source hardware workshop in Guyana in November.&lt;br /&gt;
*Working on simple extruder for the D3D printer.&lt;br /&gt;
*Some 3D-printed parts for the D3D printer are not precise enough as they were printed with 1.0mm and 0.8mm nozzles.  We are switching to a 0.4mm nozzle and re-printing.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 27 - Monday September 1=&lt;br /&gt;
*Preparation for STEM camps in China. &lt;br /&gt;
*Travel to China.  Caught behind firewall - Internet was actually a large Intranet - difficult to post, communicate or access any useful sites. &lt;br /&gt;
*STEM Camp at Fujing Foreign language school - 10 days - 60 students, 1.5 hours daily - worked on FreeCAD and the OSE motor. &lt;br /&gt;
*Built OSE D3D printer with eight 9-11 year-old students (10 days, 3 hours daily) at EIC Education in Shenzhen.  The students assembled the axes and helped design some custom 3D-printed brackets for the frame which had to be made out of linear rail. The students learned FreeCAD and were able to design useful parts. Ganesh Ramsahai provided support in completing the build and configuration process. Presented the OSE D3D Shenzhen to the EIC Education Group with a half-hour overview and offer to provide remote support.&lt;br /&gt;
*STEM Camp at Zhangjiagang Foreign Language School in Jiangsu province. 30 students, 3 days, 6 hours per day.  Introduced FreeCAD and had the students design rotors and stators for the OSE brushless motor.&lt;br /&gt;
*Showed the TED talk to four different groups.&lt;br /&gt;
*Uploaded raw FreeCAD and stl files from the camps at Fujing Foreign Language School and Zhangjiagang Foreign Language School to [https://drive.google.com/open?id=1K7U8lEGqRgxwQf-WNX1Llbf-WE7LJCqL Google Drive]&lt;br /&gt;
*Uploaded [https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH custom files] generated during the build of the D3D 19.08 Shenzhen.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 20 - Friday July 26=&lt;br /&gt;
LIA summer STEM camp continued with 38 different students from Shenzhen, China.  The students discussed, in the context of Marcin&#039;s TED Talk, the concept that the human mind, focused and in collaboration with others, has the power to make positive changes in society.  Design of covers and caps for the OSE radial motor. Photos from the STEM Camp activities are [https://photos.app.goo.gl/zcpKk8jaFcDon31K7 here].  Trying to find the USB where we collected all the FreeCAD files.  These will be posted ASAP.&lt;br /&gt;
&lt;br /&gt;
=Monday July 15 - Friday July 19=&lt;br /&gt;
LIA summer STEM camp with 23 students from Vietnam and China. OSE Motor project part II - designing, printing and testing a radial motor. The motor concept was based on the following video: [https://www.youtube.com/watch?v=JkwLpAAfBVI 3D-Printed Axial Brushless Motor for Drones] Students were presented with the concept and asked to design such a motor from scratch using two rotors with eight disc magnets each and two sets of six wire loops.&lt;br /&gt;
&lt;br /&gt;
=Wednesday July 10 - Sunday July 14=&lt;br /&gt;
Preparation for summer STEM Camps at LIA.  Prepared 3D printers.  Began replication of two D3D v19.06 units.&lt;br /&gt;
=Friday June 28 - Tuesday July 9= &lt;br /&gt;
Open Source Ecology Microfactory STEAM Camp&lt;br /&gt;
=Thursday June 27=&lt;br /&gt;
Titan Aero finally working better with 1.5 full turns + a little bit more for good measure - has not jammed all afternoon now - three parts printed.  Logistics for Microfatory STEAM Camp - rented a vehicle and contacted a few participants. A prototype of the OSE extruder has been nearly completed. The extruder gear is scheduled to arrive at Factor e Farm by tomorrow. Then it will be ready for testing.  [https://photos.app.goo.gl/fWUX8ynAdqcn6Fvs6 OSE D3D Extruder - Photo Album][https://drive.google.com/open?id=17BLyvyk1EbrMOhkCfeSwByAq86SemSLX Files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 25 - Wednesday June 26=&lt;br /&gt;
OSE D3D Extruder.  Worked on attaching extruder to X-axis. Ordered extruder motor gears to arrive at FeF on Friday. Printed out bracket 1 successfully. Working on large aluminium block and designing x-axis adapter.&lt;br /&gt;
=Monday June 24=&lt;br /&gt;
Discussion about design of OSE Power Electronics. Problem - transformers are expensive and inflexible. Solution - research the feasibility of creating a 120V buck converter.  Would it be sufficiently efficient and would it be feasible to build?  Here are some potential parts to use: [https://www.digikey.ca/product-detail/en/comchip-technology/GBPC5010W-G/641-1389-ND/2074854 1kV Recifier] [https://www.digikey.ca/product-detail/en/ixys/IXFX120N65X2/IXFX120N65X2-ND/5629498?utm_adgroup=&amp;amp;mkwid=sFMkJ49os&amp;amp;pcrid=311971049444&amp;amp;pkw=&amp;amp;pmt=&amp;amp;pdv=c&amp;amp;productid=5629498&amp;amp;slid=&amp;amp;gclid=EAIaIQobChMIgbDd1fSC4wIVwkOGCh1f8gijEAQYAyABEgJGffD_BwE 650V MOSFET].  One problem seems to be that there may be a high level of energy loss in the circuit....[https://www.digikey.com/product-detail/en/everlight-electronics-co-ltd/H11L1S-TA/1080-1201-1-ND/2675935 Optocoupler] (to isolate the Arduino)[http://fpec.ucf.edu/teaching/EEL%205245%20Lectures/Lecture13%20Chapter4_BoostandBuckBoost_CCM_Analysis.pdf Some background theory]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 19 - Sunday June 23=&lt;br /&gt;
DIY Buck Converter based on the following video (and others): https://www.youtube.com/watch?v=L5oeY53pE0E&amp;amp;t=162s. [https://photos.app.goo.gl/kkHUwBQtD7h48mhB6 Photos.] All four 3D printers are down.  A crucial piece of the extruder of the most reliable printer finally broke. CAD already done for the replacement part. Got the OSE D3D working again on Friday.  Ready for printing on Monday - will print replacement part for other printer.  Other 2 printers almost working...&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 18=&lt;br /&gt;
[https://www.pythonpowerelectronics.com/ Python Power Electronics]&lt;br /&gt;
=Thursday June 13 - Monday June 17=&lt;br /&gt;
Buck Converters. OSE [[Power Electronics]] research. Arduino as controller of Power electronics - frequency issues / limitations. Scalability of Power electronics - can we add modular components to increase voltage, current, etc.?  &lt;br /&gt;
=Tuesday June 11 - Wednesday June 12=&lt;br /&gt;
Completed and sent CAD Drawings for OSE 3D Printer. Spent most of Wednesday working through a jam on the Titan Aero - it has jammed more in a few days than our other extruder has jammed in over three years.&lt;br /&gt;
=Monday June 10=&lt;br /&gt;
[https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH FreeCAD Drawings] for OSE 3D Printer. Note the use of parametric design in the CAD files - Spreadsheet values become variables used in constraint dimensions.&lt;br /&gt;
The following is my most recent FreeCAD Parametric Part Design and Drawing Workflow:[[FreeCAD Workflow]]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 5 - Sunday June 9=&lt;br /&gt;
[https://www.youtube.com/watch?v=CEhBN5_fO5o|DC-DC Buck Converters]&lt;br /&gt;
Power Supply: Transformer + Buck Converter + Ripple Smoothing Circuitry&lt;br /&gt;
=Tuesday June 4=&lt;br /&gt;
*[[Arduino Controlled Power Supply]] - ordered many components.&lt;br /&gt;
*Many electronic components specified in DIY articles and videos are now listed as obsolete.  Finding replacement parts is not easy. Case in point: LM338K Linear Voltage Regulators - Listed as obsolete on the Mouser website and selling for $91 or more on the Digi-key website.&lt;br /&gt;
*[https://www.eetimes.com/document.asp?doc_id=1333695# Article about obsolescence and demand and supply issues in the electronics industry]&lt;br /&gt;
&lt;br /&gt;
=Saturday June 1 - Monday June 3=&lt;br /&gt;
Reviewed [[OSE Design Guides]] Reviewed [[DIY Semiconductors]] Microfactory STEAM Camp Critical Path [[Arduino Controlled Power Supply]] Fabrication of aluminium blocks for hot end for OSE 3D printer extruder. Parametric modelling in FreeCAD.&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 28 - Friday May 31=&lt;br /&gt;
[[Halbach Array Brushless Motor]]&lt;br /&gt;
&lt;br /&gt;
=Monday May 27= &lt;br /&gt;
[https://www.youtube.com/watch?v=uOQk8SJso6Q How to Control an ESC with an Arduino] [https://photos.app.goo.gl/HMvWbigvuw3S26YG8 Test of the OSE Motor].&lt;br /&gt;
&lt;br /&gt;
=Friday May 24 - Sunday May 26= &lt;br /&gt;
Not all that much.&lt;br /&gt;
=Thursday May 23=&lt;br /&gt;
Thank you to Marcin and Catarina for a refreshing, enlightening and enjoyable visit to Factor e Farm and the Seed Ecohome. Returned to London.&lt;br /&gt;
=Wednesday May 22=&lt;br /&gt;
Skype appointment - 12pm Missouri time - friend in Colombia. Uploaded FreeCAD files for D3D v19.04 Power Plug Case to Wiki. [https://en.wikipedia.org/wiki/Buck_converter Buck Converter]&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 21=&lt;br /&gt;
[https://www.powerelectronicsnews.com/problems-solutions/power-supply-design-tutorial Power Supply Design Tutorial] Edited the [https://docs.google.com/document/d/1_3t_97giFOtqJ4ExPZdYeVEilCRhMmu0IWLLpBCrG-0/edit?usp=sharing Video Script] &lt;br /&gt;
Contacted STEM people in Nigeria and Pennsylvania based on the OSE STEAM Camp posted in this [https://www.facebook.com/groups/822455171229260/ Facebook Forum]&lt;br /&gt;
Further communication with friends in Mexico regarding the STEAM camp. Contacted a friend of a friend in Kansas City - Baha&#039;i Community.&lt;br /&gt;
&lt;br /&gt;
=Monday May 20=&lt;br /&gt;
Posted Microfactory STEAM camp on several Facebook STEM/STEAM Education pages. [[The Living Curriculum]] [https://github.com/MarlinFirmware/Marlin/issues/8903 Marlin Bed Temperature Settings] Worked on the Titan-Aero extruder repairs. The two parts of the extruder tube must be fairly tight (but not too tight!) to avoid leakage.&lt;br /&gt;
&lt;br /&gt;
=Sunday May 19=&lt;br /&gt;
Printing ABS using the OSE D3D - Set the bed temperature to 83 and the nozzle temperature to 255.  After 5 minutes of printing, several layers were adhering well. Thermal runaway. Tried 80 and 244; thermal runaway again. Joined several online STEM/Education groups.&lt;br /&gt;
&lt;br /&gt;
=Saturday May 18=&lt;br /&gt;
[[OSE Revenue Generation]] - Grameen Bank / Social Business - [[OSE Curriculum]]&lt;br /&gt;
&lt;br /&gt;
=Friday May 17=&lt;br /&gt;
[[OSE STEM Camp Marketing Strategy]]&lt;br /&gt;
=Friday May 10 - Thursday May 16= &lt;br /&gt;
Preparation for trip to Factor e Farm - gathered supplies - PCB boards, glossy paper, wire, magnets, electronic components, hardware, etc. Arrival at Factor e Farm. Work on D3D v. 19.04: [Photos - OSE D3D v19.04 Build at FeF https://www.facebook.com/photo.php?fbid=10161819908970597&amp;amp;set=pcb.1063740287151880&amp;amp;type=3&amp;amp;theater&amp;amp;ifg=1]&lt;br /&gt;
 &lt;br /&gt;
=Friday April 12 - Thursday May 9=&lt;br /&gt;
[https://drive.google.com/open?id=1-DpgMCARsA5iz4JLZtUeP3SD4a3UrXhj OSE Motor Completed] - ready for testing - Open Source Chinese Prusa i3 Printer Extruder - Configured and began printing with OSE D3D - printing very well at the moment - Booked a flight to Kansas City - heading to Factor e Farm soon!&lt;br /&gt;
&lt;br /&gt;
=Monday March 4 - Thursday April 11=&lt;br /&gt;
FRC Robotics - Ryerson University, Western University. OSE Motor - students have made some progress: [https://drive.google.com/open?id=1n99XWM8KMwvnV-tCmcWjImsBG27ReRSc OSE Brushless Motor] Additional work on the [[Simple 3D Printer Extruder]]&lt;br /&gt;
&lt;br /&gt;
=Sunday March 3=&lt;br /&gt;
Completed the first model of the most difficult part to CAD in the extruder - the X-Axis bracket.  Will now print CAD files and measure their accuracy before making changes to the CAD parameters.  Hopefully this process will result in more accurate parts.&lt;br /&gt;
&lt;br /&gt;
=Friday March 1 - Saturday March 2 =&lt;br /&gt;
Further work on open sourcing Chinese Prusa i3 3D printer extruder.&lt;br /&gt;
&lt;br /&gt;
=Monday February 18 - Thursday February 28=&lt;br /&gt;
Began the process of open-sourcing our 3D printer extruder: [[Simple 3D Printer Extruder]] (see photos and CAD files in the 3D Printer Folder) &lt;br /&gt;
Started a new unit in Computer Engineering Technology class.  Two groups of students are working on OSE materials:  &lt;br /&gt;
#The OSE Collaborative Contest&lt;br /&gt;
#The OSE Filament Extruder&lt;br /&gt;
&lt;br /&gt;
=Saturday February 9-Sunday February 17=&lt;br /&gt;
Hosted a group of six STEM students from School of the Nations in Georgetown, Guyana. STEM Camp at London International Academy.  Introduced the concept of the OSE collaborative contest. Introductory FreeCAD activities. Introduced Python computer programming.  Printed out various parts for an open source brushless motor.  [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX Link to CAD Files] (see School of the Nations sub-folder)[[file:Rotor.jpg|200px]] [http://guyanachronicle.com/2019/02/17/nations-benefits-from-robotics-training-in-canada Article in Guyana Chronicle]&lt;br /&gt;
&lt;br /&gt;
=Wednesday February 6= &lt;br /&gt;
[[OSE Coopetition]].  Discussed wiki + part library + documentation of OSE Coopetition.&lt;br /&gt;
&lt;br /&gt;
=Monday February 4=&lt;br /&gt;
Uploaded version 0.1 of the OSE Collaborative Contest Rules to [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest]&lt;br /&gt;
=Wednesday January 30 - Sunday February 3=&lt;br /&gt;
FRC Build season.  [https://drive.google.com/drive/folders/1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH?usp=sharing Team 6162 Cap Alpaca FreeCAD files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday January 29=&lt;br /&gt;
Collected FreeCAD files in a Google drive folder: [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest] &lt;br /&gt;
Summary of Nanjing group&#039;s schedule: [https://docs.google.com/document/d/1R-Dtu3kdZ0u8Qo5w3_vDuNEg5myr8mUmLjSpPOf-HoI/edit?usp=sharing | 2019 Winter Camp]&lt;br /&gt;
Here is some sample work from the FreeCAD workshop:&lt;br /&gt;
*[[File:ReyJessica.png|200px]]&lt;br /&gt;
*[[File:ZJHLSR.png|200px]]&lt;br /&gt;
&lt;br /&gt;
=Sunday January 27 - Monday January 28=&lt;br /&gt;
Discussed record keeping, file sharing and other skills for collaborative literacy. Created a sample page stub: [[Brushless Motor Design]].  Asked students to reflect on sessions learning FreeCAD.  Found that it is not necessary to learn a whole lot about FreeCAD in order to get students learning it.  Demonstrated two sample FreeCAD 0.17 design processes:&lt;br /&gt;
#Design a part like a motor adapter: body - sketch a circle - pad - sketch on a surface - pocket&lt;br /&gt;
#Design a sketch with constraints - some straight lines and some arcs closed in a loop with particular dimensions and angles.&lt;br /&gt;
After that, students were directed to Youtube videos that covered specific additional skills: &lt;br /&gt;
*Threading - inner and outer&lt;br /&gt;
*Polar patterns&lt;br /&gt;
Through this process, I learned how to do these skills from some students and was able to show other students the same, especially with polar patterns.&lt;br /&gt;
&lt;br /&gt;
=Sunday January, 20 - Saturday January 26, 2019=&lt;br /&gt;
Prepared for and welcomed 19 students from Jinling High School in China. Introduced the concept of the OSE Collaborative Contest.  Marcin spoke with the group over Jitsi on Thursday and on Saturday and proposed that the students participate in the OSE Collaborative Contest. It was well received despite the students&#039; fatigue from travel and skiing. Introduced FreeCAD and had students download and install it. Some computers do not immediately work with FreeCAD; hope that the problem may be solved. We plan to further discuss the students&#039; participation in the contest tomorrow and 3D print some of their early FreeCAD work on Monday. Created a link to LIA students&#039; FreeCAD work.  Currently the folder is being used for FRC preparation.  After the FRC robot is built, we are planning to transition to OSE-related work in this folder: [https://drive.google.com/open?id=1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH LIA OSE Club CAD Files]&lt;br /&gt;
&lt;br /&gt;
=Thursday January 10 - Saturday Jan 19, 2019=&lt;br /&gt;
Heaviest schedule of the year - January and February; progress slower during this time. Working on STEM Curriculum for FeF STEM Camps - [[Summer School 2019]].&lt;br /&gt;
&lt;br /&gt;
=Wed Jan 9, 2019=&lt;br /&gt;
*Use a presentation - template - make a copy - pass this to Heydar - document the simple 3D printing extruder for a low cost 3d printer - [https://docs.google.com/presentation/d/1_kUzO4eRCqrHVpqxSSTs17oLhtikTTyYe_1NxrTKlTI/edit#slide=id.g45ed589c64_0_0]&lt;br /&gt;
*Homework: Complete STEM Curriculum&lt;br /&gt;
&lt;br /&gt;
=January 2, 2019=&lt;br /&gt;
Ordered parts for a brushless motor to be constructed as part of the contest and part of the Computer Engineering Technology class at London International Academy.&lt;br /&gt;
In order to make the collaborative contest work, we will need to create a kit of parts to be easily shipped to participating schools.&lt;br /&gt;
&lt;br /&gt;
=December 24 2018-January 1, 2019=&lt;br /&gt;
Took a break. Reflected on plans for OSE London / OSE Club at London International Academy / OSE Collaborative Contest&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=December 23, 2018=&lt;br /&gt;
Defined particulars of [[OSE STEM Camps]].&lt;br /&gt;
&lt;br /&gt;
=December 22,2018=&lt;br /&gt;
[[William Conversation | Conversation with Marcin]]. Research on OSE Club Activities. Planning for winter semester courses&#039; links to OSE - Computer Engineering Technology and Computer Science. Plans to do the following in Computer Engineering Technology: build a brushless motor and ESC from scratch. Computer Science: Programming projects related to OSE - simulation program? Western University Introduction to STEM Class - offer the OSE Competition as a choice for a final project - help administer / judge / communicate / etc.&lt;br /&gt;
&lt;br /&gt;
=December 12-21, 2018=&lt;br /&gt;
Exams and marking - excellent ways to hinder educational progress. Discussed Canadian bill of materials with Russ Purvis. Discussed the upcoming OSE workshop in Prince George, BC currently in the planning phase. Several phone conversations with Charlie. Worked on some particulars for the upcoming OSE competition in January. Contacted a teacher in Iran to invite her to join the competition with her students. Sent a letter of reference to Russ with respect to hosting an OSE workshop.&lt;br /&gt;
&lt;br /&gt;
=December 8-11, 2018=&lt;br /&gt;
Spoke with Charlie about development of OSE workshops.  Spoke with Marcin and Catarina about the same. Updated Marcin about development of OSE club at London International Academy.  We now have plans to include at least four schools in our first design challenge - School of the Nations in Guyana, Fujing Foreign Language School in Shenzhen and Jinling School in Nanjing. Was approached by a friend to contact Makerspace managers in St. Thomas and Toronto. Arranged a meeting with the makerspace managers at Western University. OSE Marlin v18.10 works for printing with new printer. Successfully printed base layer of a file.  It seems that the extruder may have jammed.  Will check again as soon as possible. LIA students continue to develop their FreeCAD skills and are able to design parts in parallel according to a spacial plan and assemble them into a larger model. Installed OSE Linux on laptop now with a new old-school 1TcB hard drive. OSE Linux did not recognise the card reader; everything else seems to work very well. &amp;lt;strong&amp;gt;Note: Stepper motors on y axis of D3D became alarmingly hot after about 15 minutes of printing.&amp;lt;/strong&amp;gt; Perhaps this is a configuration issue; may need to resolve this before allowing the printer to do a full print.&lt;br /&gt;
&lt;br /&gt;
=December 7, 2018= &lt;br /&gt;
Using OSE Ubuntu on laptop with fried SSD. Internet has connection through ping but does not display pages in Chromium. D3D Marlin recent version from OSE website installed in printer. Autohome produces a collision of the z axis with the extruder as by default the z probe is off the plate.  Tried to move the y axis using various commands such as G0 Y40 and G1 Y40 all of which cause the Y axis to move until it hits the maximum physically possible position. Spoke with Johann Wong about the possibility of combining an OSE Makerspace skills (Arduino, CAD, etc.) + 3D printer workshop with Human Innovation PIE&#039;s soft skills innovation workshop through the London International Academy Foundation. Was using wrong Marlin file for D3D printer - will try correct one asap. Suggestions for D3D: use zip ties and clothespin springs for tensioning belts.  This has worked exceptionally well and reliably for our Chinese Prusa derivative; the belts have needed nearly no attention in three years.&lt;br /&gt;
&lt;br /&gt;
=December 6, 2018=&lt;br /&gt;
Was about to test print on OSE D3D when SSD crashed.  Did Ubuntu fry it?  Researching this.&lt;br /&gt;
&lt;br /&gt;
=December 5, 2018=&lt;br /&gt;
Introduced the OSE design challenge to OSE Club students at London International Academy.&lt;br /&gt;
&lt;br /&gt;
=December 4, 2018= &lt;br /&gt;
Held an informal Introduction to Arduino Workshop at London International Academy to help two grade 11 students with a project.  Spoke with Marcin about plans for the OSE design challenge, OSE club and possibility of a summer camp at FeF in May or June of 2019.&lt;br /&gt;
&lt;br /&gt;
=December 2, 2018=&lt;br /&gt;
 Created a document outlining a framework for OSL - Open Source London and shared it on Google Docs; visited Charlie to discuss the document.&lt;br /&gt;
&lt;br /&gt;
=November 29, 2018=&lt;br /&gt;
 Introduced OSE 3D Printer and Prusa i3 3D printer to parents and students at a local French Immersion school - PAFI.  Designed and printed various models using Blender and Repetier.&lt;br /&gt;
&lt;br /&gt;
=November 28, 2018=&lt;br /&gt;
*Updated OSECartCoin with letters. &lt;br /&gt;
**[[File:PAFI.stl]]&lt;br /&gt;
**[[File:PAFI.fcstd]]&lt;br /&gt;
*Call with Marcin regarding &#039;&#039;&#039;[[LIA OSE Club]]&#039;&#039;&#039;&lt;br /&gt;
*Build from last week - [https://www.facebook.com/groups/398759490316633/permalink/963594880499755/]&lt;br /&gt;
&lt;br /&gt;
=November 27, 2018=&lt;br /&gt;
Wrote the suggested intro to Marcin&#039;s next TED talk: [[Marcin&#039;s Next TED Talk]]&lt;br /&gt;
=November 26, 2018=&lt;br /&gt;
Uploaded FeF Brick Press Fabrication video from July 29, 2011 - [https://youtu.be/LwW8sOUO00s]&lt;br /&gt;
&amp;lt;p&amp;gt;Uploaded video of the &amp;quot;Cluckaphone&amp;quot; - July 29, 2011 - [https://www.youtube.com/watch?v=PNOhZX7ftLk&amp;amp;feature=youtu.be]&lt;br /&gt;
Call with Marcin, Catarina and Charlie - OSE Planning&lt;br /&gt;
&lt;br /&gt;
=November 25, 2018=&lt;br /&gt;
Consultation about the establishment of an OSE Club at London International Academy and future directions for the development of OSE Clubs and Makerspaces.&lt;br /&gt;
&lt;br /&gt;
=November 24, 2018=&lt;br /&gt;
We made an OSE Cart Coin with FreeCAD &lt;br /&gt;
Here are the files for OSE Cart Coin v0.1:&lt;br /&gt;
[[File:OSECartCoin.fcstd]]&lt;br /&gt;
[[File:OSECartCoin.stl]]&lt;br /&gt;
Attended Marcin&#039;s presentation entitled &amp;quot;Education for the Open Source Economy&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=November 23, 2018=&lt;br /&gt;
Built a an OSE 3D printer at London International Academy&lt;br /&gt;
&lt;br /&gt;
=November 23-25=&lt;br /&gt;
Attended first OSE Professional Development workshop at London International Academy with Charles Freer, Pascal Gingras, Marcin and Catarina.&lt;br /&gt;
&lt;br /&gt;
=November 18-22= &lt;br /&gt;
Prepared for the visit of Marcin and Catarina to London.&lt;br /&gt;
&lt;br /&gt;
=November 17, 2018=&lt;br /&gt;
Conversation about OSE development with Charlie.  In particular, discussion about education and its relationship to developing the capacity to lead a meaningful and productive life. Reference to overlap of Baha&#039;i means and principles with those of the OSE - elimination of the extremes of wealth and poverty, building capabilities in a population, individual agency and initiative within a systematically evolving framework, etc.&lt;br /&gt;
&lt;br /&gt;
=November 16, 2018=&lt;br /&gt;
*Received US $5000 Shuttleworth Foundation Flash Grant&lt;br /&gt;
*Conference call with Marcin and Charles Freer regarding Marcin and Catarina&#039;s upcoming visit to London, Ontario&lt;br /&gt;
&lt;br /&gt;
=November 15, 2018=&lt;br /&gt;
Engineering Club students designed and printed a part to add to the Lyman Filament Extruder repository - a bracket for a rocker switch&lt;br /&gt;
&lt;br /&gt;
[[File:SwitchBracket2.png]]&lt;br /&gt;
[[File:Switchbase2.stl]]&lt;br /&gt;
[[File:SwitchBracket.FCStd]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=May, 2012=&lt;br /&gt;
Started project to build metric version of OSE CEB Press in Nanjing, China&lt;br /&gt;
&lt;br /&gt;
=April, 2012=&lt;br /&gt;
Began 3D Printing project in physics class at London International Academy&lt;br /&gt;
&lt;br /&gt;
=July, 2011-October, 2018=&lt;br /&gt;
Many things happened including severe neglect of the OSE wiki&lt;br /&gt;
Some highlights:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Regular incorporation of OSE concepts into classes and presentations 2011-present&lt;br /&gt;
*May, 2013 - started collaboration with Human InnovationPIE, a London non-profit organization focused on providing soft skills education for innovation.&lt;br /&gt;
*April, 2014 - Recognized in local paper for 3D Printer build with students&lt;br /&gt;
*July, 2015 - Asked to start STEM program at London International Academy further to success and popularity of 3D printer project&lt;br /&gt;
*September, 2015 - Began building Farmbot with students&lt;br /&gt;
*January, 2017 - Began teaching an Introduction to STEM course at Western University with significant OSE-based content.&lt;br /&gt;
&lt;br /&gt;
=July 16, 2011=&lt;br /&gt;
Arrived at Factor e Farm with Haydar Neal&lt;br /&gt;
&lt;br /&gt;
=March,  2011=&lt;br /&gt;
Saw TED Talk and wrote away to Marcin immediately&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=204373</id>
		<title>William Neal Log</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=204373"/>
		<updated>2019-11-28T22:14:07Z</updated>

		<summary type="html">&lt;p&gt;Wneal: /* Thursday November 28 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{RightTOC}}&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;600&amp;quot; height=&amp;quot;600&amp;quot; src=&amp;quot;https://osedev.org/wiki/William?start=2/1/2017&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
=Saturday November 23  Wednesday November 27=&lt;br /&gt;
Workshop in Guyana with the Guyana Prison Service: The CSSP Project.  This project aims to replace the current model of prison management with an approach based on human nobility, education and rehabilitation.&lt;br /&gt;
=Thursday November 28=&lt;br /&gt;
[[OSE Linux]] - we got six old computers working on Ubuntu using flash drives.  Tomorrow will have an Open Source software workshop using OSE Linux on USB drives. We will use Python, FreeCAD, LibreOffice, etc. Showed the TED talk to our group of 12 prison officers from five facilities in Guyana.&lt;br /&gt;
&lt;br /&gt;
=Saturday November 2 - Friday November 22=&lt;br /&gt;
Worked on the [[OSE Prusa]] in order to support the establishment of a STEM centre in Trinidad and Tobago and to prepare for a workshop with the Government of Guyana.&lt;br /&gt;
#Items in a numbered list&lt;br /&gt;
#More Items&lt;br /&gt;
##Yet More&lt;br /&gt;
*Items in a bullet list&lt;br /&gt;
*More Items&lt;br /&gt;
**Yet More&lt;br /&gt;
&lt;br /&gt;
=Thursday October 24 - Friday November 1=&lt;br /&gt;
*Tested printing on the London replication of the D3D printer for the first time.&lt;br /&gt;
*Team of 9 students from Western university preparing a project around OSE - D3D replication + filament extruder replication + Chinese Reprap Prusa i3 reverse engineering.&lt;br /&gt;
=Sunday October 12 - Wednesday October 23=&lt;br /&gt;
*Updated some files used in the simple extruder build [https://wiki.opensourceecology.org/wiki/Simple_3D_Printer_Extruder#CAD here.]&lt;br /&gt;
&lt;br /&gt;
=Friday October 4 - Saturday October 11=&lt;br /&gt;
*Successfully tested D3D simple extruder based on Chinese Prusa i3.&lt;br /&gt;
*D3D challenge - Y axis end stop stopped working...&lt;br /&gt;
*Almost finished replicating first of two D3D printers in London Ontario.&lt;br /&gt;
*Preparing a D3D / Brushless motor workshop for the Guyana Prison Service. &lt;br /&gt;
*FreeCAD activity completed at Western University - varied response of individuals in the groups - the allocated time was too short. &lt;br /&gt;
=Friday September 27 - Thursday October 3=&lt;br /&gt;
*Continued work on D3D build.&lt;br /&gt;
*Experimenting with highly differentiated instruction unconstrained by government curricular concerns - our STEM club&#039;s three sections - Robotics / Computers and CAD / STEM projects have each gradually evolved over the last several weeks such that small groups of 1-4 students specialize on special tasks.&lt;br /&gt;
*Introduced FreeCAD to a group of junior youth from a local neighborhood. After about 40 minutes each group of two participants completed a motor rotor design.&lt;br /&gt;
*Second FreeCAD session with a group of 40 teacher candidate students at Western University&#039;s Althouse. Also used highly differentiated / interdisciplinary instruction with this group. After one hour and a half, most groups were able to generate several parts of a brushless motor and begin the process of parameterizing with a spreadsheet and creating an assembly.  Some trained engineers in the crowd generated excellent &amp;quot;propellers&amp;quot; for the motor using advanced features.&lt;br /&gt;
&lt;br /&gt;
=Tuesday, September 1 - Thursday, September 26=&lt;br /&gt;
*New School Year - over 40 students participating in our special STEM/Business/Arts program.&lt;br /&gt;
*Two sections of our program, STEM Projects and Computer Programming/CAD,  include OSE-related topics:&lt;br /&gt;
**Building 3D printers&lt;br /&gt;
**3D-printing&lt;br /&gt;
**OSE Motor design and fabrication&lt;br /&gt;
**Filament extruder&lt;br /&gt;
**CAD&lt;br /&gt;
*Building a 3D printer in collaboration with Bill Phelan, Vice President of Die-X Ltd.&lt;br /&gt;
*Remote collaboration with Branko Misovic in Holland.&lt;br /&gt;
*Preparing for a two-week 3D-printer build / open source hardware workshop in Guyana in November.&lt;br /&gt;
*Working on simple extruder for the D3D printer.&lt;br /&gt;
*Some 3D-printed parts for the D3D printer are not precise enough as they were printed with 1.0mm and 0.8mm nozzles.  We are switching to a 0.4mm nozzle and re-printing.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 27 - Monday September 1=&lt;br /&gt;
*Preparation for STEM camps in China. &lt;br /&gt;
*Travel to China.  Caught behind firewall - Internet was actually a large Intranet - difficult to post, communicate or access any useful sites. &lt;br /&gt;
*STEM Camp at Fujing Foreign language school - 10 days - 60 students, 1.5 hours daily - worked on FreeCAD and the OSE motor. &lt;br /&gt;
*Built OSE D3D printer with eight 9-11 year-old students (10 days, 3 hours daily) at EIC Education in Shenzhen.  The students assembled the axes and helped design some custom 3D-printed brackets for the frame which had to be made out of linear rail. The students learned FreeCAD and were able to design useful parts. Ganesh Ramsahai provided support in completing the build and configuration process. Presented the OSE D3D Shenzhen to the EIC Education Group with a half-hour overview and offer to provide remote support.&lt;br /&gt;
*STEM Camp at Zhangjiagang Foreign Language School in Jiangsu province. 30 students, 3 days, 6 hours per day.  Introduced FreeCAD and had the students design rotors and stators for the OSE brushless motor.&lt;br /&gt;
*Showed the TED talk to four different groups.&lt;br /&gt;
*Uploaded raw FreeCAD and stl files from the camps at Fujing Foreign Language School and Zhangjiagang Foreign Language School to [https://drive.google.com/open?id=1K7U8lEGqRgxwQf-WNX1Llbf-WE7LJCqL Google Drive]&lt;br /&gt;
*Uploaded [https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH custom files] generated during the build of the D3D 19.08 Shenzhen.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 20 - Friday July 26=&lt;br /&gt;
LIA summer STEM camp continued with 38 different students from Shenzhen, China.  The students discussed, in the context of Marcin&#039;s TED Talk, the concept that the human mind, focused and in collaboration with others, has the power to make positive changes in society.  Design of covers and caps for the OSE radial motor. Photos from the STEM Camp activities are [https://photos.app.goo.gl/zcpKk8jaFcDon31K7 here].  Trying to find the USB where we collected all the FreeCAD files.  These will be posted ASAP.&lt;br /&gt;
&lt;br /&gt;
=Monday July 15 - Friday July 19=&lt;br /&gt;
LIA summer STEM camp with 23 students from Vietnam and China. OSE Motor project part II - designing, printing and testing a radial motor. The motor concept was based on the following video: [https://www.youtube.com/watch?v=JkwLpAAfBVI 3D-Printed Axial Brushless Motor for Drones] Students were presented with the concept and asked to design such a motor from scratch using two rotors with eight disc magnets each and two sets of six wire loops.&lt;br /&gt;
&lt;br /&gt;
=Wednesday July 10 - Sunday July 14=&lt;br /&gt;
Preparation for summer STEM Camps at LIA.  Prepared 3D printers.  Began replication of two D3D v19.06 units.&lt;br /&gt;
=Friday June 28 - Tuesday July 9= &lt;br /&gt;
Open Source Ecology Microfactory STEAM Camp&lt;br /&gt;
=Thursday June 27=&lt;br /&gt;
Titan Aero finally working better with 1.5 full turns + a little bit more for good measure - has not jammed all afternoon now - three parts printed.  Logistics for Microfatory STEAM Camp - rented a vehicle and contacted a few participants. A prototype of the OSE extruder has been nearly completed. The extruder gear is scheduled to arrive at Factor e Farm by tomorrow. Then it will be ready for testing.  [https://photos.app.goo.gl/fWUX8ynAdqcn6Fvs6 OSE D3D Extruder - Photo Album][https://drive.google.com/open?id=17BLyvyk1EbrMOhkCfeSwByAq86SemSLX Files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 25 - Wednesday June 26=&lt;br /&gt;
OSE D3D Extruder.  Worked on attaching extruder to X-axis. Ordered extruder motor gears to arrive at FeF on Friday. Printed out bracket 1 successfully. Working on large aluminium block and designing x-axis adapter.&lt;br /&gt;
=Monday June 24=&lt;br /&gt;
Discussion about design of OSE Power Electronics. Problem - transformers are expensive and inflexible. Solution - research the feasibility of creating a 120V buck converter.  Would it be sufficiently efficient and would it be feasible to build?  Here are some potential parts to use: [https://www.digikey.ca/product-detail/en/comchip-technology/GBPC5010W-G/641-1389-ND/2074854 1kV Recifier] [https://www.digikey.ca/product-detail/en/ixys/IXFX120N65X2/IXFX120N65X2-ND/5629498?utm_adgroup=&amp;amp;mkwid=sFMkJ49os&amp;amp;pcrid=311971049444&amp;amp;pkw=&amp;amp;pmt=&amp;amp;pdv=c&amp;amp;productid=5629498&amp;amp;slid=&amp;amp;gclid=EAIaIQobChMIgbDd1fSC4wIVwkOGCh1f8gijEAQYAyABEgJGffD_BwE 650V MOSFET].  One problem seems to be that there may be a high level of energy loss in the circuit....[https://www.digikey.com/product-detail/en/everlight-electronics-co-ltd/H11L1S-TA/1080-1201-1-ND/2675935 Optocoupler] (to isolate the Arduino)[http://fpec.ucf.edu/teaching/EEL%205245%20Lectures/Lecture13%20Chapter4_BoostandBuckBoost_CCM_Analysis.pdf Some background theory]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 19 - Sunday June 23=&lt;br /&gt;
DIY Buck Converter based on the following video (and others): https://www.youtube.com/watch?v=L5oeY53pE0E&amp;amp;t=162s. [https://photos.app.goo.gl/kkHUwBQtD7h48mhB6 Photos.] All four 3D printers are down.  A crucial piece of the extruder of the most reliable printer finally broke. CAD already done for the replacement part. Got the OSE D3D working again on Friday.  Ready for printing on Monday - will print replacement part for other printer.  Other 2 printers almost working...&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 18=&lt;br /&gt;
[https://www.pythonpowerelectronics.com/ Python Power Electronics]&lt;br /&gt;
=Thursday June 13 - Monday June 17=&lt;br /&gt;
Buck Converters. OSE [[Power Electronics]] research. Arduino as controller of Power electronics - frequency issues / limitations. Scalability of Power electronics - can we add modular components to increase voltage, current, etc.?  &lt;br /&gt;
=Tuesday June 11 - Wednesday June 12=&lt;br /&gt;
Completed and sent CAD Drawings for OSE 3D Printer. Spent most of Wednesday working through a jam on the Titan Aero - it has jammed more in a few days than our other extruder has jammed in over three years.&lt;br /&gt;
=Monday June 10=&lt;br /&gt;
[https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH FreeCAD Drawings] for OSE 3D Printer. Note the use of parametric design in the CAD files - Spreadsheet values become variables used in constraint dimensions.&lt;br /&gt;
The following is my most recent FreeCAD Parametric Part Design and Drawing Workflow:[[FreeCAD Workflow]]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 5 - Sunday June 9=&lt;br /&gt;
[https://www.youtube.com/watch?v=CEhBN5_fO5o|DC-DC Buck Converters]&lt;br /&gt;
Power Supply: Transformer + Buck Converter + Ripple Smoothing Circuitry&lt;br /&gt;
=Tuesday June 4=&lt;br /&gt;
*[[Arduino Controlled Power Supply]] - ordered many components.&lt;br /&gt;
*Many electronic components specified in DIY articles and videos are now listed as obsolete.  Finding replacement parts is not easy. Case in point: LM338K Linear Voltage Regulators - Listed as obsolete on the Mouser website and selling for $91 or more on the Digi-key website.&lt;br /&gt;
*[https://www.eetimes.com/document.asp?doc_id=1333695# Article about obsolescence and demand and supply issues in the electronics industry]&lt;br /&gt;
&lt;br /&gt;
=Saturday June 1 - Monday June 3=&lt;br /&gt;
Reviewed [[OSE Design Guides]] Reviewed [[DIY Semiconductors]] Microfactory STEAM Camp Critical Path [[Arduino Controlled Power Supply]] Fabrication of aluminium blocks for hot end for OSE 3D printer extruder. Parametric modelling in FreeCAD.&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 28 - Friday May 31=&lt;br /&gt;
[[Halbach Array Brushless Motor]]&lt;br /&gt;
&lt;br /&gt;
=Monday May 27= &lt;br /&gt;
[https://www.youtube.com/watch?v=uOQk8SJso6Q How to Control an ESC with an Arduino] [https://photos.app.goo.gl/HMvWbigvuw3S26YG8 Test of the OSE Motor].&lt;br /&gt;
&lt;br /&gt;
=Friday May 24 - Sunday May 26= &lt;br /&gt;
Not all that much.&lt;br /&gt;
=Thursday May 23=&lt;br /&gt;
Thank you to Marcin and Catarina for a refreshing, enlightening and enjoyable visit to Factor e Farm and the Seed Ecohome. Returned to London.&lt;br /&gt;
=Wednesday May 22=&lt;br /&gt;
Skype appointment - 12pm Missouri time - friend in Colombia. Uploaded FreeCAD files for D3D v19.04 Power Plug Case to Wiki. [https://en.wikipedia.org/wiki/Buck_converter Buck Converter]&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 21=&lt;br /&gt;
[https://www.powerelectronicsnews.com/problems-solutions/power-supply-design-tutorial Power Supply Design Tutorial] Edited the [https://docs.google.com/document/d/1_3t_97giFOtqJ4ExPZdYeVEilCRhMmu0IWLLpBCrG-0/edit?usp=sharing Video Script] &lt;br /&gt;
Contacted STEM people in Nigeria and Pennsylvania based on the OSE STEAM Camp posted in this [https://www.facebook.com/groups/822455171229260/ Facebook Forum]&lt;br /&gt;
Further communication with friends in Mexico regarding the STEAM camp. Contacted a friend of a friend in Kansas City - Baha&#039;i Community.&lt;br /&gt;
&lt;br /&gt;
=Monday May 20=&lt;br /&gt;
Posted Microfactory STEAM camp on several Facebook STEM/STEAM Education pages. [[The Living Curriculum]] [https://github.com/MarlinFirmware/Marlin/issues/8903 Marlin Bed Temperature Settings] Worked on the Titan-Aero extruder repairs. The two parts of the extruder tube must be fairly tight (but not too tight!) to avoid leakage.&lt;br /&gt;
&lt;br /&gt;
=Sunday May 19=&lt;br /&gt;
Printing ABS using the OSE D3D - Set the bed temperature to 83 and the nozzle temperature to 255.  After 5 minutes of printing, several layers were adhering well. Thermal runaway. Tried 80 and 244; thermal runaway again. Joined several online STEM/Education groups.&lt;br /&gt;
&lt;br /&gt;
=Saturday May 18=&lt;br /&gt;
[[OSE Revenue Generation]] - Grameen Bank / Social Business - [[OSE Curriculum]]&lt;br /&gt;
&lt;br /&gt;
=Friday May 17=&lt;br /&gt;
[[OSE STEM Camp Marketing Strategy]]&lt;br /&gt;
=Friday May 10 - Thursday May 16= &lt;br /&gt;
Preparation for trip to Factor e Farm - gathered supplies - PCB boards, glossy paper, wire, magnets, electronic components, hardware, etc. Arrival at Factor e Farm. Work on D3D v. 19.04: [Photos - OSE D3D v19.04 Build at FeF https://www.facebook.com/photo.php?fbid=10161819908970597&amp;amp;set=pcb.1063740287151880&amp;amp;type=3&amp;amp;theater&amp;amp;ifg=1]&lt;br /&gt;
 &lt;br /&gt;
=Friday April 12 - Thursday May 9=&lt;br /&gt;
[https://drive.google.com/open?id=1-DpgMCARsA5iz4JLZtUeP3SD4a3UrXhj OSE Motor Completed] - ready for testing - Open Source Chinese Prusa i3 Printer Extruder - Configured and began printing with OSE D3D - printing very well at the moment - Booked a flight to Kansas City - heading to Factor e Farm soon!&lt;br /&gt;
&lt;br /&gt;
=Monday March 4 - Thursday April 11=&lt;br /&gt;
FRC Robotics - Ryerson University, Western University. OSE Motor - students have made some progress: [https://drive.google.com/open?id=1n99XWM8KMwvnV-tCmcWjImsBG27ReRSc OSE Brushless Motor] Additional work on the [[Simple 3D Printer Extruder]]&lt;br /&gt;
&lt;br /&gt;
=Sunday March 3=&lt;br /&gt;
Completed the first model of the most difficult part to CAD in the extruder - the X-Axis bracket.  Will now print CAD files and measure their accuracy before making changes to the CAD parameters.  Hopefully this process will result in more accurate parts.&lt;br /&gt;
&lt;br /&gt;
=Friday March 1 - Saturday March 2 =&lt;br /&gt;
Further work on open sourcing Chinese Prusa i3 3D printer extruder.&lt;br /&gt;
&lt;br /&gt;
=Monday February 18 - Thursday February 28=&lt;br /&gt;
Began the process of open-sourcing our 3D printer extruder: [[Simple 3D Printer Extruder]] (see photos and CAD files in the 3D Printer Folder) &lt;br /&gt;
Started a new unit in Computer Engineering Technology class.  Two groups of students are working on OSE materials:  &lt;br /&gt;
#The OSE Collaborative Contest&lt;br /&gt;
#The OSE Filament Extruder&lt;br /&gt;
&lt;br /&gt;
=Saturday February 9-Sunday February 17=&lt;br /&gt;
Hosted a group of six STEM students from School of the Nations in Georgetown, Guyana. STEM Camp at London International Academy.  Introduced the concept of the OSE collaborative contest. Introductory FreeCAD activities. Introduced Python computer programming.  Printed out various parts for an open source brushless motor.  [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX Link to CAD Files] (see School of the Nations sub-folder)[[file:Rotor.jpg|200px]] [http://guyanachronicle.com/2019/02/17/nations-benefits-from-robotics-training-in-canada Article in Guyana Chronicle]&lt;br /&gt;
&lt;br /&gt;
=Wednesday February 6= &lt;br /&gt;
[[OSE Coopetition]].  Discussed wiki + part library + documentation of OSE Coopetition.&lt;br /&gt;
&lt;br /&gt;
=Monday February 4=&lt;br /&gt;
Uploaded version 0.1 of the OSE Collaborative Contest Rules to [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest]&lt;br /&gt;
=Wednesday January 30 - Sunday February 3=&lt;br /&gt;
FRC Build season.  [https://drive.google.com/drive/folders/1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH?usp=sharing Team 6162 Cap Alpaca FreeCAD files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday January 29=&lt;br /&gt;
Collected FreeCAD files in a Google drive folder: [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest] &lt;br /&gt;
Summary of Nanjing group&#039;s schedule: [https://docs.google.com/document/d/1R-Dtu3kdZ0u8Qo5w3_vDuNEg5myr8mUmLjSpPOf-HoI/edit?usp=sharing | 2019 Winter Camp]&lt;br /&gt;
Here is some sample work from the FreeCAD workshop:&lt;br /&gt;
*[[File:ReyJessica.png|200px]]&lt;br /&gt;
*[[File:ZJHLSR.png|200px]]&lt;br /&gt;
&lt;br /&gt;
=Sunday January 27 - Monday January 28=&lt;br /&gt;
Discussed record keeping, file sharing and other skills for collaborative literacy. Created a sample page stub: [[Brushless Motor Design]].  Asked students to reflect on sessions learning FreeCAD.  Found that it is not necessary to learn a whole lot about FreeCAD in order to get students learning it.  Demonstrated two sample FreeCAD 0.17 design processes:&lt;br /&gt;
#Design a part like a motor adapter: body - sketch a circle - pad - sketch on a surface - pocket&lt;br /&gt;
#Design a sketch with constraints - some straight lines and some arcs closed in a loop with particular dimensions and angles.&lt;br /&gt;
After that, students were directed to Youtube videos that covered specific additional skills: &lt;br /&gt;
*Threading - inner and outer&lt;br /&gt;
*Polar patterns&lt;br /&gt;
Through this process, I learned how to do these skills from some students and was able to show other students the same, especially with polar patterns.&lt;br /&gt;
&lt;br /&gt;
=Sunday January, 20 - Saturday January 26, 2019=&lt;br /&gt;
Prepared for and welcomed 19 students from Jinling High School in China. Introduced the concept of the OSE Collaborative Contest.  Marcin spoke with the group over Jitsi on Thursday and on Saturday and proposed that the students participate in the OSE Collaborative Contest. It was well received despite the students&#039; fatigue from travel and skiing. Introduced FreeCAD and had students download and install it. Some computers do not immediately work with FreeCAD; hope that the problem may be solved. We plan to further discuss the students&#039; participation in the contest tomorrow and 3D print some of their early FreeCAD work on Monday. Created a link to LIA students&#039; FreeCAD work.  Currently the folder is being used for FRC preparation.  After the FRC robot is built, we are planning to transition to OSE-related work in this folder: [https://drive.google.com/open?id=1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH LIA OSE Club CAD Files]&lt;br /&gt;
&lt;br /&gt;
=Thursday January 10 - Saturday Jan 19, 2019=&lt;br /&gt;
Heaviest schedule of the year - January and February; progress slower during this time. Working on STEM Curriculum for FeF STEM Camps - [[Summer School 2019]].&lt;br /&gt;
&lt;br /&gt;
=Wed Jan 9, 2019=&lt;br /&gt;
*Use a presentation - template - make a copy - pass this to Heydar - document the simple 3D printing extruder for a low cost 3d printer - [https://docs.google.com/presentation/d/1_kUzO4eRCqrHVpqxSSTs17oLhtikTTyYe_1NxrTKlTI/edit#slide=id.g45ed589c64_0_0]&lt;br /&gt;
*Homework: Complete STEM Curriculum&lt;br /&gt;
&lt;br /&gt;
=January 2, 2019=&lt;br /&gt;
Ordered parts for a brushless motor to be constructed as part of the contest and part of the Computer Engineering Technology class at London International Academy.&lt;br /&gt;
In order to make the collaborative contest work, we will need to create a kit of parts to be easily shipped to participating schools.&lt;br /&gt;
&lt;br /&gt;
=December 24 2018-January 1, 2019=&lt;br /&gt;
Took a break. Reflected on plans for OSE London / OSE Club at London International Academy / OSE Collaborative Contest&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=December 23, 2018=&lt;br /&gt;
Defined particulars of [[OSE STEM Camps]].&lt;br /&gt;
&lt;br /&gt;
=December 22,2018=&lt;br /&gt;
[[William Conversation | Conversation with Marcin]]. Research on OSE Club Activities. Planning for winter semester courses&#039; links to OSE - Computer Engineering Technology and Computer Science. Plans to do the following in Computer Engineering Technology: build a brushless motor and ESC from scratch. Computer Science: Programming projects related to OSE - simulation program? Western University Introduction to STEM Class - offer the OSE Competition as a choice for a final project - help administer / judge / communicate / etc.&lt;br /&gt;
&lt;br /&gt;
=December 12-21, 2018=&lt;br /&gt;
Exams and marking - excellent ways to hinder educational progress. Discussed Canadian bill of materials with Russ Purvis. Discussed the upcoming OSE workshop in Prince George, BC currently in the planning phase. Several phone conversations with Charlie. Worked on some particulars for the upcoming OSE competition in January. Contacted a teacher in Iran to invite her to join the competition with her students. Sent a letter of reference to Russ with respect to hosting an OSE workshop.&lt;br /&gt;
&lt;br /&gt;
=December 8-11, 2018=&lt;br /&gt;
Spoke with Charlie about development of OSE workshops.  Spoke with Marcin and Catarina about the same. Updated Marcin about development of OSE club at London International Academy.  We now have plans to include at least four schools in our first design challenge - School of the Nations in Guyana, Fujing Foreign Language School in Shenzhen and Jinling School in Nanjing. Was approached by a friend to contact Makerspace managers in St. Thomas and Toronto. Arranged a meeting with the makerspace managers at Western University. OSE Marlin v18.10 works for printing with new printer. Successfully printed base layer of a file.  It seems that the extruder may have jammed.  Will check again as soon as possible. LIA students continue to develop their FreeCAD skills and are able to design parts in parallel according to a spacial plan and assemble them into a larger model. Installed OSE Linux on laptop now with a new old-school 1TcB hard drive. OSE Linux did not recognise the card reader; everything else seems to work very well. &amp;lt;strong&amp;gt;Note: Stepper motors on y axis of D3D became alarmingly hot after about 15 minutes of printing.&amp;lt;/strong&amp;gt; Perhaps this is a configuration issue; may need to resolve this before allowing the printer to do a full print.&lt;br /&gt;
&lt;br /&gt;
=December 7, 2018= &lt;br /&gt;
Using OSE Ubuntu on laptop with fried SSD. Internet has connection through ping but does not display pages in Chromium. D3D Marlin recent version from OSE website installed in printer. Autohome produces a collision of the z axis with the extruder as by default the z probe is off the plate.  Tried to move the y axis using various commands such as G0 Y40 and G1 Y40 all of which cause the Y axis to move until it hits the maximum physically possible position. Spoke with Johann Wong about the possibility of combining an OSE Makerspace skills (Arduino, CAD, etc.) + 3D printer workshop with Human Innovation PIE&#039;s soft skills innovation workshop through the London International Academy Foundation. Was using wrong Marlin file for D3D printer - will try correct one asap. Suggestions for D3D: use zip ties and clothespin springs for tensioning belts.  This has worked exceptionally well and reliably for our Chinese Prusa derivative; the belts have needed nearly no attention in three years.&lt;br /&gt;
&lt;br /&gt;
=December 6, 2018=&lt;br /&gt;
Was about to test print on OSE D3D when SSD crashed.  Did Ubuntu fry it?  Researching this.&lt;br /&gt;
&lt;br /&gt;
=December 5, 2018=&lt;br /&gt;
Introduced the OSE design challenge to OSE Club students at London International Academy.&lt;br /&gt;
&lt;br /&gt;
=December 4, 2018= &lt;br /&gt;
Held an informal Introduction to Arduino Workshop at London International Academy to help two grade 11 students with a project.  Spoke with Marcin about plans for the OSE design challenge, OSE club and possibility of a summer camp at FeF in May or June of 2019.&lt;br /&gt;
&lt;br /&gt;
=December 2, 2018=&lt;br /&gt;
 Created a document outlining a framework for OSL - Open Source London and shared it on Google Docs; visited Charlie to discuss the document.&lt;br /&gt;
&lt;br /&gt;
=November 29, 2018=&lt;br /&gt;
 Introduced OSE 3D Printer and Prusa i3 3D printer to parents and students at a local French Immersion school - PAFI.  Designed and printed various models using Blender and Repetier.&lt;br /&gt;
&lt;br /&gt;
=November 28, 2018=&lt;br /&gt;
*Updated OSECartCoin with letters. &lt;br /&gt;
**[[File:PAFI.stl]]&lt;br /&gt;
**[[File:PAFI.fcstd]]&lt;br /&gt;
*Call with Marcin regarding &#039;&#039;&#039;[[LIA OSE Club]]&#039;&#039;&#039;&lt;br /&gt;
*Build from last week - [https://www.facebook.com/groups/398759490316633/permalink/963594880499755/]&lt;br /&gt;
&lt;br /&gt;
=November 27, 2018=&lt;br /&gt;
Wrote the suggested intro to Marcin&#039;s next TED talk: [[Marcin&#039;s Next TED Talk]]&lt;br /&gt;
=November 26, 2018=&lt;br /&gt;
Uploaded FeF Brick Press Fabrication video from July 29, 2011 - [https://youtu.be/LwW8sOUO00s]&lt;br /&gt;
&amp;lt;p&amp;gt;Uploaded video of the &amp;quot;Cluckaphone&amp;quot; - July 29, 2011 - [https://www.youtube.com/watch?v=PNOhZX7ftLk&amp;amp;feature=youtu.be]&lt;br /&gt;
Call with Marcin, Catarina and Charlie - OSE Planning&lt;br /&gt;
&lt;br /&gt;
=November 25, 2018=&lt;br /&gt;
Consultation about the establishment of an OSE Club at London International Academy and future directions for the development of OSE Clubs and Makerspaces.&lt;br /&gt;
&lt;br /&gt;
=November 24, 2018=&lt;br /&gt;
We made an OSE Cart Coin with FreeCAD &lt;br /&gt;
Here are the files for OSE Cart Coin v0.1:&lt;br /&gt;
[[File:OSECartCoin.fcstd]]&lt;br /&gt;
[[File:OSECartCoin.stl]]&lt;br /&gt;
Attended Marcin&#039;s presentation entitled &amp;quot;Education for the Open Source Economy&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=November 23, 2018=&lt;br /&gt;
Built a an OSE 3D printer at London International Academy&lt;br /&gt;
&lt;br /&gt;
=November 23-25=&lt;br /&gt;
Attended first OSE Professional Development workshop at London International Academy with Charles Freer, Pascal Gingras, Marcin and Catarina.&lt;br /&gt;
&lt;br /&gt;
=November 18-22= &lt;br /&gt;
Prepared for the visit of Marcin and Catarina to London.&lt;br /&gt;
&lt;br /&gt;
=November 17, 2018=&lt;br /&gt;
Conversation about OSE development with Charlie.  In particular, discussion about education and its relationship to developing the capacity to lead a meaningful and productive life. Reference to overlap of Baha&#039;i means and principles with those of the OSE - elimination of the extremes of wealth and poverty, building capabilities in a population, individual agency and initiative within a systematically evolving framework, etc.&lt;br /&gt;
&lt;br /&gt;
=November 16, 2018=&lt;br /&gt;
*Received US $5000 Shuttleworth Foundation Flash Grant&lt;br /&gt;
*Conference call with Marcin and Charles Freer regarding Marcin and Catarina&#039;s upcoming visit to London, Ontario&lt;br /&gt;
&lt;br /&gt;
=November 15, 2018=&lt;br /&gt;
Engineering Club students designed and printed a part to add to the Lyman Filament Extruder repository - a bracket for a rocker switch&lt;br /&gt;
&lt;br /&gt;
[[File:SwitchBracket2.png]]&lt;br /&gt;
[[File:Switchbase2.stl]]&lt;br /&gt;
[[File:SwitchBracket.FCStd]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=May, 2012=&lt;br /&gt;
Started project to build metric version of OSE CEB Press in Nanjing, China&lt;br /&gt;
&lt;br /&gt;
=April, 2012=&lt;br /&gt;
Began 3D Printing project in physics class at London International Academy&lt;br /&gt;
&lt;br /&gt;
=July, 2011-October, 2018=&lt;br /&gt;
Many things happened including severe neglect of the OSE wiki&lt;br /&gt;
Some highlights:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Regular incorporation of OSE concepts into classes and presentations 2011-present&lt;br /&gt;
*May, 2013 - started collaboration with Human InnovationPIE, a London non-profit organization focused on providing soft skills education for innovation.&lt;br /&gt;
*April, 2014 - Recognized in local paper for 3D Printer build with students&lt;br /&gt;
*July, 2015 - Asked to start STEM program at London International Academy further to success and popularity of 3D printer project&lt;br /&gt;
*September, 2015 - Began building Farmbot with students&lt;br /&gt;
*January, 2017 - Began teaching an Introduction to STEM course at Western University with significant OSE-based content.&lt;br /&gt;
&lt;br /&gt;
=July 16, 2011=&lt;br /&gt;
Arrived at Factor e Farm with Haydar Neal&lt;br /&gt;
&lt;br /&gt;
=March,  2011=&lt;br /&gt;
Saw TED Talk and wrote away to Marcin immediately&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=204371</id>
		<title>William Neal Log</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=204371"/>
		<updated>2019-11-28T22:13:36Z</updated>

		<summary type="html">&lt;p&gt;Wneal: /* Saturday November 23 - Thursday November 28 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{RightTOC}}&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;600&amp;quot; height=&amp;quot;600&amp;quot; src=&amp;quot;https://osedev.org/wiki/William?start=2/1/2017&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
=Saturday November 23  Wednesday November 27=&lt;br /&gt;
Workshop in Guyana with the Guyana Prison Service: The CSSP Project.  This project aims to replace the current model of prison management with an approach based on human nobility, education and rehabilitation.&lt;br /&gt;
=Thursday November 28=&lt;br /&gt;
[[OSE Linux]] - we got six old computers working on Ubuntu using flash drives.  Tomorrow will have an Open Source software workshop using OSE Linux on USB drives. We will use Python, FreeCAD, LibreOffice, etc.&lt;br /&gt;
&lt;br /&gt;
=Saturday November 2 - Friday November 22=&lt;br /&gt;
Worked on the [[OSE Prusa]] in order to support the establishment of a STEM centre in Trinidad and Tobago and to prepare for a workshop with the Government of Guyana.&lt;br /&gt;
#Items in a numbered list&lt;br /&gt;
#More Items&lt;br /&gt;
##Yet More&lt;br /&gt;
*Items in a bullet list&lt;br /&gt;
*More Items&lt;br /&gt;
**Yet More&lt;br /&gt;
&lt;br /&gt;
=Thursday October 24 - Friday November 1=&lt;br /&gt;
*Tested printing on the London replication of the D3D printer for the first time.&lt;br /&gt;
*Team of 9 students from Western university preparing a project around OSE - D3D replication + filament extruder replication + Chinese Reprap Prusa i3 reverse engineering.&lt;br /&gt;
=Sunday October 12 - Wednesday October 23=&lt;br /&gt;
*Updated some files used in the simple extruder build [https://wiki.opensourceecology.org/wiki/Simple_3D_Printer_Extruder#CAD here.]&lt;br /&gt;
&lt;br /&gt;
=Friday October 4 - Saturday October 11=&lt;br /&gt;
*Successfully tested D3D simple extruder based on Chinese Prusa i3.&lt;br /&gt;
*D3D challenge - Y axis end stop stopped working...&lt;br /&gt;
*Almost finished replicating first of two D3D printers in London Ontario.&lt;br /&gt;
*Preparing a D3D / Brushless motor workshop for the Guyana Prison Service. &lt;br /&gt;
*FreeCAD activity completed at Western University - varied response of individuals in the groups - the allocated time was too short. &lt;br /&gt;
=Friday September 27 - Thursday October 3=&lt;br /&gt;
*Continued work on D3D build.&lt;br /&gt;
*Experimenting with highly differentiated instruction unconstrained by government curricular concerns - our STEM club&#039;s three sections - Robotics / Computers and CAD / STEM projects have each gradually evolved over the last several weeks such that small groups of 1-4 students specialize on special tasks.&lt;br /&gt;
*Introduced FreeCAD to a group of junior youth from a local neighborhood. After about 40 minutes each group of two participants completed a motor rotor design.&lt;br /&gt;
*Second FreeCAD session with a group of 40 teacher candidate students at Western University&#039;s Althouse. Also used highly differentiated / interdisciplinary instruction with this group. After one hour and a half, most groups were able to generate several parts of a brushless motor and begin the process of parameterizing with a spreadsheet and creating an assembly.  Some trained engineers in the crowd generated excellent &amp;quot;propellers&amp;quot; for the motor using advanced features.&lt;br /&gt;
&lt;br /&gt;
=Tuesday, September 1 - Thursday, September 26=&lt;br /&gt;
*New School Year - over 40 students participating in our special STEM/Business/Arts program.&lt;br /&gt;
*Two sections of our program, STEM Projects and Computer Programming/CAD,  include OSE-related topics:&lt;br /&gt;
**Building 3D printers&lt;br /&gt;
**3D-printing&lt;br /&gt;
**OSE Motor design and fabrication&lt;br /&gt;
**Filament extruder&lt;br /&gt;
**CAD&lt;br /&gt;
*Building a 3D printer in collaboration with Bill Phelan, Vice President of Die-X Ltd.&lt;br /&gt;
*Remote collaboration with Branko Misovic in Holland.&lt;br /&gt;
*Preparing for a two-week 3D-printer build / open source hardware workshop in Guyana in November.&lt;br /&gt;
*Working on simple extruder for the D3D printer.&lt;br /&gt;
*Some 3D-printed parts for the D3D printer are not precise enough as they were printed with 1.0mm and 0.8mm nozzles.  We are switching to a 0.4mm nozzle and re-printing.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 27 - Monday September 1=&lt;br /&gt;
*Preparation for STEM camps in China. &lt;br /&gt;
*Travel to China.  Caught behind firewall - Internet was actually a large Intranet - difficult to post, communicate or access any useful sites. &lt;br /&gt;
*STEM Camp at Fujing Foreign language school - 10 days - 60 students, 1.5 hours daily - worked on FreeCAD and the OSE motor. &lt;br /&gt;
*Built OSE D3D printer with eight 9-11 year-old students (10 days, 3 hours daily) at EIC Education in Shenzhen.  The students assembled the axes and helped design some custom 3D-printed brackets for the frame which had to be made out of linear rail. The students learned FreeCAD and were able to design useful parts. Ganesh Ramsahai provided support in completing the build and configuration process. Presented the OSE D3D Shenzhen to the EIC Education Group with a half-hour overview and offer to provide remote support.&lt;br /&gt;
*STEM Camp at Zhangjiagang Foreign Language School in Jiangsu province. 30 students, 3 days, 6 hours per day.  Introduced FreeCAD and had the students design rotors and stators for the OSE brushless motor.&lt;br /&gt;
*Showed the TED talk to four different groups.&lt;br /&gt;
*Uploaded raw FreeCAD and stl files from the camps at Fujing Foreign Language School and Zhangjiagang Foreign Language School to [https://drive.google.com/open?id=1K7U8lEGqRgxwQf-WNX1Llbf-WE7LJCqL Google Drive]&lt;br /&gt;
*Uploaded [https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH custom files] generated during the build of the D3D 19.08 Shenzhen.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 20 - Friday July 26=&lt;br /&gt;
LIA summer STEM camp continued with 38 different students from Shenzhen, China.  The students discussed, in the context of Marcin&#039;s TED Talk, the concept that the human mind, focused and in collaboration with others, has the power to make positive changes in society.  Design of covers and caps for the OSE radial motor. Photos from the STEM Camp activities are [https://photos.app.goo.gl/zcpKk8jaFcDon31K7 here].  Trying to find the USB where we collected all the FreeCAD files.  These will be posted ASAP.&lt;br /&gt;
&lt;br /&gt;
=Monday July 15 - Friday July 19=&lt;br /&gt;
LIA summer STEM camp with 23 students from Vietnam and China. OSE Motor project part II - designing, printing and testing a radial motor. The motor concept was based on the following video: [https://www.youtube.com/watch?v=JkwLpAAfBVI 3D-Printed Axial Brushless Motor for Drones] Students were presented with the concept and asked to design such a motor from scratch using two rotors with eight disc magnets each and two sets of six wire loops.&lt;br /&gt;
&lt;br /&gt;
=Wednesday July 10 - Sunday July 14=&lt;br /&gt;
Preparation for summer STEM Camps at LIA.  Prepared 3D printers.  Began replication of two D3D v19.06 units.&lt;br /&gt;
=Friday June 28 - Tuesday July 9= &lt;br /&gt;
Open Source Ecology Microfactory STEAM Camp&lt;br /&gt;
=Thursday June 27=&lt;br /&gt;
Titan Aero finally working better with 1.5 full turns + a little bit more for good measure - has not jammed all afternoon now - three parts printed.  Logistics for Microfatory STEAM Camp - rented a vehicle and contacted a few participants. A prototype of the OSE extruder has been nearly completed. The extruder gear is scheduled to arrive at Factor e Farm by tomorrow. Then it will be ready for testing.  [https://photos.app.goo.gl/fWUX8ynAdqcn6Fvs6 OSE D3D Extruder - Photo Album][https://drive.google.com/open?id=17BLyvyk1EbrMOhkCfeSwByAq86SemSLX Files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 25 - Wednesday June 26=&lt;br /&gt;
OSE D3D Extruder.  Worked on attaching extruder to X-axis. Ordered extruder motor gears to arrive at FeF on Friday. Printed out bracket 1 successfully. Working on large aluminium block and designing x-axis adapter.&lt;br /&gt;
=Monday June 24=&lt;br /&gt;
Discussion about design of OSE Power Electronics. Problem - transformers are expensive and inflexible. Solution - research the feasibility of creating a 120V buck converter.  Would it be sufficiently efficient and would it be feasible to build?  Here are some potential parts to use: [https://www.digikey.ca/product-detail/en/comchip-technology/GBPC5010W-G/641-1389-ND/2074854 1kV Recifier] [https://www.digikey.ca/product-detail/en/ixys/IXFX120N65X2/IXFX120N65X2-ND/5629498?utm_adgroup=&amp;amp;mkwid=sFMkJ49os&amp;amp;pcrid=311971049444&amp;amp;pkw=&amp;amp;pmt=&amp;amp;pdv=c&amp;amp;productid=5629498&amp;amp;slid=&amp;amp;gclid=EAIaIQobChMIgbDd1fSC4wIVwkOGCh1f8gijEAQYAyABEgJGffD_BwE 650V MOSFET].  One problem seems to be that there may be a high level of energy loss in the circuit....[https://www.digikey.com/product-detail/en/everlight-electronics-co-ltd/H11L1S-TA/1080-1201-1-ND/2675935 Optocoupler] (to isolate the Arduino)[http://fpec.ucf.edu/teaching/EEL%205245%20Lectures/Lecture13%20Chapter4_BoostandBuckBoost_CCM_Analysis.pdf Some background theory]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 19 - Sunday June 23=&lt;br /&gt;
DIY Buck Converter based on the following video (and others): https://www.youtube.com/watch?v=L5oeY53pE0E&amp;amp;t=162s. [https://photos.app.goo.gl/kkHUwBQtD7h48mhB6 Photos.] All four 3D printers are down.  A crucial piece of the extruder of the most reliable printer finally broke. CAD already done for the replacement part. Got the OSE D3D working again on Friday.  Ready for printing on Monday - will print replacement part for other printer.  Other 2 printers almost working...&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 18=&lt;br /&gt;
[https://www.pythonpowerelectronics.com/ Python Power Electronics]&lt;br /&gt;
=Thursday June 13 - Monday June 17=&lt;br /&gt;
Buck Converters. OSE [[Power Electronics]] research. Arduino as controller of Power electronics - frequency issues / limitations. Scalability of Power electronics - can we add modular components to increase voltage, current, etc.?  &lt;br /&gt;
=Tuesday June 11 - Wednesday June 12=&lt;br /&gt;
Completed and sent CAD Drawings for OSE 3D Printer. Spent most of Wednesday working through a jam on the Titan Aero - it has jammed more in a few days than our other extruder has jammed in over three years.&lt;br /&gt;
=Monday June 10=&lt;br /&gt;
[https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH FreeCAD Drawings] for OSE 3D Printer. Note the use of parametric design in the CAD files - Spreadsheet values become variables used in constraint dimensions.&lt;br /&gt;
The following is my most recent FreeCAD Parametric Part Design and Drawing Workflow:[[FreeCAD Workflow]]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 5 - Sunday June 9=&lt;br /&gt;
[https://www.youtube.com/watch?v=CEhBN5_fO5o|DC-DC Buck Converters]&lt;br /&gt;
Power Supply: Transformer + Buck Converter + Ripple Smoothing Circuitry&lt;br /&gt;
=Tuesday June 4=&lt;br /&gt;
*[[Arduino Controlled Power Supply]] - ordered many components.&lt;br /&gt;
*Many electronic components specified in DIY articles and videos are now listed as obsolete.  Finding replacement parts is not easy. Case in point: LM338K Linear Voltage Regulators - Listed as obsolete on the Mouser website and selling for $91 or more on the Digi-key website.&lt;br /&gt;
*[https://www.eetimes.com/document.asp?doc_id=1333695# Article about obsolescence and demand and supply issues in the electronics industry]&lt;br /&gt;
&lt;br /&gt;
=Saturday June 1 - Monday June 3=&lt;br /&gt;
Reviewed [[OSE Design Guides]] Reviewed [[DIY Semiconductors]] Microfactory STEAM Camp Critical Path [[Arduino Controlled Power Supply]] Fabrication of aluminium blocks for hot end for OSE 3D printer extruder. Parametric modelling in FreeCAD.&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 28 - Friday May 31=&lt;br /&gt;
[[Halbach Array Brushless Motor]]&lt;br /&gt;
&lt;br /&gt;
=Monday May 27= &lt;br /&gt;
[https://www.youtube.com/watch?v=uOQk8SJso6Q How to Control an ESC with an Arduino] [https://photos.app.goo.gl/HMvWbigvuw3S26YG8 Test of the OSE Motor].&lt;br /&gt;
&lt;br /&gt;
=Friday May 24 - Sunday May 26= &lt;br /&gt;
Not all that much.&lt;br /&gt;
=Thursday May 23=&lt;br /&gt;
Thank you to Marcin and Catarina for a refreshing, enlightening and enjoyable visit to Factor e Farm and the Seed Ecohome. Returned to London.&lt;br /&gt;
=Wednesday May 22=&lt;br /&gt;
Skype appointment - 12pm Missouri time - friend in Colombia. Uploaded FreeCAD files for D3D v19.04 Power Plug Case to Wiki. [https://en.wikipedia.org/wiki/Buck_converter Buck Converter]&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 21=&lt;br /&gt;
[https://www.powerelectronicsnews.com/problems-solutions/power-supply-design-tutorial Power Supply Design Tutorial] Edited the [https://docs.google.com/document/d/1_3t_97giFOtqJ4ExPZdYeVEilCRhMmu0IWLLpBCrG-0/edit?usp=sharing Video Script] &lt;br /&gt;
Contacted STEM people in Nigeria and Pennsylvania based on the OSE STEAM Camp posted in this [https://www.facebook.com/groups/822455171229260/ Facebook Forum]&lt;br /&gt;
Further communication with friends in Mexico regarding the STEAM camp. Contacted a friend of a friend in Kansas City - Baha&#039;i Community.&lt;br /&gt;
&lt;br /&gt;
=Monday May 20=&lt;br /&gt;
Posted Microfactory STEAM camp on several Facebook STEM/STEAM Education pages. [[The Living Curriculum]] [https://github.com/MarlinFirmware/Marlin/issues/8903 Marlin Bed Temperature Settings] Worked on the Titan-Aero extruder repairs. The two parts of the extruder tube must be fairly tight (but not too tight!) to avoid leakage.&lt;br /&gt;
&lt;br /&gt;
=Sunday May 19=&lt;br /&gt;
Printing ABS using the OSE D3D - Set the bed temperature to 83 and the nozzle temperature to 255.  After 5 minutes of printing, several layers were adhering well. Thermal runaway. Tried 80 and 244; thermal runaway again. Joined several online STEM/Education groups.&lt;br /&gt;
&lt;br /&gt;
=Saturday May 18=&lt;br /&gt;
[[OSE Revenue Generation]] - Grameen Bank / Social Business - [[OSE Curriculum]]&lt;br /&gt;
&lt;br /&gt;
=Friday May 17=&lt;br /&gt;
[[OSE STEM Camp Marketing Strategy]]&lt;br /&gt;
=Friday May 10 - Thursday May 16= &lt;br /&gt;
Preparation for trip to Factor e Farm - gathered supplies - PCB boards, glossy paper, wire, magnets, electronic components, hardware, etc. Arrival at Factor e Farm. Work on D3D v. 19.04: [Photos - OSE D3D v19.04 Build at FeF https://www.facebook.com/photo.php?fbid=10161819908970597&amp;amp;set=pcb.1063740287151880&amp;amp;type=3&amp;amp;theater&amp;amp;ifg=1]&lt;br /&gt;
 &lt;br /&gt;
=Friday April 12 - Thursday May 9=&lt;br /&gt;
[https://drive.google.com/open?id=1-DpgMCARsA5iz4JLZtUeP3SD4a3UrXhj OSE Motor Completed] - ready for testing - Open Source Chinese Prusa i3 Printer Extruder - Configured and began printing with OSE D3D - printing very well at the moment - Booked a flight to Kansas City - heading to Factor e Farm soon!&lt;br /&gt;
&lt;br /&gt;
=Monday March 4 - Thursday April 11=&lt;br /&gt;
FRC Robotics - Ryerson University, Western University. OSE Motor - students have made some progress: [https://drive.google.com/open?id=1n99XWM8KMwvnV-tCmcWjImsBG27ReRSc OSE Brushless Motor] Additional work on the [[Simple 3D Printer Extruder]]&lt;br /&gt;
&lt;br /&gt;
=Sunday March 3=&lt;br /&gt;
Completed the first model of the most difficult part to CAD in the extruder - the X-Axis bracket.  Will now print CAD files and measure their accuracy before making changes to the CAD parameters.  Hopefully this process will result in more accurate parts.&lt;br /&gt;
&lt;br /&gt;
=Friday March 1 - Saturday March 2 =&lt;br /&gt;
Further work on open sourcing Chinese Prusa i3 3D printer extruder.&lt;br /&gt;
&lt;br /&gt;
=Monday February 18 - Thursday February 28=&lt;br /&gt;
Began the process of open-sourcing our 3D printer extruder: [[Simple 3D Printer Extruder]] (see photos and CAD files in the 3D Printer Folder) &lt;br /&gt;
Started a new unit in Computer Engineering Technology class.  Two groups of students are working on OSE materials:  &lt;br /&gt;
#The OSE Collaborative Contest&lt;br /&gt;
#The OSE Filament Extruder&lt;br /&gt;
&lt;br /&gt;
=Saturday February 9-Sunday February 17=&lt;br /&gt;
Hosted a group of six STEM students from School of the Nations in Georgetown, Guyana. STEM Camp at London International Academy.  Introduced the concept of the OSE collaborative contest. Introductory FreeCAD activities. Introduced Python computer programming.  Printed out various parts for an open source brushless motor.  [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX Link to CAD Files] (see School of the Nations sub-folder)[[file:Rotor.jpg|200px]] [http://guyanachronicle.com/2019/02/17/nations-benefits-from-robotics-training-in-canada Article in Guyana Chronicle]&lt;br /&gt;
&lt;br /&gt;
=Wednesday February 6= &lt;br /&gt;
[[OSE Coopetition]].  Discussed wiki + part library + documentation of OSE Coopetition.&lt;br /&gt;
&lt;br /&gt;
=Monday February 4=&lt;br /&gt;
Uploaded version 0.1 of the OSE Collaborative Contest Rules to [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest]&lt;br /&gt;
=Wednesday January 30 - Sunday February 3=&lt;br /&gt;
FRC Build season.  [https://drive.google.com/drive/folders/1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH?usp=sharing Team 6162 Cap Alpaca FreeCAD files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday January 29=&lt;br /&gt;
Collected FreeCAD files in a Google drive folder: [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest] &lt;br /&gt;
Summary of Nanjing group&#039;s schedule: [https://docs.google.com/document/d/1R-Dtu3kdZ0u8Qo5w3_vDuNEg5myr8mUmLjSpPOf-HoI/edit?usp=sharing | 2019 Winter Camp]&lt;br /&gt;
Here is some sample work from the FreeCAD workshop:&lt;br /&gt;
*[[File:ReyJessica.png|200px]]&lt;br /&gt;
*[[File:ZJHLSR.png|200px]]&lt;br /&gt;
&lt;br /&gt;
=Sunday January 27 - Monday January 28=&lt;br /&gt;
Discussed record keeping, file sharing and other skills for collaborative literacy. Created a sample page stub: [[Brushless Motor Design]].  Asked students to reflect on sessions learning FreeCAD.  Found that it is not necessary to learn a whole lot about FreeCAD in order to get students learning it.  Demonstrated two sample FreeCAD 0.17 design processes:&lt;br /&gt;
#Design a part like a motor adapter: body - sketch a circle - pad - sketch on a surface - pocket&lt;br /&gt;
#Design a sketch with constraints - some straight lines and some arcs closed in a loop with particular dimensions and angles.&lt;br /&gt;
After that, students were directed to Youtube videos that covered specific additional skills: &lt;br /&gt;
*Threading - inner and outer&lt;br /&gt;
*Polar patterns&lt;br /&gt;
Through this process, I learned how to do these skills from some students and was able to show other students the same, especially with polar patterns.&lt;br /&gt;
&lt;br /&gt;
=Sunday January, 20 - Saturday January 26, 2019=&lt;br /&gt;
Prepared for and welcomed 19 students from Jinling High School in China. Introduced the concept of the OSE Collaborative Contest.  Marcin spoke with the group over Jitsi on Thursday and on Saturday and proposed that the students participate in the OSE Collaborative Contest. It was well received despite the students&#039; fatigue from travel and skiing. Introduced FreeCAD and had students download and install it. Some computers do not immediately work with FreeCAD; hope that the problem may be solved. We plan to further discuss the students&#039; participation in the contest tomorrow and 3D print some of their early FreeCAD work on Monday. Created a link to LIA students&#039; FreeCAD work.  Currently the folder is being used for FRC preparation.  After the FRC robot is built, we are planning to transition to OSE-related work in this folder: [https://drive.google.com/open?id=1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH LIA OSE Club CAD Files]&lt;br /&gt;
&lt;br /&gt;
=Thursday January 10 - Saturday Jan 19, 2019=&lt;br /&gt;
Heaviest schedule of the year - January and February; progress slower during this time. Working on STEM Curriculum for FeF STEM Camps - [[Summer School 2019]].&lt;br /&gt;
&lt;br /&gt;
=Wed Jan 9, 2019=&lt;br /&gt;
*Use a presentation - template - make a copy - pass this to Heydar - document the simple 3D printing extruder for a low cost 3d printer - [https://docs.google.com/presentation/d/1_kUzO4eRCqrHVpqxSSTs17oLhtikTTyYe_1NxrTKlTI/edit#slide=id.g45ed589c64_0_0]&lt;br /&gt;
*Homework: Complete STEM Curriculum&lt;br /&gt;
&lt;br /&gt;
=January 2, 2019=&lt;br /&gt;
Ordered parts for a brushless motor to be constructed as part of the contest and part of the Computer Engineering Technology class at London International Academy.&lt;br /&gt;
In order to make the collaborative contest work, we will need to create a kit of parts to be easily shipped to participating schools.&lt;br /&gt;
&lt;br /&gt;
=December 24 2018-January 1, 2019=&lt;br /&gt;
Took a break. Reflected on plans for OSE London / OSE Club at London International Academy / OSE Collaborative Contest&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=December 23, 2018=&lt;br /&gt;
Defined particulars of [[OSE STEM Camps]].&lt;br /&gt;
&lt;br /&gt;
=December 22,2018=&lt;br /&gt;
[[William Conversation | Conversation with Marcin]]. Research on OSE Club Activities. Planning for winter semester courses&#039; links to OSE - Computer Engineering Technology and Computer Science. Plans to do the following in Computer Engineering Technology: build a brushless motor and ESC from scratch. Computer Science: Programming projects related to OSE - simulation program? Western University Introduction to STEM Class - offer the OSE Competition as a choice for a final project - help administer / judge / communicate / etc.&lt;br /&gt;
&lt;br /&gt;
=December 12-21, 2018=&lt;br /&gt;
Exams and marking - excellent ways to hinder educational progress. Discussed Canadian bill of materials with Russ Purvis. Discussed the upcoming OSE workshop in Prince George, BC currently in the planning phase. Several phone conversations with Charlie. Worked on some particulars for the upcoming OSE competition in January. Contacted a teacher in Iran to invite her to join the competition with her students. Sent a letter of reference to Russ with respect to hosting an OSE workshop.&lt;br /&gt;
&lt;br /&gt;
=December 8-11, 2018=&lt;br /&gt;
Spoke with Charlie about development of OSE workshops.  Spoke with Marcin and Catarina about the same. Updated Marcin about development of OSE club at London International Academy.  We now have plans to include at least four schools in our first design challenge - School of the Nations in Guyana, Fujing Foreign Language School in Shenzhen and Jinling School in Nanjing. Was approached by a friend to contact Makerspace managers in St. Thomas and Toronto. Arranged a meeting with the makerspace managers at Western University. OSE Marlin v18.10 works for printing with new printer. Successfully printed base layer of a file.  It seems that the extruder may have jammed.  Will check again as soon as possible. LIA students continue to develop their FreeCAD skills and are able to design parts in parallel according to a spacial plan and assemble them into a larger model. Installed OSE Linux on laptop now with a new old-school 1TcB hard drive. OSE Linux did not recognise the card reader; everything else seems to work very well. &amp;lt;strong&amp;gt;Note: Stepper motors on y axis of D3D became alarmingly hot after about 15 minutes of printing.&amp;lt;/strong&amp;gt; Perhaps this is a configuration issue; may need to resolve this before allowing the printer to do a full print.&lt;br /&gt;
&lt;br /&gt;
=December 7, 2018= &lt;br /&gt;
Using OSE Ubuntu on laptop with fried SSD. Internet has connection through ping but does not display pages in Chromium. D3D Marlin recent version from OSE website installed in printer. Autohome produces a collision of the z axis with the extruder as by default the z probe is off the plate.  Tried to move the y axis using various commands such as G0 Y40 and G1 Y40 all of which cause the Y axis to move until it hits the maximum physically possible position. Spoke with Johann Wong about the possibility of combining an OSE Makerspace skills (Arduino, CAD, etc.) + 3D printer workshop with Human Innovation PIE&#039;s soft skills innovation workshop through the London International Academy Foundation. Was using wrong Marlin file for D3D printer - will try correct one asap. Suggestions for D3D: use zip ties and clothespin springs for tensioning belts.  This has worked exceptionally well and reliably for our Chinese Prusa derivative; the belts have needed nearly no attention in three years.&lt;br /&gt;
&lt;br /&gt;
=December 6, 2018=&lt;br /&gt;
Was about to test print on OSE D3D when SSD crashed.  Did Ubuntu fry it?  Researching this.&lt;br /&gt;
&lt;br /&gt;
=December 5, 2018=&lt;br /&gt;
Introduced the OSE design challenge to OSE Club students at London International Academy.&lt;br /&gt;
&lt;br /&gt;
=December 4, 2018= &lt;br /&gt;
Held an informal Introduction to Arduino Workshop at London International Academy to help two grade 11 students with a project.  Spoke with Marcin about plans for the OSE design challenge, OSE club and possibility of a summer camp at FeF in May or June of 2019.&lt;br /&gt;
&lt;br /&gt;
=December 2, 2018=&lt;br /&gt;
 Created a document outlining a framework for OSL - Open Source London and shared it on Google Docs; visited Charlie to discuss the document.&lt;br /&gt;
&lt;br /&gt;
=November 29, 2018=&lt;br /&gt;
 Introduced OSE 3D Printer and Prusa i3 3D printer to parents and students at a local French Immersion school - PAFI.  Designed and printed various models using Blender and Repetier.&lt;br /&gt;
&lt;br /&gt;
=November 28, 2018=&lt;br /&gt;
*Updated OSECartCoin with letters. &lt;br /&gt;
**[[File:PAFI.stl]]&lt;br /&gt;
**[[File:PAFI.fcstd]]&lt;br /&gt;
*Call with Marcin regarding &#039;&#039;&#039;[[LIA OSE Club]]&#039;&#039;&#039;&lt;br /&gt;
*Build from last week - [https://www.facebook.com/groups/398759490316633/permalink/963594880499755/]&lt;br /&gt;
&lt;br /&gt;
=November 27, 2018=&lt;br /&gt;
Wrote the suggested intro to Marcin&#039;s next TED talk: [[Marcin&#039;s Next TED Talk]]&lt;br /&gt;
=November 26, 2018=&lt;br /&gt;
Uploaded FeF Brick Press Fabrication video from July 29, 2011 - [https://youtu.be/LwW8sOUO00s]&lt;br /&gt;
&amp;lt;p&amp;gt;Uploaded video of the &amp;quot;Cluckaphone&amp;quot; - July 29, 2011 - [https://www.youtube.com/watch?v=PNOhZX7ftLk&amp;amp;feature=youtu.be]&lt;br /&gt;
Call with Marcin, Catarina and Charlie - OSE Planning&lt;br /&gt;
&lt;br /&gt;
=November 25, 2018=&lt;br /&gt;
Consultation about the establishment of an OSE Club at London International Academy and future directions for the development of OSE Clubs and Makerspaces.&lt;br /&gt;
&lt;br /&gt;
=November 24, 2018=&lt;br /&gt;
We made an OSE Cart Coin with FreeCAD &lt;br /&gt;
Here are the files for OSE Cart Coin v0.1:&lt;br /&gt;
[[File:OSECartCoin.fcstd]]&lt;br /&gt;
[[File:OSECartCoin.stl]]&lt;br /&gt;
Attended Marcin&#039;s presentation entitled &amp;quot;Education for the Open Source Economy&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=November 23, 2018=&lt;br /&gt;
Built a an OSE 3D printer at London International Academy&lt;br /&gt;
&lt;br /&gt;
=November 23-25=&lt;br /&gt;
Attended first OSE Professional Development workshop at London International Academy with Charles Freer, Pascal Gingras, Marcin and Catarina.&lt;br /&gt;
&lt;br /&gt;
=November 18-22= &lt;br /&gt;
Prepared for the visit of Marcin and Catarina to London.&lt;br /&gt;
&lt;br /&gt;
=November 17, 2018=&lt;br /&gt;
Conversation about OSE development with Charlie.  In particular, discussion about education and its relationship to developing the capacity to lead a meaningful and productive life. Reference to overlap of Baha&#039;i means and principles with those of the OSE - elimination of the extremes of wealth and poverty, building capabilities in a population, individual agency and initiative within a systematically evolving framework, etc.&lt;br /&gt;
&lt;br /&gt;
=November 16, 2018=&lt;br /&gt;
*Received US $5000 Shuttleworth Foundation Flash Grant&lt;br /&gt;
*Conference call with Marcin and Charles Freer regarding Marcin and Catarina&#039;s upcoming visit to London, Ontario&lt;br /&gt;
&lt;br /&gt;
=November 15, 2018=&lt;br /&gt;
Engineering Club students designed and printed a part to add to the Lyman Filament Extruder repository - a bracket for a rocker switch&lt;br /&gt;
&lt;br /&gt;
[[File:SwitchBracket2.png]]&lt;br /&gt;
[[File:Switchbase2.stl]]&lt;br /&gt;
[[File:SwitchBracket.FCStd]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=May, 2012=&lt;br /&gt;
Started project to build metric version of OSE CEB Press in Nanjing, China&lt;br /&gt;
&lt;br /&gt;
=April, 2012=&lt;br /&gt;
Began 3D Printing project in physics class at London International Academy&lt;br /&gt;
&lt;br /&gt;
=July, 2011-October, 2018=&lt;br /&gt;
Many things happened including severe neglect of the OSE wiki&lt;br /&gt;
Some highlights:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Regular incorporation of OSE concepts into classes and presentations 2011-present&lt;br /&gt;
*May, 2013 - started collaboration with Human InnovationPIE, a London non-profit organization focused on providing soft skills education for innovation.&lt;br /&gt;
*April, 2014 - Recognized in local paper for 3D Printer build with students&lt;br /&gt;
*July, 2015 - Asked to start STEM program at London International Academy further to success and popularity of 3D printer project&lt;br /&gt;
*September, 2015 - Began building Farmbot with students&lt;br /&gt;
*January, 2017 - Began teaching an Introduction to STEM course at Western University with significant OSE-based content.&lt;br /&gt;
&lt;br /&gt;
=July 16, 2011=&lt;br /&gt;
Arrived at Factor e Farm with Haydar Neal&lt;br /&gt;
&lt;br /&gt;
=March,  2011=&lt;br /&gt;
Saw TED Talk and wrote away to Marcin immediately&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=OSE_Prusa&amp;diff=204370</id>
		<title>OSE Prusa</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=OSE_Prusa&amp;diff=204370"/>
		<updated>2019-11-28T21:53:36Z</updated>

		<summary type="html">&lt;p&gt;Wneal: /* OSE Prusa */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=OSE Prusa=&lt;br /&gt;
Based on a Chinese version of the Prusa i3 printer, this represents a simple and low-part-count option for the Open Source Ecology product system. (Nov. 22, 2019 We are in the process of replicating this printer and will assemble it in Guyana in late November, 2019.)&lt;br /&gt;
[https://photos.app.goo.gl/kMcaP3xVbS65nSns9 OSE Prusa Slideshow]&lt;br /&gt;
&lt;br /&gt;
=Bill of Materials=&lt;br /&gt;
&lt;br /&gt;
=Build Instructions=&lt;br /&gt;
#Purchase and organize all parts from the Bill of Materials&lt;br /&gt;
==Frame==&lt;br /&gt;
#Make cuts in the 20mmx20mm aluminum extrusions: 400mmx3; 250mm*2; 320mm*2&lt;br /&gt;
#Slide T-Nuts for the Y Axis Idler, Motor Mount and Mounting Brackets onto the 250mm aluminum extrusions&lt;br /&gt;
#Slide T-Nuts for the Z-Axis Motor Mounts and Vertical Frame Mounts on two 400mm aluminum extrusions&lt;br /&gt;
#Complete the 290mmx400mm horizontal frame by assembling a rectangle using the 290mm and 400mm extrusions and four corner brackets.&lt;br /&gt;
#Place three corner brackets and one printer foot / printer foot bracket as feet for the horizontal frame.&lt;br /&gt;
==X-Axis==&lt;br /&gt;
#Attach the X-Axis Motor to the X-Axis Motor Mount.&lt;br /&gt;
#Place three LM8UU Linear Bearings in the X-Axis Carriage Bracket and fasten them in place with small zip ties.&lt;br /&gt;
#Attach the X-Axis Motor Mount and X-Axis Carriage Bracket to the X-Axis Motor with two 8mm smooth rods (300mm).&lt;br /&gt;
&lt;br /&gt;
==Y-Axis==&lt;br /&gt;
#Attach the Y-Axis Motor to the Y Axis Motor Mount and both onto the Horizontal Frame.&lt;br /&gt;
#Attach the Y-Axis Pulley to the Y Axis Idler Using an M5 bolt and nut.&lt;br /&gt;
#Attach the Y-Axis Idler to the Horizontal Frame.&lt;br /&gt;
#Assemble two 320mm extrusions with one 400mm extrusion to form the vertical frame.&lt;br /&gt;
#Attach the Vertical Frame to the Horizontal Frame using two corner brackets and T-Nuts.&lt;br /&gt;
#Attach LM8UU bearings to each of the Bed Mounting Brackets using Zip Ties.&lt;br /&gt;
#Attach the Bed Mounting Brackets and Y-Axis Belt Holder to the aluminum bed plate.&lt;br /&gt;
#Slide two 8mm rods through the LM8UU bearings.&lt;br /&gt;
#Attach the Aluminum Bed Plate to the Horizontal Frame using the Y Axis Mounting Brackets.  Make sure they are parallel and that the bed slides easily before tightening the screws.&lt;br /&gt;
#Attach the Y Axis Belt around the Y-Axis Motor, Idler and Belt Holder.&lt;br /&gt;
#Use small Zip Ties to hold the Y-Axis Belt in place with reasonable tension.&lt;br /&gt;
#Further tension the Y-Axis Belt with a Clothes Pin Spring.&lt;br /&gt;
==Z Axis==&lt;br /&gt;
#Attach the Z-Axis Top Left and Right Brackets to the front of the Vertical Frame Crossbar using T-Nuts.&lt;br /&gt;
#Attach the Z-Axis Motors to the Z-Axis Motor Mounts using M3 bolts.&lt;br /&gt;
#Attach the Z-Axis Couplers to the Z-Axis Acme Rods using the associated set-screws.&lt;br /&gt;
#Place the Z-Axis Couplers on the Z-Axis Motor Axles.&lt;br /&gt;
#Place the 8mm Smooth Rods in the related holes on the Z-Axis Motor Mounts.&lt;br /&gt;
#Place the Brass Nuts of X-Axis on the Z-Axis by turning the Z-Axis Acme Rods.&lt;br /&gt;
#Place the Z-Axis Smooth Rods in the related holes on the Top Left and Right Brackets.&lt;br /&gt;
#Tighten the Top Left and Right Brackets when you have made the Z-Axis Vertical and ensured that the X-Axis may move smoothly up and down.&lt;br /&gt;
==Extruder==&lt;br /&gt;
#Attach the Aluminum Extruder Block to the lower two holes of the Extruder Motor and Extruder Mounting Bracket using M3 screws.&lt;br /&gt;
#Attach the Extruder Tube through the 6mm threaded hole of the Aluminum Extruder Block.&lt;br /&gt;
#Wind two 6mm nuts up the Extruder Tube to make sure that it stays in place.  The top of the Extruder Tube should be even with the top of the Aluminum Extruder Block.&lt;br /&gt;
#Attach the Extruder Heater Block and Brass Nozzle to the Extruder Tube.&lt;br /&gt;
#Attach the Extruder Idler to the Extruder Idler Bracket using an M4 screw and Nut&lt;br /&gt;
#Attach the Extruder Bracket and Idler Bracket to the two top holes of the Extruder Motor using M3 screws.&lt;br /&gt;
#Place the Extruder Tensioner Spring in the Extruder between the Idler Bracket and the Extruder Bracket.&lt;br /&gt;
&lt;br /&gt;
==Electronics==&lt;br /&gt;
#Solder wires on the Heated Bed.&lt;br /&gt;
#Attach the Bed Thermistor to the Heated Bed&lt;br /&gt;
#Place the Heating Resistor in the Extruder Heater Block.&lt;br /&gt;
#Place the Extruder Thermistor in the Extruder Heater Block.&lt;br /&gt;
#Place the X, Y and Z End-Stops in their Respective Positions on the Printer.&lt;br /&gt;
#Prepare a Power Cable for the Power Supply.&lt;br /&gt;
#Prepare Wires to run from the Power Supply to the RAMPS Board.&lt;br /&gt;
#Prepare the Pololu Heat Sinks for the Pololu Drivers&lt;br /&gt;
#Carefully Insert the Pololus in Position on the RAMPS Board.&lt;br /&gt;
#Place the RAMPS Board on the Arduino.&lt;br /&gt;
#Place the RAMPS and Arduino on the Back of the Vertical Frame Using the T-Nuts (already on the vertical frame) and M4 screws.&lt;br /&gt;
#Run the wires of each electronics device along the frame to the RAMPS Board.  Wrap the Extruder Wires and Y-Axis Wires in a Spiral Cable Carrier. Attach the wires neatly and securely to the framw using zip ties.&lt;br /&gt;
#Attach all wires to the RAMPS Board.&lt;br /&gt;
&lt;br /&gt;
=Part Library=&lt;br /&gt;
&lt;br /&gt;
Here are the parts for the printer: (Nov. 23, 2019 - Note that the Y Belt Holder still needs to be drawn up in FreeCAD; we are still working on some minor edits to some of the parts - for the moment, we are drilling some holes in them for example)&lt;br /&gt;
&amp;lt;gallery perrow=6&amp;gt;&lt;br /&gt;
File:OSEPrusaXAxisIdler.png|&#039;&#039;&#039;OSE Prusa X Axis Idler&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisIdler.FCStd]]&lt;br /&gt;
File:OSEPrusaXAxisMotorMount.png|&#039;&#039;&#039;OSE Prusa X Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisMotorMount.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaYAxisIdler.png|&#039;&#039;&#039;OSE Prusa Y Axis Idler&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYAxisIdler.FCStd]]&lt;br /&gt;
File:OSEPrusaYAxisMotorMount.png&#039;&#039;&#039;OSE Prusa Y Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisMotorMount.FCStd]]&lt;br /&gt;
File:OSEPrusaYAxisBracket.png&#039;&#039;&#039;OSE Prusa Y Axis Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYAxisBracket.FCStd]]&lt;br /&gt;
File:OSEPrusaYBeltHolder.png|&#039;&#039;&#039;OSE Prusa Y Belt Holder&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYBeltHolder.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaZAxisMotorMount.png|&#039;&#039;&#039;OSE Prusa Z Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisMotorMount.FCStd]]&lt;br /&gt;
File:OSEPrusaTopLeftBracket.png|&#039;&#039;&#039;OSE Prusa Top Left Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisTopBracketLR.FCStd]]&lt;br /&gt;
File:OSEPrusaTopRightBracket.png|&#039;&#039;&#039;OSE Prusa Top Right Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisTopBracketLR.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaPrinterFoot.png|&#039;&#039;&#039;OSE Prusa Printer Foot&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaPrinterFoot.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaBedBracket.png|&#039;&#039;&#039;OSE Prusa Bed Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaBedBracket.FCStd]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
==Extruder==&lt;br /&gt;
This printer makes use of the OSE D3D [[Simple Extruder]]&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=OSE_Prusa&amp;diff=204369</id>
		<title>OSE Prusa</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=OSE_Prusa&amp;diff=204369"/>
		<updated>2019-11-28T21:53:12Z</updated>

		<summary type="html">&lt;p&gt;Wneal: /* OSE Prusa */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=OSE Prusa=&lt;br /&gt;
Based on a Chinese version of the Prusa i3 printer, this represents a simple and low-part-count option for the Open Source Ecology product system. (Nov. 22, 2019 We are in the process of replicating this printer and will assemble it in Guyana in late November, 2019.)&lt;br /&gt;
[[https://photos.app.goo.gl/kMcaP3xVbS65nSns9 OSE Prusa Slideshow]]&lt;br /&gt;
&lt;br /&gt;
=Bill of Materials=&lt;br /&gt;
&lt;br /&gt;
=Build Instructions=&lt;br /&gt;
#Purchase and organize all parts from the Bill of Materials&lt;br /&gt;
==Frame==&lt;br /&gt;
#Make cuts in the 20mmx20mm aluminum extrusions: 400mmx3; 250mm*2; 320mm*2&lt;br /&gt;
#Slide T-Nuts for the Y Axis Idler, Motor Mount and Mounting Brackets onto the 250mm aluminum extrusions&lt;br /&gt;
#Slide T-Nuts for the Z-Axis Motor Mounts and Vertical Frame Mounts on two 400mm aluminum extrusions&lt;br /&gt;
#Complete the 290mmx400mm horizontal frame by assembling a rectangle using the 290mm and 400mm extrusions and four corner brackets.&lt;br /&gt;
#Place three corner brackets and one printer foot / printer foot bracket as feet for the horizontal frame.&lt;br /&gt;
==X-Axis==&lt;br /&gt;
#Attach the X-Axis Motor to the X-Axis Motor Mount.&lt;br /&gt;
#Place three LM8UU Linear Bearings in the X-Axis Carriage Bracket and fasten them in place with small zip ties.&lt;br /&gt;
#Attach the X-Axis Motor Mount and X-Axis Carriage Bracket to the X-Axis Motor with two 8mm smooth rods (300mm).&lt;br /&gt;
&lt;br /&gt;
==Y-Axis==&lt;br /&gt;
#Attach the Y-Axis Motor to the Y Axis Motor Mount and both onto the Horizontal Frame.&lt;br /&gt;
#Attach the Y-Axis Pulley to the Y Axis Idler Using an M5 bolt and nut.&lt;br /&gt;
#Attach the Y-Axis Idler to the Horizontal Frame.&lt;br /&gt;
#Assemble two 320mm extrusions with one 400mm extrusion to form the vertical frame.&lt;br /&gt;
#Attach the Vertical Frame to the Horizontal Frame using two corner brackets and T-Nuts.&lt;br /&gt;
#Attach LM8UU bearings to each of the Bed Mounting Brackets using Zip Ties.&lt;br /&gt;
#Attach the Bed Mounting Brackets and Y-Axis Belt Holder to the aluminum bed plate.&lt;br /&gt;
#Slide two 8mm rods through the LM8UU bearings.&lt;br /&gt;
#Attach the Aluminum Bed Plate to the Horizontal Frame using the Y Axis Mounting Brackets.  Make sure they are parallel and that the bed slides easily before tightening the screws.&lt;br /&gt;
#Attach the Y Axis Belt around the Y-Axis Motor, Idler and Belt Holder.&lt;br /&gt;
#Use small Zip Ties to hold the Y-Axis Belt in place with reasonable tension.&lt;br /&gt;
#Further tension the Y-Axis Belt with a Clothes Pin Spring.&lt;br /&gt;
==Z Axis==&lt;br /&gt;
#Attach the Z-Axis Top Left and Right Brackets to the front of the Vertical Frame Crossbar using T-Nuts.&lt;br /&gt;
#Attach the Z-Axis Motors to the Z-Axis Motor Mounts using M3 bolts.&lt;br /&gt;
#Attach the Z-Axis Couplers to the Z-Axis Acme Rods using the associated set-screws.&lt;br /&gt;
#Place the Z-Axis Couplers on the Z-Axis Motor Axles.&lt;br /&gt;
#Place the 8mm Smooth Rods in the related holes on the Z-Axis Motor Mounts.&lt;br /&gt;
#Place the Brass Nuts of X-Axis on the Z-Axis by turning the Z-Axis Acme Rods.&lt;br /&gt;
#Place the Z-Axis Smooth Rods in the related holes on the Top Left and Right Brackets.&lt;br /&gt;
#Tighten the Top Left and Right Brackets when you have made the Z-Axis Vertical and ensured that the X-Axis may move smoothly up and down.&lt;br /&gt;
==Extruder==&lt;br /&gt;
#Attach the Aluminum Extruder Block to the lower two holes of the Extruder Motor and Extruder Mounting Bracket using M3 screws.&lt;br /&gt;
#Attach the Extruder Tube through the 6mm threaded hole of the Aluminum Extruder Block.&lt;br /&gt;
#Wind two 6mm nuts up the Extruder Tube to make sure that it stays in place.  The top of the Extruder Tube should be even with the top of the Aluminum Extruder Block.&lt;br /&gt;
#Attach the Extruder Heater Block and Brass Nozzle to the Extruder Tube.&lt;br /&gt;
#Attach the Extruder Idler to the Extruder Idler Bracket using an M4 screw and Nut&lt;br /&gt;
#Attach the Extruder Bracket and Idler Bracket to the two top holes of the Extruder Motor using M3 screws.&lt;br /&gt;
#Place the Extruder Tensioner Spring in the Extruder between the Idler Bracket and the Extruder Bracket.&lt;br /&gt;
&lt;br /&gt;
==Electronics==&lt;br /&gt;
#Solder wires on the Heated Bed.&lt;br /&gt;
#Attach the Bed Thermistor to the Heated Bed&lt;br /&gt;
#Place the Heating Resistor in the Extruder Heater Block.&lt;br /&gt;
#Place the Extruder Thermistor in the Extruder Heater Block.&lt;br /&gt;
#Place the X, Y and Z End-Stops in their Respective Positions on the Printer.&lt;br /&gt;
#Prepare a Power Cable for the Power Supply.&lt;br /&gt;
#Prepare Wires to run from the Power Supply to the RAMPS Board.&lt;br /&gt;
#Prepare the Pololu Heat Sinks for the Pololu Drivers&lt;br /&gt;
#Carefully Insert the Pololus in Position on the RAMPS Board.&lt;br /&gt;
#Place the RAMPS Board on the Arduino.&lt;br /&gt;
#Place the RAMPS and Arduino on the Back of the Vertical Frame Using the T-Nuts (already on the vertical frame) and M4 screws.&lt;br /&gt;
#Run the wires of each electronics device along the frame to the RAMPS Board.  Wrap the Extruder Wires and Y-Axis Wires in a Spiral Cable Carrier. Attach the wires neatly and securely to the framw using zip ties.&lt;br /&gt;
#Attach all wires to the RAMPS Board.&lt;br /&gt;
&lt;br /&gt;
=Part Library=&lt;br /&gt;
&lt;br /&gt;
Here are the parts for the printer: (Nov. 23, 2019 - Note that the Y Belt Holder still needs to be drawn up in FreeCAD; we are still working on some minor edits to some of the parts - for the moment, we are drilling some holes in them for example)&lt;br /&gt;
&amp;lt;gallery perrow=6&amp;gt;&lt;br /&gt;
File:OSEPrusaXAxisIdler.png|&#039;&#039;&#039;OSE Prusa X Axis Idler&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisIdler.FCStd]]&lt;br /&gt;
File:OSEPrusaXAxisMotorMount.png|&#039;&#039;&#039;OSE Prusa X Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisMotorMount.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaYAxisIdler.png|&#039;&#039;&#039;OSE Prusa Y Axis Idler&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYAxisIdler.FCStd]]&lt;br /&gt;
File:OSEPrusaYAxisMotorMount.png&#039;&#039;&#039;OSE Prusa Y Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaXAxisMotorMount.FCStd]]&lt;br /&gt;
File:OSEPrusaYAxisBracket.png&#039;&#039;&#039;OSE Prusa Y Axis Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYAxisBracket.FCStd]]&lt;br /&gt;
File:OSEPrusaYBeltHolder.png|&#039;&#039;&#039;OSE Prusa Y Belt Holder&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaYBeltHolder.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaZAxisMotorMount.png|&#039;&#039;&#039;OSE Prusa Z Axis Motor Mount&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisMotorMount.FCStd]]&lt;br /&gt;
File:OSEPrusaTopLeftBracket.png|&#039;&#039;&#039;OSE Prusa Top Left Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisTopBracketLR.FCStd]]&lt;br /&gt;
File:OSEPrusaTopRightBracket.png|&#039;&#039;&#039;OSE Prusa Top Right Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaZAxisTopBracketLR.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaPrinterFoot.png|&#039;&#039;&#039;OSE Prusa Printer Foot&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaPrinterFoot.FCStd]]&lt;br /&gt;
&lt;br /&gt;
File:OSEPrusaBedBracket.png|&#039;&#039;&#039;OSE Prusa Bed Bracket&#039;&#039;&#039; - FreeCAD -[[File:OSEPrusaBedBracket.FCStd]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
==Extruder==&lt;br /&gt;
This printer makes use of the OSE D3D [[Simple Extruder]]&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=204360</id>
		<title>William Neal Log</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=204360"/>
		<updated>2019-11-28T19:21:09Z</updated>

		<summary type="html">&lt;p&gt;Wneal: /* Saturday November 2 - Friday November 22 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{RightTOC}}&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;600&amp;quot; height=&amp;quot;600&amp;quot; src=&amp;quot;https://osedev.org/wiki/William?start=2/1/2017&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
=Saturday November 23 - Thursday November 28=&lt;br /&gt;
Workshop in Guyana. CSSP Project&lt;br /&gt;
[[OSE Linux]]&lt;br /&gt;
[http://www.ubuntu.com Ubuntu Linux Page]&lt;br /&gt;
[[New Page in the Wiki]]&lt;br /&gt;
&lt;br /&gt;
=Saturday November 2 - Friday November 22=&lt;br /&gt;
Worked on the [[OSE Prusa]] in order to support the establishment of a STEM centre in Trinidad and Tobago and to prepare for a workshop with the Government of Guyana.&lt;br /&gt;
#Items in a numbered list&lt;br /&gt;
#More Items&lt;br /&gt;
##Yet More&lt;br /&gt;
*Items in a bullet list&lt;br /&gt;
*More Items&lt;br /&gt;
**Yet More&lt;br /&gt;
&lt;br /&gt;
=Thursday October 24 - Friday November 1=&lt;br /&gt;
*Tested printing on the London replication of the D3D printer for the first time.&lt;br /&gt;
*Team of 9 students from Western university preparing a project around OSE - D3D replication + filament extruder replication + Chinese Reprap Prusa i3 reverse engineering.&lt;br /&gt;
=Sunday October 12 - Wednesday October 23=&lt;br /&gt;
*Updated some files used in the simple extruder build [https://wiki.opensourceecology.org/wiki/Simple_3D_Printer_Extruder#CAD here.]&lt;br /&gt;
&lt;br /&gt;
=Friday October 4 - Saturday October 11=&lt;br /&gt;
*Successfully tested D3D simple extruder based on Chinese Prusa i3.&lt;br /&gt;
*D3D challenge - Y axis end stop stopped working...&lt;br /&gt;
*Almost finished replicating first of two D3D printers in London Ontario.&lt;br /&gt;
*Preparing a D3D / Brushless motor workshop for the Guyana Prison Service. &lt;br /&gt;
*FreeCAD activity completed at Western University - varied response of individuals in the groups - the allocated time was too short. &lt;br /&gt;
=Friday September 27 - Thursday October 3=&lt;br /&gt;
*Continued work on D3D build.&lt;br /&gt;
*Experimenting with highly differentiated instruction unconstrained by government curricular concerns - our STEM club&#039;s three sections - Robotics / Computers and CAD / STEM projects have each gradually evolved over the last several weeks such that small groups of 1-4 students specialize on special tasks.&lt;br /&gt;
*Introduced FreeCAD to a group of junior youth from a local neighborhood. After about 40 minutes each group of two participants completed a motor rotor design.&lt;br /&gt;
*Second FreeCAD session with a group of 40 teacher candidate students at Western University&#039;s Althouse. Also used highly differentiated / interdisciplinary instruction with this group. After one hour and a half, most groups were able to generate several parts of a brushless motor and begin the process of parameterizing with a spreadsheet and creating an assembly.  Some trained engineers in the crowd generated excellent &amp;quot;propellers&amp;quot; for the motor using advanced features.&lt;br /&gt;
&lt;br /&gt;
=Tuesday, September 1 - Thursday, September 26=&lt;br /&gt;
*New School Year - over 40 students participating in our special STEM/Business/Arts program.&lt;br /&gt;
*Two sections of our program, STEM Projects and Computer Programming/CAD,  include OSE-related topics:&lt;br /&gt;
**Building 3D printers&lt;br /&gt;
**3D-printing&lt;br /&gt;
**OSE Motor design and fabrication&lt;br /&gt;
**Filament extruder&lt;br /&gt;
**CAD&lt;br /&gt;
*Building a 3D printer in collaboration with Bill Phelan, Vice President of Die-X Ltd.&lt;br /&gt;
*Remote collaboration with Branko Misovic in Holland.&lt;br /&gt;
*Preparing for a two-week 3D-printer build / open source hardware workshop in Guyana in November.&lt;br /&gt;
*Working on simple extruder for the D3D printer.&lt;br /&gt;
*Some 3D-printed parts for the D3D printer are not precise enough as they were printed with 1.0mm and 0.8mm nozzles.  We are switching to a 0.4mm nozzle and re-printing.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 27 - Monday September 1=&lt;br /&gt;
*Preparation for STEM camps in China. &lt;br /&gt;
*Travel to China.  Caught behind firewall - Internet was actually a large Intranet - difficult to post, communicate or access any useful sites. &lt;br /&gt;
*STEM Camp at Fujing Foreign language school - 10 days - 60 students, 1.5 hours daily - worked on FreeCAD and the OSE motor. &lt;br /&gt;
*Built OSE D3D printer with eight 9-11 year-old students (10 days, 3 hours daily) at EIC Education in Shenzhen.  The students assembled the axes and helped design some custom 3D-printed brackets for the frame which had to be made out of linear rail. The students learned FreeCAD and were able to design useful parts. Ganesh Ramsahai provided support in completing the build and configuration process. Presented the OSE D3D Shenzhen to the EIC Education Group with a half-hour overview and offer to provide remote support.&lt;br /&gt;
*STEM Camp at Zhangjiagang Foreign Language School in Jiangsu province. 30 students, 3 days, 6 hours per day.  Introduced FreeCAD and had the students design rotors and stators for the OSE brushless motor.&lt;br /&gt;
*Showed the TED talk to four different groups.&lt;br /&gt;
*Uploaded raw FreeCAD and stl files from the camps at Fujing Foreign Language School and Zhangjiagang Foreign Language School to [https://drive.google.com/open?id=1K7U8lEGqRgxwQf-WNX1Llbf-WE7LJCqL Google Drive]&lt;br /&gt;
*Uploaded [https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH custom files] generated during the build of the D3D 19.08 Shenzhen.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 20 - Friday July 26=&lt;br /&gt;
LIA summer STEM camp continued with 38 different students from Shenzhen, China.  The students discussed, in the context of Marcin&#039;s TED Talk, the concept that the human mind, focused and in collaboration with others, has the power to make positive changes in society.  Design of covers and caps for the OSE radial motor. Photos from the STEM Camp activities are [https://photos.app.goo.gl/zcpKk8jaFcDon31K7 here].  Trying to find the USB where we collected all the FreeCAD files.  These will be posted ASAP.&lt;br /&gt;
&lt;br /&gt;
=Monday July 15 - Friday July 19=&lt;br /&gt;
LIA summer STEM camp with 23 students from Vietnam and China. OSE Motor project part II - designing, printing and testing a radial motor. The motor concept was based on the following video: [https://www.youtube.com/watch?v=JkwLpAAfBVI 3D-Printed Axial Brushless Motor for Drones] Students were presented with the concept and asked to design such a motor from scratch using two rotors with eight disc magnets each and two sets of six wire loops.&lt;br /&gt;
&lt;br /&gt;
=Wednesday July 10 - Sunday July 14=&lt;br /&gt;
Preparation for summer STEM Camps at LIA.  Prepared 3D printers.  Began replication of two D3D v19.06 units.&lt;br /&gt;
=Friday June 28 - Tuesday July 9= &lt;br /&gt;
Open Source Ecology Microfactory STEAM Camp&lt;br /&gt;
=Thursday June 27=&lt;br /&gt;
Titan Aero finally working better with 1.5 full turns + a little bit more for good measure - has not jammed all afternoon now - three parts printed.  Logistics for Microfatory STEAM Camp - rented a vehicle and contacted a few participants. A prototype of the OSE extruder has been nearly completed. The extruder gear is scheduled to arrive at Factor e Farm by tomorrow. Then it will be ready for testing.  [https://photos.app.goo.gl/fWUX8ynAdqcn6Fvs6 OSE D3D Extruder - Photo Album][https://drive.google.com/open?id=17BLyvyk1EbrMOhkCfeSwByAq86SemSLX Files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 25 - Wednesday June 26=&lt;br /&gt;
OSE D3D Extruder.  Worked on attaching extruder to X-axis. Ordered extruder motor gears to arrive at FeF on Friday. Printed out bracket 1 successfully. Working on large aluminium block and designing x-axis adapter.&lt;br /&gt;
=Monday June 24=&lt;br /&gt;
Discussion about design of OSE Power Electronics. Problem - transformers are expensive and inflexible. Solution - research the feasibility of creating a 120V buck converter.  Would it be sufficiently efficient and would it be feasible to build?  Here are some potential parts to use: [https://www.digikey.ca/product-detail/en/comchip-technology/GBPC5010W-G/641-1389-ND/2074854 1kV Recifier] [https://www.digikey.ca/product-detail/en/ixys/IXFX120N65X2/IXFX120N65X2-ND/5629498?utm_adgroup=&amp;amp;mkwid=sFMkJ49os&amp;amp;pcrid=311971049444&amp;amp;pkw=&amp;amp;pmt=&amp;amp;pdv=c&amp;amp;productid=5629498&amp;amp;slid=&amp;amp;gclid=EAIaIQobChMIgbDd1fSC4wIVwkOGCh1f8gijEAQYAyABEgJGffD_BwE 650V MOSFET].  One problem seems to be that there may be a high level of energy loss in the circuit....[https://www.digikey.com/product-detail/en/everlight-electronics-co-ltd/H11L1S-TA/1080-1201-1-ND/2675935 Optocoupler] (to isolate the Arduino)[http://fpec.ucf.edu/teaching/EEL%205245%20Lectures/Lecture13%20Chapter4_BoostandBuckBoost_CCM_Analysis.pdf Some background theory]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 19 - Sunday June 23=&lt;br /&gt;
DIY Buck Converter based on the following video (and others): https://www.youtube.com/watch?v=L5oeY53pE0E&amp;amp;t=162s. [https://photos.app.goo.gl/kkHUwBQtD7h48mhB6 Photos.] All four 3D printers are down.  A crucial piece of the extruder of the most reliable printer finally broke. CAD already done for the replacement part. Got the OSE D3D working again on Friday.  Ready for printing on Monday - will print replacement part for other printer.  Other 2 printers almost working...&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 18=&lt;br /&gt;
[https://www.pythonpowerelectronics.com/ Python Power Electronics]&lt;br /&gt;
=Thursday June 13 - Monday June 17=&lt;br /&gt;
Buck Converters. OSE [[Power Electronics]] research. Arduino as controller of Power electronics - frequency issues / limitations. Scalability of Power electronics - can we add modular components to increase voltage, current, etc.?  &lt;br /&gt;
=Tuesday June 11 - Wednesday June 12=&lt;br /&gt;
Completed and sent CAD Drawings for OSE 3D Printer. Spent most of Wednesday working through a jam on the Titan Aero - it has jammed more in a few days than our other extruder has jammed in over three years.&lt;br /&gt;
=Monday June 10=&lt;br /&gt;
[https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH FreeCAD Drawings] for OSE 3D Printer. Note the use of parametric design in the CAD files - Spreadsheet values become variables used in constraint dimensions.&lt;br /&gt;
The following is my most recent FreeCAD Parametric Part Design and Drawing Workflow:[[FreeCAD Workflow]]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 5 - Sunday June 9=&lt;br /&gt;
[https://www.youtube.com/watch?v=CEhBN5_fO5o|DC-DC Buck Converters]&lt;br /&gt;
Power Supply: Transformer + Buck Converter + Ripple Smoothing Circuitry&lt;br /&gt;
=Tuesday June 4=&lt;br /&gt;
*[[Arduino Controlled Power Supply]] - ordered many components.&lt;br /&gt;
*Many electronic components specified in DIY articles and videos are now listed as obsolete.  Finding replacement parts is not easy. Case in point: LM338K Linear Voltage Regulators - Listed as obsolete on the Mouser website and selling for $91 or more on the Digi-key website.&lt;br /&gt;
*[https://www.eetimes.com/document.asp?doc_id=1333695# Article about obsolescence and demand and supply issues in the electronics industry]&lt;br /&gt;
&lt;br /&gt;
=Saturday June 1 - Monday June 3=&lt;br /&gt;
Reviewed [[OSE Design Guides]] Reviewed [[DIY Semiconductors]] Microfactory STEAM Camp Critical Path [[Arduino Controlled Power Supply]] Fabrication of aluminium blocks for hot end for OSE 3D printer extruder. Parametric modelling in FreeCAD.&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 28 - Friday May 31=&lt;br /&gt;
[[Halbach Array Brushless Motor]]&lt;br /&gt;
&lt;br /&gt;
=Monday May 27= &lt;br /&gt;
[https://www.youtube.com/watch?v=uOQk8SJso6Q How to Control an ESC with an Arduino] [https://photos.app.goo.gl/HMvWbigvuw3S26YG8 Test of the OSE Motor].&lt;br /&gt;
&lt;br /&gt;
=Friday May 24 - Sunday May 26= &lt;br /&gt;
Not all that much.&lt;br /&gt;
=Thursday May 23=&lt;br /&gt;
Thank you to Marcin and Catarina for a refreshing, enlightening and enjoyable visit to Factor e Farm and the Seed Ecohome. Returned to London.&lt;br /&gt;
=Wednesday May 22=&lt;br /&gt;
Skype appointment - 12pm Missouri time - friend in Colombia. Uploaded FreeCAD files for D3D v19.04 Power Plug Case to Wiki. [https://en.wikipedia.org/wiki/Buck_converter Buck Converter]&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 21=&lt;br /&gt;
[https://www.powerelectronicsnews.com/problems-solutions/power-supply-design-tutorial Power Supply Design Tutorial] Edited the [https://docs.google.com/document/d/1_3t_97giFOtqJ4ExPZdYeVEilCRhMmu0IWLLpBCrG-0/edit?usp=sharing Video Script] &lt;br /&gt;
Contacted STEM people in Nigeria and Pennsylvania based on the OSE STEAM Camp posted in this [https://www.facebook.com/groups/822455171229260/ Facebook Forum]&lt;br /&gt;
Further communication with friends in Mexico regarding the STEAM camp. Contacted a friend of a friend in Kansas City - Baha&#039;i Community.&lt;br /&gt;
&lt;br /&gt;
=Monday May 20=&lt;br /&gt;
Posted Microfactory STEAM camp on several Facebook STEM/STEAM Education pages. [[The Living Curriculum]] [https://github.com/MarlinFirmware/Marlin/issues/8903 Marlin Bed Temperature Settings] Worked on the Titan-Aero extruder repairs. The two parts of the extruder tube must be fairly tight (but not too tight!) to avoid leakage.&lt;br /&gt;
&lt;br /&gt;
=Sunday May 19=&lt;br /&gt;
Printing ABS using the OSE D3D - Set the bed temperature to 83 and the nozzle temperature to 255.  After 5 minutes of printing, several layers were adhering well. Thermal runaway. Tried 80 and 244; thermal runaway again. Joined several online STEM/Education groups.&lt;br /&gt;
&lt;br /&gt;
=Saturday May 18=&lt;br /&gt;
[[OSE Revenue Generation]] - Grameen Bank / Social Business - [[OSE Curriculum]]&lt;br /&gt;
&lt;br /&gt;
=Friday May 17=&lt;br /&gt;
[[OSE STEM Camp Marketing Strategy]]&lt;br /&gt;
=Friday May 10 - Thursday May 16= &lt;br /&gt;
Preparation for trip to Factor e Farm - gathered supplies - PCB boards, glossy paper, wire, magnets, electronic components, hardware, etc. Arrival at Factor e Farm. Work on D3D v. 19.04: [Photos - OSE D3D v19.04 Build at FeF https://www.facebook.com/photo.php?fbid=10161819908970597&amp;amp;set=pcb.1063740287151880&amp;amp;type=3&amp;amp;theater&amp;amp;ifg=1]&lt;br /&gt;
 &lt;br /&gt;
=Friday April 12 - Thursday May 9=&lt;br /&gt;
[https://drive.google.com/open?id=1-DpgMCARsA5iz4JLZtUeP3SD4a3UrXhj OSE Motor Completed] - ready for testing - Open Source Chinese Prusa i3 Printer Extruder - Configured and began printing with OSE D3D - printing very well at the moment - Booked a flight to Kansas City - heading to Factor e Farm soon!&lt;br /&gt;
&lt;br /&gt;
=Monday March 4 - Thursday April 11=&lt;br /&gt;
FRC Robotics - Ryerson University, Western University. OSE Motor - students have made some progress: [https://drive.google.com/open?id=1n99XWM8KMwvnV-tCmcWjImsBG27ReRSc OSE Brushless Motor] Additional work on the [[Simple 3D Printer Extruder]]&lt;br /&gt;
&lt;br /&gt;
=Sunday March 3=&lt;br /&gt;
Completed the first model of the most difficult part to CAD in the extruder - the X-Axis bracket.  Will now print CAD files and measure their accuracy before making changes to the CAD parameters.  Hopefully this process will result in more accurate parts.&lt;br /&gt;
&lt;br /&gt;
=Friday March 1 - Saturday March 2 =&lt;br /&gt;
Further work on open sourcing Chinese Prusa i3 3D printer extruder.&lt;br /&gt;
&lt;br /&gt;
=Monday February 18 - Thursday February 28=&lt;br /&gt;
Began the process of open-sourcing our 3D printer extruder: [[Simple 3D Printer Extruder]] (see photos and CAD files in the 3D Printer Folder) &lt;br /&gt;
Started a new unit in Computer Engineering Technology class.  Two groups of students are working on OSE materials:  &lt;br /&gt;
#The OSE Collaborative Contest&lt;br /&gt;
#The OSE Filament Extruder&lt;br /&gt;
&lt;br /&gt;
=Saturday February 9-Sunday February 17=&lt;br /&gt;
Hosted a group of six STEM students from School of the Nations in Georgetown, Guyana. STEM Camp at London International Academy.  Introduced the concept of the OSE collaborative contest. Introductory FreeCAD activities. Introduced Python computer programming.  Printed out various parts for an open source brushless motor.  [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX Link to CAD Files] (see School of the Nations sub-folder)[[file:Rotor.jpg|200px]] [http://guyanachronicle.com/2019/02/17/nations-benefits-from-robotics-training-in-canada Article in Guyana Chronicle]&lt;br /&gt;
&lt;br /&gt;
=Wednesday February 6= &lt;br /&gt;
[[OSE Coopetition]].  Discussed wiki + part library + documentation of OSE Coopetition.&lt;br /&gt;
&lt;br /&gt;
=Monday February 4=&lt;br /&gt;
Uploaded version 0.1 of the OSE Collaborative Contest Rules to [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest]&lt;br /&gt;
=Wednesday January 30 - Sunday February 3=&lt;br /&gt;
FRC Build season.  [https://drive.google.com/drive/folders/1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH?usp=sharing Team 6162 Cap Alpaca FreeCAD files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday January 29=&lt;br /&gt;
Collected FreeCAD files in a Google drive folder: [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest] &lt;br /&gt;
Summary of Nanjing group&#039;s schedule: [https://docs.google.com/document/d/1R-Dtu3kdZ0u8Qo5w3_vDuNEg5myr8mUmLjSpPOf-HoI/edit?usp=sharing | 2019 Winter Camp]&lt;br /&gt;
Here is some sample work from the FreeCAD workshop:&lt;br /&gt;
*[[File:ReyJessica.png|200px]]&lt;br /&gt;
*[[File:ZJHLSR.png|200px]]&lt;br /&gt;
&lt;br /&gt;
=Sunday January 27 - Monday January 28=&lt;br /&gt;
Discussed record keeping, file sharing and other skills for collaborative literacy. Created a sample page stub: [[Brushless Motor Design]].  Asked students to reflect on sessions learning FreeCAD.  Found that it is not necessary to learn a whole lot about FreeCAD in order to get students learning it.  Demonstrated two sample FreeCAD 0.17 design processes:&lt;br /&gt;
#Design a part like a motor adapter: body - sketch a circle - pad - sketch on a surface - pocket&lt;br /&gt;
#Design a sketch with constraints - some straight lines and some arcs closed in a loop with particular dimensions and angles.&lt;br /&gt;
After that, students were directed to Youtube videos that covered specific additional skills: &lt;br /&gt;
*Threading - inner and outer&lt;br /&gt;
*Polar patterns&lt;br /&gt;
Through this process, I learned how to do these skills from some students and was able to show other students the same, especially with polar patterns.&lt;br /&gt;
&lt;br /&gt;
=Sunday January, 20 - Saturday January 26, 2019=&lt;br /&gt;
Prepared for and welcomed 19 students from Jinling High School in China. Introduced the concept of the OSE Collaborative Contest.  Marcin spoke with the group over Jitsi on Thursday and on Saturday and proposed that the students participate in the OSE Collaborative Contest. It was well received despite the students&#039; fatigue from travel and skiing. Introduced FreeCAD and had students download and install it. Some computers do not immediately work with FreeCAD; hope that the problem may be solved. We plan to further discuss the students&#039; participation in the contest tomorrow and 3D print some of their early FreeCAD work on Monday. Created a link to LIA students&#039; FreeCAD work.  Currently the folder is being used for FRC preparation.  After the FRC robot is built, we are planning to transition to OSE-related work in this folder: [https://drive.google.com/open?id=1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH LIA OSE Club CAD Files]&lt;br /&gt;
&lt;br /&gt;
=Thursday January 10 - Saturday Jan 19, 2019=&lt;br /&gt;
Heaviest schedule of the year - January and February; progress slower during this time. Working on STEM Curriculum for FeF STEM Camps - [[Summer School 2019]].&lt;br /&gt;
&lt;br /&gt;
=Wed Jan 9, 2019=&lt;br /&gt;
*Use a presentation - template - make a copy - pass this to Heydar - document the simple 3D printing extruder for a low cost 3d printer - [https://docs.google.com/presentation/d/1_kUzO4eRCqrHVpqxSSTs17oLhtikTTyYe_1NxrTKlTI/edit#slide=id.g45ed589c64_0_0]&lt;br /&gt;
*Homework: Complete STEM Curriculum&lt;br /&gt;
&lt;br /&gt;
=January 2, 2019=&lt;br /&gt;
Ordered parts for a brushless motor to be constructed as part of the contest and part of the Computer Engineering Technology class at London International Academy.&lt;br /&gt;
In order to make the collaborative contest work, we will need to create a kit of parts to be easily shipped to participating schools.&lt;br /&gt;
&lt;br /&gt;
=December 24 2018-January 1, 2019=&lt;br /&gt;
Took a break. Reflected on plans for OSE London / OSE Club at London International Academy / OSE Collaborative Contest&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=December 23, 2018=&lt;br /&gt;
Defined particulars of [[OSE STEM Camps]].&lt;br /&gt;
&lt;br /&gt;
=December 22,2018=&lt;br /&gt;
[[William Conversation | Conversation with Marcin]]. Research on OSE Club Activities. Planning for winter semester courses&#039; links to OSE - Computer Engineering Technology and Computer Science. Plans to do the following in Computer Engineering Technology: build a brushless motor and ESC from scratch. Computer Science: Programming projects related to OSE - simulation program? Western University Introduction to STEM Class - offer the OSE Competition as a choice for a final project - help administer / judge / communicate / etc.&lt;br /&gt;
&lt;br /&gt;
=December 12-21, 2018=&lt;br /&gt;
Exams and marking - excellent ways to hinder educational progress. Discussed Canadian bill of materials with Russ Purvis. Discussed the upcoming OSE workshop in Prince George, BC currently in the planning phase. Several phone conversations with Charlie. Worked on some particulars for the upcoming OSE competition in January. Contacted a teacher in Iran to invite her to join the competition with her students. Sent a letter of reference to Russ with respect to hosting an OSE workshop.&lt;br /&gt;
&lt;br /&gt;
=December 8-11, 2018=&lt;br /&gt;
Spoke with Charlie about development of OSE workshops.  Spoke with Marcin and Catarina about the same. Updated Marcin about development of OSE club at London International Academy.  We now have plans to include at least four schools in our first design challenge - School of the Nations in Guyana, Fujing Foreign Language School in Shenzhen and Jinling School in Nanjing. Was approached by a friend to contact Makerspace managers in St. Thomas and Toronto. Arranged a meeting with the makerspace managers at Western University. OSE Marlin v18.10 works for printing with new printer. Successfully printed base layer of a file.  It seems that the extruder may have jammed.  Will check again as soon as possible. LIA students continue to develop their FreeCAD skills and are able to design parts in parallel according to a spacial plan and assemble them into a larger model. Installed OSE Linux on laptop now with a new old-school 1TcB hard drive. OSE Linux did not recognise the card reader; everything else seems to work very well. &amp;lt;strong&amp;gt;Note: Stepper motors on y axis of D3D became alarmingly hot after about 15 minutes of printing.&amp;lt;/strong&amp;gt; Perhaps this is a configuration issue; may need to resolve this before allowing the printer to do a full print.&lt;br /&gt;
&lt;br /&gt;
=December 7, 2018= &lt;br /&gt;
Using OSE Ubuntu on laptop with fried SSD. Internet has connection through ping but does not display pages in Chromium. D3D Marlin recent version from OSE website installed in printer. Autohome produces a collision of the z axis with the extruder as by default the z probe is off the plate.  Tried to move the y axis using various commands such as G0 Y40 and G1 Y40 all of which cause the Y axis to move until it hits the maximum physically possible position. Spoke with Johann Wong about the possibility of combining an OSE Makerspace skills (Arduino, CAD, etc.) + 3D printer workshop with Human Innovation PIE&#039;s soft skills innovation workshop through the London International Academy Foundation. Was using wrong Marlin file for D3D printer - will try correct one asap. Suggestions for D3D: use zip ties and clothespin springs for tensioning belts.  This has worked exceptionally well and reliably for our Chinese Prusa derivative; the belts have needed nearly no attention in three years.&lt;br /&gt;
&lt;br /&gt;
=December 6, 2018=&lt;br /&gt;
Was about to test print on OSE D3D when SSD crashed.  Did Ubuntu fry it?  Researching this.&lt;br /&gt;
&lt;br /&gt;
=December 5, 2018=&lt;br /&gt;
Introduced the OSE design challenge to OSE Club students at London International Academy.&lt;br /&gt;
&lt;br /&gt;
=December 4, 2018= &lt;br /&gt;
Held an informal Introduction to Arduino Workshop at London International Academy to help two grade 11 students with a project.  Spoke with Marcin about plans for the OSE design challenge, OSE club and possibility of a summer camp at FeF in May or June of 2019.&lt;br /&gt;
&lt;br /&gt;
=December 2, 2018=&lt;br /&gt;
 Created a document outlining a framework for OSL - Open Source London and shared it on Google Docs; visited Charlie to discuss the document.&lt;br /&gt;
&lt;br /&gt;
=November 29, 2018=&lt;br /&gt;
 Introduced OSE 3D Printer and Prusa i3 3D printer to parents and students at a local French Immersion school - PAFI.  Designed and printed various models using Blender and Repetier.&lt;br /&gt;
&lt;br /&gt;
=November 28, 2018=&lt;br /&gt;
*Updated OSECartCoin with letters. &lt;br /&gt;
**[[File:PAFI.stl]]&lt;br /&gt;
**[[File:PAFI.fcstd]]&lt;br /&gt;
*Call with Marcin regarding &#039;&#039;&#039;[[LIA OSE Club]]&#039;&#039;&#039;&lt;br /&gt;
*Build from last week - [https://www.facebook.com/groups/398759490316633/permalink/963594880499755/]&lt;br /&gt;
&lt;br /&gt;
=November 27, 2018=&lt;br /&gt;
Wrote the suggested intro to Marcin&#039;s next TED talk: [[Marcin&#039;s Next TED Talk]]&lt;br /&gt;
=November 26, 2018=&lt;br /&gt;
Uploaded FeF Brick Press Fabrication video from July 29, 2011 - [https://youtu.be/LwW8sOUO00s]&lt;br /&gt;
&amp;lt;p&amp;gt;Uploaded video of the &amp;quot;Cluckaphone&amp;quot; - July 29, 2011 - [https://www.youtube.com/watch?v=PNOhZX7ftLk&amp;amp;feature=youtu.be]&lt;br /&gt;
Call with Marcin, Catarina and Charlie - OSE Planning&lt;br /&gt;
&lt;br /&gt;
=November 25, 2018=&lt;br /&gt;
Consultation about the establishment of an OSE Club at London International Academy and future directions for the development of OSE Clubs and Makerspaces.&lt;br /&gt;
&lt;br /&gt;
=November 24, 2018=&lt;br /&gt;
We made an OSE Cart Coin with FreeCAD &lt;br /&gt;
Here are the files for OSE Cart Coin v0.1:&lt;br /&gt;
[[File:OSECartCoin.fcstd]]&lt;br /&gt;
[[File:OSECartCoin.stl]]&lt;br /&gt;
Attended Marcin&#039;s presentation entitled &amp;quot;Education for the Open Source Economy&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=November 23, 2018=&lt;br /&gt;
Built a an OSE 3D printer at London International Academy&lt;br /&gt;
&lt;br /&gt;
=November 23-25=&lt;br /&gt;
Attended first OSE Professional Development workshop at London International Academy with Charles Freer, Pascal Gingras, Marcin and Catarina.&lt;br /&gt;
&lt;br /&gt;
=November 18-22= &lt;br /&gt;
Prepared for the visit of Marcin and Catarina to London.&lt;br /&gt;
&lt;br /&gt;
=November 17, 2018=&lt;br /&gt;
Conversation about OSE development with Charlie.  In particular, discussion about education and its relationship to developing the capacity to lead a meaningful and productive life. Reference to overlap of Baha&#039;i means and principles with those of the OSE - elimination of the extremes of wealth and poverty, building capabilities in a population, individual agency and initiative within a systematically evolving framework, etc.&lt;br /&gt;
&lt;br /&gt;
=November 16, 2018=&lt;br /&gt;
*Received US $5000 Shuttleworth Foundation Flash Grant&lt;br /&gt;
*Conference call with Marcin and Charles Freer regarding Marcin and Catarina&#039;s upcoming visit to London, Ontario&lt;br /&gt;
&lt;br /&gt;
=November 15, 2018=&lt;br /&gt;
Engineering Club students designed and printed a part to add to the Lyman Filament Extruder repository - a bracket for a rocker switch&lt;br /&gt;
&lt;br /&gt;
[[File:SwitchBracket2.png]]&lt;br /&gt;
[[File:Switchbase2.stl]]&lt;br /&gt;
[[File:SwitchBracket.FCStd]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=May, 2012=&lt;br /&gt;
Started project to build metric version of OSE CEB Press in Nanjing, China&lt;br /&gt;
&lt;br /&gt;
=April, 2012=&lt;br /&gt;
Began 3D Printing project in physics class at London International Academy&lt;br /&gt;
&lt;br /&gt;
=July, 2011-October, 2018=&lt;br /&gt;
Many things happened including severe neglect of the OSE wiki&lt;br /&gt;
Some highlights:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Regular incorporation of OSE concepts into classes and presentations 2011-present&lt;br /&gt;
*May, 2013 - started collaboration with Human InnovationPIE, a London non-profit organization focused on providing soft skills education for innovation.&lt;br /&gt;
*April, 2014 - Recognized in local paper for 3D Printer build with students&lt;br /&gt;
*July, 2015 - Asked to start STEM program at London International Academy further to success and popularity of 3D printer project&lt;br /&gt;
*September, 2015 - Began building Farmbot with students&lt;br /&gt;
*January, 2017 - Began teaching an Introduction to STEM course at Western University with significant OSE-based content.&lt;br /&gt;
&lt;br /&gt;
=July 16, 2011=&lt;br /&gt;
Arrived at Factor e Farm with Haydar Neal&lt;br /&gt;
&lt;br /&gt;
=March,  2011=&lt;br /&gt;
Saw TED Talk and wrote away to Marcin immediately&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
	<entry>
		<id>https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=204359</id>
		<title>William Neal Log</title>
		<link rel="alternate" type="text/html" href="https://wiki.opensourceecology.org/index.php?title=William_Neal_Log&amp;diff=204359"/>
		<updated>2019-11-28T19:20:13Z</updated>

		<summary type="html">&lt;p&gt;Wneal: /* Saturday November 2 - Friday November 22 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{RightTOC}}&lt;br /&gt;
&amp;lt;html&amp;gt;&amp;lt;iframe width=&amp;quot;600&amp;quot; height=&amp;quot;600&amp;quot; src=&amp;quot;https://osedev.org/wiki/William?start=2/1/2017&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/html&amp;gt;&lt;br /&gt;
=Saturday November 23 - Thursday November 28=&lt;br /&gt;
Workshop in Guyana. CSSP Project&lt;br /&gt;
[[OSE Linux]]&lt;br /&gt;
[http://www.ubuntu.com Ubuntu Linux Page]&lt;br /&gt;
[[New Page in the Wiki]]&lt;br /&gt;
&lt;br /&gt;
=Saturday November 2 - Friday November 22=&lt;br /&gt;
Worked on the [[OSE Prusa]] in order to support the establishment of a STEM centre in Trinidad and Tobago and to prepare for a workshop with the Government of Guyana.&lt;br /&gt;
#Items in a numbered list&lt;br /&gt;
#More Items&lt;br /&gt;
#Yet More&lt;br /&gt;
-Items in a bullet list&lt;br /&gt;
-More Items&lt;br /&gt;
-Yet More&lt;br /&gt;
&lt;br /&gt;
=Thursday October 24 - Friday November 1=&lt;br /&gt;
*Tested printing on the London replication of the D3D printer for the first time.&lt;br /&gt;
*Team of 9 students from Western university preparing a project around OSE - D3D replication + filament extruder replication + Chinese Reprap Prusa i3 reverse engineering.&lt;br /&gt;
=Sunday October 12 - Wednesday October 23=&lt;br /&gt;
*Updated some files used in the simple extruder build [https://wiki.opensourceecology.org/wiki/Simple_3D_Printer_Extruder#CAD here.]&lt;br /&gt;
&lt;br /&gt;
=Friday October 4 - Saturday October 11=&lt;br /&gt;
*Successfully tested D3D simple extruder based on Chinese Prusa i3.&lt;br /&gt;
*D3D challenge - Y axis end stop stopped working...&lt;br /&gt;
*Almost finished replicating first of two D3D printers in London Ontario.&lt;br /&gt;
*Preparing a D3D / Brushless motor workshop for the Guyana Prison Service. &lt;br /&gt;
*FreeCAD activity completed at Western University - varied response of individuals in the groups - the allocated time was too short. &lt;br /&gt;
=Friday September 27 - Thursday October 3=&lt;br /&gt;
*Continued work on D3D build.&lt;br /&gt;
*Experimenting with highly differentiated instruction unconstrained by government curricular concerns - our STEM club&#039;s three sections - Robotics / Computers and CAD / STEM projects have each gradually evolved over the last several weeks such that small groups of 1-4 students specialize on special tasks.&lt;br /&gt;
*Introduced FreeCAD to a group of junior youth from a local neighborhood. After about 40 minutes each group of two participants completed a motor rotor design.&lt;br /&gt;
*Second FreeCAD session with a group of 40 teacher candidate students at Western University&#039;s Althouse. Also used highly differentiated / interdisciplinary instruction with this group. After one hour and a half, most groups were able to generate several parts of a brushless motor and begin the process of parameterizing with a spreadsheet and creating an assembly.  Some trained engineers in the crowd generated excellent &amp;quot;propellers&amp;quot; for the motor using advanced features.&lt;br /&gt;
&lt;br /&gt;
=Tuesday, September 1 - Thursday, September 26=&lt;br /&gt;
*New School Year - over 40 students participating in our special STEM/Business/Arts program.&lt;br /&gt;
*Two sections of our program, STEM Projects and Computer Programming/CAD,  include OSE-related topics:&lt;br /&gt;
**Building 3D printers&lt;br /&gt;
**3D-printing&lt;br /&gt;
**OSE Motor design and fabrication&lt;br /&gt;
**Filament extruder&lt;br /&gt;
**CAD&lt;br /&gt;
*Building a 3D printer in collaboration with Bill Phelan, Vice President of Die-X Ltd.&lt;br /&gt;
*Remote collaboration with Branko Misovic in Holland.&lt;br /&gt;
*Preparing for a two-week 3D-printer build / open source hardware workshop in Guyana in November.&lt;br /&gt;
*Working on simple extruder for the D3D printer.&lt;br /&gt;
*Some 3D-printed parts for the D3D printer are not precise enough as they were printed with 1.0mm and 0.8mm nozzles.  We are switching to a 0.4mm nozzle and re-printing.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 27 - Monday September 1=&lt;br /&gt;
*Preparation for STEM camps in China. &lt;br /&gt;
*Travel to China.  Caught behind firewall - Internet was actually a large Intranet - difficult to post, communicate or access any useful sites. &lt;br /&gt;
*STEM Camp at Fujing Foreign language school - 10 days - 60 students, 1.5 hours daily - worked on FreeCAD and the OSE motor. &lt;br /&gt;
*Built OSE D3D printer with eight 9-11 year-old students (10 days, 3 hours daily) at EIC Education in Shenzhen.  The students assembled the axes and helped design some custom 3D-printed brackets for the frame which had to be made out of linear rail. The students learned FreeCAD and were able to design useful parts. Ganesh Ramsahai provided support in completing the build and configuration process. Presented the OSE D3D Shenzhen to the EIC Education Group with a half-hour overview and offer to provide remote support.&lt;br /&gt;
*STEM Camp at Zhangjiagang Foreign Language School in Jiangsu province. 30 students, 3 days, 6 hours per day.  Introduced FreeCAD and had the students design rotors and stators for the OSE brushless motor.&lt;br /&gt;
*Showed the TED talk to four different groups.&lt;br /&gt;
*Uploaded raw FreeCAD and stl files from the camps at Fujing Foreign Language School and Zhangjiagang Foreign Language School to [https://drive.google.com/open?id=1K7U8lEGqRgxwQf-WNX1Llbf-WE7LJCqL Google Drive]&lt;br /&gt;
*Uploaded [https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH custom files] generated during the build of the D3D 19.08 Shenzhen.&lt;br /&gt;
&lt;br /&gt;
=Saturday July 20 - Friday July 26=&lt;br /&gt;
LIA summer STEM camp continued with 38 different students from Shenzhen, China.  The students discussed, in the context of Marcin&#039;s TED Talk, the concept that the human mind, focused and in collaboration with others, has the power to make positive changes in society.  Design of covers and caps for the OSE radial motor. Photos from the STEM Camp activities are [https://photos.app.goo.gl/zcpKk8jaFcDon31K7 here].  Trying to find the USB where we collected all the FreeCAD files.  These will be posted ASAP.&lt;br /&gt;
&lt;br /&gt;
=Monday July 15 - Friday July 19=&lt;br /&gt;
LIA summer STEM camp with 23 students from Vietnam and China. OSE Motor project part II - designing, printing and testing a radial motor. The motor concept was based on the following video: [https://www.youtube.com/watch?v=JkwLpAAfBVI 3D-Printed Axial Brushless Motor for Drones] Students were presented with the concept and asked to design such a motor from scratch using two rotors with eight disc magnets each and two sets of six wire loops.&lt;br /&gt;
&lt;br /&gt;
=Wednesday July 10 - Sunday July 14=&lt;br /&gt;
Preparation for summer STEM Camps at LIA.  Prepared 3D printers.  Began replication of two D3D v19.06 units.&lt;br /&gt;
=Friday June 28 - Tuesday July 9= &lt;br /&gt;
Open Source Ecology Microfactory STEAM Camp&lt;br /&gt;
=Thursday June 27=&lt;br /&gt;
Titan Aero finally working better with 1.5 full turns + a little bit more for good measure - has not jammed all afternoon now - three parts printed.  Logistics for Microfatory STEAM Camp - rented a vehicle and contacted a few participants. A prototype of the OSE extruder has been nearly completed. The extruder gear is scheduled to arrive at Factor e Farm by tomorrow. Then it will be ready for testing.  [https://photos.app.goo.gl/fWUX8ynAdqcn6Fvs6 OSE D3D Extruder - Photo Album][https://drive.google.com/open?id=17BLyvyk1EbrMOhkCfeSwByAq86SemSLX Files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 25 - Wednesday June 26=&lt;br /&gt;
OSE D3D Extruder.  Worked on attaching extruder to X-axis. Ordered extruder motor gears to arrive at FeF on Friday. Printed out bracket 1 successfully. Working on large aluminium block and designing x-axis adapter.&lt;br /&gt;
=Monday June 24=&lt;br /&gt;
Discussion about design of OSE Power Electronics. Problem - transformers are expensive and inflexible. Solution - research the feasibility of creating a 120V buck converter.  Would it be sufficiently efficient and would it be feasible to build?  Here are some potential parts to use: [https://www.digikey.ca/product-detail/en/comchip-technology/GBPC5010W-G/641-1389-ND/2074854 1kV Recifier] [https://www.digikey.ca/product-detail/en/ixys/IXFX120N65X2/IXFX120N65X2-ND/5629498?utm_adgroup=&amp;amp;mkwid=sFMkJ49os&amp;amp;pcrid=311971049444&amp;amp;pkw=&amp;amp;pmt=&amp;amp;pdv=c&amp;amp;productid=5629498&amp;amp;slid=&amp;amp;gclid=EAIaIQobChMIgbDd1fSC4wIVwkOGCh1f8gijEAQYAyABEgJGffD_BwE 650V MOSFET].  One problem seems to be that there may be a high level of energy loss in the circuit....[https://www.digikey.com/product-detail/en/everlight-electronics-co-ltd/H11L1S-TA/1080-1201-1-ND/2675935 Optocoupler] (to isolate the Arduino)[http://fpec.ucf.edu/teaching/EEL%205245%20Lectures/Lecture13%20Chapter4_BoostandBuckBoost_CCM_Analysis.pdf Some background theory]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 19 - Sunday June 23=&lt;br /&gt;
DIY Buck Converter based on the following video (and others): https://www.youtube.com/watch?v=L5oeY53pE0E&amp;amp;t=162s. [https://photos.app.goo.gl/kkHUwBQtD7h48mhB6 Photos.] All four 3D printers are down.  A crucial piece of the extruder of the most reliable printer finally broke. CAD already done for the replacement part. Got the OSE D3D working again on Friday.  Ready for printing on Monday - will print replacement part for other printer.  Other 2 printers almost working...&lt;br /&gt;
&lt;br /&gt;
=Tuesday June 18=&lt;br /&gt;
[https://www.pythonpowerelectronics.com/ Python Power Electronics]&lt;br /&gt;
=Thursday June 13 - Monday June 17=&lt;br /&gt;
Buck Converters. OSE [[Power Electronics]] research. Arduino as controller of Power electronics - frequency issues / limitations. Scalability of Power electronics - can we add modular components to increase voltage, current, etc.?  &lt;br /&gt;
=Tuesday June 11 - Wednesday June 12=&lt;br /&gt;
Completed and sent CAD Drawings for OSE 3D Printer. Spent most of Wednesday working through a jam on the Titan Aero - it has jammed more in a few days than our other extruder has jammed in over three years.&lt;br /&gt;
=Monday June 10=&lt;br /&gt;
[https://drive.google.com/open?id=15T8RvnoHTTpCE67EQ1qFxhSbFp8B4yhH FreeCAD Drawings] for OSE 3D Printer. Note the use of parametric design in the CAD files - Spreadsheet values become variables used in constraint dimensions.&lt;br /&gt;
The following is my most recent FreeCAD Parametric Part Design and Drawing Workflow:[[FreeCAD Workflow]]&lt;br /&gt;
&lt;br /&gt;
=Wednesday June 5 - Sunday June 9=&lt;br /&gt;
[https://www.youtube.com/watch?v=CEhBN5_fO5o|DC-DC Buck Converters]&lt;br /&gt;
Power Supply: Transformer + Buck Converter + Ripple Smoothing Circuitry&lt;br /&gt;
=Tuesday June 4=&lt;br /&gt;
*[[Arduino Controlled Power Supply]] - ordered many components.&lt;br /&gt;
*Many electronic components specified in DIY articles and videos are now listed as obsolete.  Finding replacement parts is not easy. Case in point: LM338K Linear Voltage Regulators - Listed as obsolete on the Mouser website and selling for $91 or more on the Digi-key website.&lt;br /&gt;
*[https://www.eetimes.com/document.asp?doc_id=1333695# Article about obsolescence and demand and supply issues in the electronics industry]&lt;br /&gt;
&lt;br /&gt;
=Saturday June 1 - Monday June 3=&lt;br /&gt;
Reviewed [[OSE Design Guides]] Reviewed [[DIY Semiconductors]] Microfactory STEAM Camp Critical Path [[Arduino Controlled Power Supply]] Fabrication of aluminium blocks for hot end for OSE 3D printer extruder. Parametric modelling in FreeCAD.&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 28 - Friday May 31=&lt;br /&gt;
[[Halbach Array Brushless Motor]]&lt;br /&gt;
&lt;br /&gt;
=Monday May 27= &lt;br /&gt;
[https://www.youtube.com/watch?v=uOQk8SJso6Q How to Control an ESC with an Arduino] [https://photos.app.goo.gl/HMvWbigvuw3S26YG8 Test of the OSE Motor].&lt;br /&gt;
&lt;br /&gt;
=Friday May 24 - Sunday May 26= &lt;br /&gt;
Not all that much.&lt;br /&gt;
=Thursday May 23=&lt;br /&gt;
Thank you to Marcin and Catarina for a refreshing, enlightening and enjoyable visit to Factor e Farm and the Seed Ecohome. Returned to London.&lt;br /&gt;
=Wednesday May 22=&lt;br /&gt;
Skype appointment - 12pm Missouri time - friend in Colombia. Uploaded FreeCAD files for D3D v19.04 Power Plug Case to Wiki. [https://en.wikipedia.org/wiki/Buck_converter Buck Converter]&lt;br /&gt;
&lt;br /&gt;
=Tuesday May 21=&lt;br /&gt;
[https://www.powerelectronicsnews.com/problems-solutions/power-supply-design-tutorial Power Supply Design Tutorial] Edited the [https://docs.google.com/document/d/1_3t_97giFOtqJ4ExPZdYeVEilCRhMmu0IWLLpBCrG-0/edit?usp=sharing Video Script] &lt;br /&gt;
Contacted STEM people in Nigeria and Pennsylvania based on the OSE STEAM Camp posted in this [https://www.facebook.com/groups/822455171229260/ Facebook Forum]&lt;br /&gt;
Further communication with friends in Mexico regarding the STEAM camp. Contacted a friend of a friend in Kansas City - Baha&#039;i Community.&lt;br /&gt;
&lt;br /&gt;
=Monday May 20=&lt;br /&gt;
Posted Microfactory STEAM camp on several Facebook STEM/STEAM Education pages. [[The Living Curriculum]] [https://github.com/MarlinFirmware/Marlin/issues/8903 Marlin Bed Temperature Settings] Worked on the Titan-Aero extruder repairs. The two parts of the extruder tube must be fairly tight (but not too tight!) to avoid leakage.&lt;br /&gt;
&lt;br /&gt;
=Sunday May 19=&lt;br /&gt;
Printing ABS using the OSE D3D - Set the bed temperature to 83 and the nozzle temperature to 255.  After 5 minutes of printing, several layers were adhering well. Thermal runaway. Tried 80 and 244; thermal runaway again. Joined several online STEM/Education groups.&lt;br /&gt;
&lt;br /&gt;
=Saturday May 18=&lt;br /&gt;
[[OSE Revenue Generation]] - Grameen Bank / Social Business - [[OSE Curriculum]]&lt;br /&gt;
&lt;br /&gt;
=Friday May 17=&lt;br /&gt;
[[OSE STEM Camp Marketing Strategy]]&lt;br /&gt;
=Friday May 10 - Thursday May 16= &lt;br /&gt;
Preparation for trip to Factor e Farm - gathered supplies - PCB boards, glossy paper, wire, magnets, electronic components, hardware, etc. Arrival at Factor e Farm. Work on D3D v. 19.04: [Photos - OSE D3D v19.04 Build at FeF https://www.facebook.com/photo.php?fbid=10161819908970597&amp;amp;set=pcb.1063740287151880&amp;amp;type=3&amp;amp;theater&amp;amp;ifg=1]&lt;br /&gt;
 &lt;br /&gt;
=Friday April 12 - Thursday May 9=&lt;br /&gt;
[https://drive.google.com/open?id=1-DpgMCARsA5iz4JLZtUeP3SD4a3UrXhj OSE Motor Completed] - ready for testing - Open Source Chinese Prusa i3 Printer Extruder - Configured and began printing with OSE D3D - printing very well at the moment - Booked a flight to Kansas City - heading to Factor e Farm soon!&lt;br /&gt;
&lt;br /&gt;
=Monday March 4 - Thursday April 11=&lt;br /&gt;
FRC Robotics - Ryerson University, Western University. OSE Motor - students have made some progress: [https://drive.google.com/open?id=1n99XWM8KMwvnV-tCmcWjImsBG27ReRSc OSE Brushless Motor] Additional work on the [[Simple 3D Printer Extruder]]&lt;br /&gt;
&lt;br /&gt;
=Sunday March 3=&lt;br /&gt;
Completed the first model of the most difficult part to CAD in the extruder - the X-Axis bracket.  Will now print CAD files and measure their accuracy before making changes to the CAD parameters.  Hopefully this process will result in more accurate parts.&lt;br /&gt;
&lt;br /&gt;
=Friday March 1 - Saturday March 2 =&lt;br /&gt;
Further work on open sourcing Chinese Prusa i3 3D printer extruder.&lt;br /&gt;
&lt;br /&gt;
=Monday February 18 - Thursday February 28=&lt;br /&gt;
Began the process of open-sourcing our 3D printer extruder: [[Simple 3D Printer Extruder]] (see photos and CAD files in the 3D Printer Folder) &lt;br /&gt;
Started a new unit in Computer Engineering Technology class.  Two groups of students are working on OSE materials:  &lt;br /&gt;
#The OSE Collaborative Contest&lt;br /&gt;
#The OSE Filament Extruder&lt;br /&gt;
&lt;br /&gt;
=Saturday February 9-Sunday February 17=&lt;br /&gt;
Hosted a group of six STEM students from School of the Nations in Georgetown, Guyana. STEM Camp at London International Academy.  Introduced the concept of the OSE collaborative contest. Introductory FreeCAD activities. Introduced Python computer programming.  Printed out various parts for an open source brushless motor.  [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX Link to CAD Files] (see School of the Nations sub-folder)[[file:Rotor.jpg|200px]] [http://guyanachronicle.com/2019/02/17/nations-benefits-from-robotics-training-in-canada Article in Guyana Chronicle]&lt;br /&gt;
&lt;br /&gt;
=Wednesday February 6= &lt;br /&gt;
[[OSE Coopetition]].  Discussed wiki + part library + documentation of OSE Coopetition.&lt;br /&gt;
&lt;br /&gt;
=Monday February 4=&lt;br /&gt;
Uploaded version 0.1 of the OSE Collaborative Contest Rules to [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest]&lt;br /&gt;
=Wednesday January 30 - Sunday February 3=&lt;br /&gt;
FRC Build season.  [https://drive.google.com/drive/folders/1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH?usp=sharing Team 6162 Cap Alpaca FreeCAD files]&lt;br /&gt;
&lt;br /&gt;
=Tuesday January 29=&lt;br /&gt;
Collected FreeCAD files in a Google drive folder: [https://drive.google.com/open?id=1ikdLKij79Bbki5w1CprZXFbEXWGgmMFX OSE Collaborative Contest] &lt;br /&gt;
Summary of Nanjing group&#039;s schedule: [https://docs.google.com/document/d/1R-Dtu3kdZ0u8Qo5w3_vDuNEg5myr8mUmLjSpPOf-HoI/edit?usp=sharing | 2019 Winter Camp]&lt;br /&gt;
Here is some sample work from the FreeCAD workshop:&lt;br /&gt;
*[[File:ReyJessica.png|200px]]&lt;br /&gt;
*[[File:ZJHLSR.png|200px]]&lt;br /&gt;
&lt;br /&gt;
=Sunday January 27 - Monday January 28=&lt;br /&gt;
Discussed record keeping, file sharing and other skills for collaborative literacy. Created a sample page stub: [[Brushless Motor Design]].  Asked students to reflect on sessions learning FreeCAD.  Found that it is not necessary to learn a whole lot about FreeCAD in order to get students learning it.  Demonstrated two sample FreeCAD 0.17 design processes:&lt;br /&gt;
#Design a part like a motor adapter: body - sketch a circle - pad - sketch on a surface - pocket&lt;br /&gt;
#Design a sketch with constraints - some straight lines and some arcs closed in a loop with particular dimensions and angles.&lt;br /&gt;
After that, students were directed to Youtube videos that covered specific additional skills: &lt;br /&gt;
*Threading - inner and outer&lt;br /&gt;
*Polar patterns&lt;br /&gt;
Through this process, I learned how to do these skills from some students and was able to show other students the same, especially with polar patterns.&lt;br /&gt;
&lt;br /&gt;
=Sunday January, 20 - Saturday January 26, 2019=&lt;br /&gt;
Prepared for and welcomed 19 students from Jinling High School in China. Introduced the concept of the OSE Collaborative Contest.  Marcin spoke with the group over Jitsi on Thursday and on Saturday and proposed that the students participate in the OSE Collaborative Contest. It was well received despite the students&#039; fatigue from travel and skiing. Introduced FreeCAD and had students download and install it. Some computers do not immediately work with FreeCAD; hope that the problem may be solved. We plan to further discuss the students&#039; participation in the contest tomorrow and 3D print some of their early FreeCAD work on Monday. Created a link to LIA students&#039; FreeCAD work.  Currently the folder is being used for FRC preparation.  After the FRC robot is built, we are planning to transition to OSE-related work in this folder: [https://drive.google.com/open?id=1sXbaB1QUU57K9Q52ALTogS3kpI_XoCgH LIA OSE Club CAD Files]&lt;br /&gt;
&lt;br /&gt;
=Thursday January 10 - Saturday Jan 19, 2019=&lt;br /&gt;
Heaviest schedule of the year - January and February; progress slower during this time. Working on STEM Curriculum for FeF STEM Camps - [[Summer School 2019]].&lt;br /&gt;
&lt;br /&gt;
=Wed Jan 9, 2019=&lt;br /&gt;
*Use a presentation - template - make a copy - pass this to Heydar - document the simple 3D printing extruder for a low cost 3d printer - [https://docs.google.com/presentation/d/1_kUzO4eRCqrHVpqxSSTs17oLhtikTTyYe_1NxrTKlTI/edit#slide=id.g45ed589c64_0_0]&lt;br /&gt;
*Homework: Complete STEM Curriculum&lt;br /&gt;
&lt;br /&gt;
=January 2, 2019=&lt;br /&gt;
Ordered parts for a brushless motor to be constructed as part of the contest and part of the Computer Engineering Technology class at London International Academy.&lt;br /&gt;
In order to make the collaborative contest work, we will need to create a kit of parts to be easily shipped to participating schools.&lt;br /&gt;
&lt;br /&gt;
=December 24 2018-January 1, 2019=&lt;br /&gt;
Took a break. Reflected on plans for OSE London / OSE Club at London International Academy / OSE Collaborative Contest&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=December 23, 2018=&lt;br /&gt;
Defined particulars of [[OSE STEM Camps]].&lt;br /&gt;
&lt;br /&gt;
=December 22,2018=&lt;br /&gt;
[[William Conversation | Conversation with Marcin]]. Research on OSE Club Activities. Planning for winter semester courses&#039; links to OSE - Computer Engineering Technology and Computer Science. Plans to do the following in Computer Engineering Technology: build a brushless motor and ESC from scratch. Computer Science: Programming projects related to OSE - simulation program? Western University Introduction to STEM Class - offer the OSE Competition as a choice for a final project - help administer / judge / communicate / etc.&lt;br /&gt;
&lt;br /&gt;
=December 12-21, 2018=&lt;br /&gt;
Exams and marking - excellent ways to hinder educational progress. Discussed Canadian bill of materials with Russ Purvis. Discussed the upcoming OSE workshop in Prince George, BC currently in the planning phase. Several phone conversations with Charlie. Worked on some particulars for the upcoming OSE competition in January. Contacted a teacher in Iran to invite her to join the competition with her students. Sent a letter of reference to Russ with respect to hosting an OSE workshop.&lt;br /&gt;
&lt;br /&gt;
=December 8-11, 2018=&lt;br /&gt;
Spoke with Charlie about development of OSE workshops.  Spoke with Marcin and Catarina about the same. Updated Marcin about development of OSE club at London International Academy.  We now have plans to include at least four schools in our first design challenge - School of the Nations in Guyana, Fujing Foreign Language School in Shenzhen and Jinling School in Nanjing. Was approached by a friend to contact Makerspace managers in St. Thomas and Toronto. Arranged a meeting with the makerspace managers at Western University. OSE Marlin v18.10 works for printing with new printer. Successfully printed base layer of a file.  It seems that the extruder may have jammed.  Will check again as soon as possible. LIA students continue to develop their FreeCAD skills and are able to design parts in parallel according to a spacial plan and assemble them into a larger model. Installed OSE Linux on laptop now with a new old-school 1TcB hard drive. OSE Linux did not recognise the card reader; everything else seems to work very well. &amp;lt;strong&amp;gt;Note: Stepper motors on y axis of D3D became alarmingly hot after about 15 minutes of printing.&amp;lt;/strong&amp;gt; Perhaps this is a configuration issue; may need to resolve this before allowing the printer to do a full print.&lt;br /&gt;
&lt;br /&gt;
=December 7, 2018= &lt;br /&gt;
Using OSE Ubuntu on laptop with fried SSD. Internet has connection through ping but does not display pages in Chromium. D3D Marlin recent version from OSE website installed in printer. Autohome produces a collision of the z axis with the extruder as by default the z probe is off the plate.  Tried to move the y axis using various commands such as G0 Y40 and G1 Y40 all of which cause the Y axis to move until it hits the maximum physically possible position. Spoke with Johann Wong about the possibility of combining an OSE Makerspace skills (Arduino, CAD, etc.) + 3D printer workshop with Human Innovation PIE&#039;s soft skills innovation workshop through the London International Academy Foundation. Was using wrong Marlin file for D3D printer - will try correct one asap. Suggestions for D3D: use zip ties and clothespin springs for tensioning belts.  This has worked exceptionally well and reliably for our Chinese Prusa derivative; the belts have needed nearly no attention in three years.&lt;br /&gt;
&lt;br /&gt;
=December 6, 2018=&lt;br /&gt;
Was about to test print on OSE D3D when SSD crashed.  Did Ubuntu fry it?  Researching this.&lt;br /&gt;
&lt;br /&gt;
=December 5, 2018=&lt;br /&gt;
Introduced the OSE design challenge to OSE Club students at London International Academy.&lt;br /&gt;
&lt;br /&gt;
=December 4, 2018= &lt;br /&gt;
Held an informal Introduction to Arduino Workshop at London International Academy to help two grade 11 students with a project.  Spoke with Marcin about plans for the OSE design challenge, OSE club and possibility of a summer camp at FeF in May or June of 2019.&lt;br /&gt;
&lt;br /&gt;
=December 2, 2018=&lt;br /&gt;
 Created a document outlining a framework for OSL - Open Source London and shared it on Google Docs; visited Charlie to discuss the document.&lt;br /&gt;
&lt;br /&gt;
=November 29, 2018=&lt;br /&gt;
 Introduced OSE 3D Printer and Prusa i3 3D printer to parents and students at a local French Immersion school - PAFI.  Designed and printed various models using Blender and Repetier.&lt;br /&gt;
&lt;br /&gt;
=November 28, 2018=&lt;br /&gt;
*Updated OSECartCoin with letters. &lt;br /&gt;
**[[File:PAFI.stl]]&lt;br /&gt;
**[[File:PAFI.fcstd]]&lt;br /&gt;
*Call with Marcin regarding &#039;&#039;&#039;[[LIA OSE Club]]&#039;&#039;&#039;&lt;br /&gt;
*Build from last week - [https://www.facebook.com/groups/398759490316633/permalink/963594880499755/]&lt;br /&gt;
&lt;br /&gt;
=November 27, 2018=&lt;br /&gt;
Wrote the suggested intro to Marcin&#039;s next TED talk: [[Marcin&#039;s Next TED Talk]]&lt;br /&gt;
=November 26, 2018=&lt;br /&gt;
Uploaded FeF Brick Press Fabrication video from July 29, 2011 - [https://youtu.be/LwW8sOUO00s]&lt;br /&gt;
&amp;lt;p&amp;gt;Uploaded video of the &amp;quot;Cluckaphone&amp;quot; - July 29, 2011 - [https://www.youtube.com/watch?v=PNOhZX7ftLk&amp;amp;feature=youtu.be]&lt;br /&gt;
Call with Marcin, Catarina and Charlie - OSE Planning&lt;br /&gt;
&lt;br /&gt;
=November 25, 2018=&lt;br /&gt;
Consultation about the establishment of an OSE Club at London International Academy and future directions for the development of OSE Clubs and Makerspaces.&lt;br /&gt;
&lt;br /&gt;
=November 24, 2018=&lt;br /&gt;
We made an OSE Cart Coin with FreeCAD &lt;br /&gt;
Here are the files for OSE Cart Coin v0.1:&lt;br /&gt;
[[File:OSECartCoin.fcstd]]&lt;br /&gt;
[[File:OSECartCoin.stl]]&lt;br /&gt;
Attended Marcin&#039;s presentation entitled &amp;quot;Education for the Open Source Economy&amp;quot;&lt;br /&gt;
&lt;br /&gt;
=November 23, 2018=&lt;br /&gt;
Built a an OSE 3D printer at London International Academy&lt;br /&gt;
&lt;br /&gt;
=November 23-25=&lt;br /&gt;
Attended first OSE Professional Development workshop at London International Academy with Charles Freer, Pascal Gingras, Marcin and Catarina.&lt;br /&gt;
&lt;br /&gt;
=November 18-22= &lt;br /&gt;
Prepared for the visit of Marcin and Catarina to London.&lt;br /&gt;
&lt;br /&gt;
=November 17, 2018=&lt;br /&gt;
Conversation about OSE development with Charlie.  In particular, discussion about education and its relationship to developing the capacity to lead a meaningful and productive life. Reference to overlap of Baha&#039;i means and principles with those of the OSE - elimination of the extremes of wealth and poverty, building capabilities in a population, individual agency and initiative within a systematically evolving framework, etc.&lt;br /&gt;
&lt;br /&gt;
=November 16, 2018=&lt;br /&gt;
*Received US $5000 Shuttleworth Foundation Flash Grant&lt;br /&gt;
*Conference call with Marcin and Charles Freer regarding Marcin and Catarina&#039;s upcoming visit to London, Ontario&lt;br /&gt;
&lt;br /&gt;
=November 15, 2018=&lt;br /&gt;
Engineering Club students designed and printed a part to add to the Lyman Filament Extruder repository - a bracket for a rocker switch&lt;br /&gt;
&lt;br /&gt;
[[File:SwitchBracket2.png]]&lt;br /&gt;
[[File:Switchbase2.stl]]&lt;br /&gt;
[[File:SwitchBracket.FCStd]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=May, 2012=&lt;br /&gt;
Started project to build metric version of OSE CEB Press in Nanjing, China&lt;br /&gt;
&lt;br /&gt;
=April, 2012=&lt;br /&gt;
Began 3D Printing project in physics class at London International Academy&lt;br /&gt;
&lt;br /&gt;
=July, 2011-October, 2018=&lt;br /&gt;
Many things happened including severe neglect of the OSE wiki&lt;br /&gt;
Some highlights:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Regular incorporation of OSE concepts into classes and presentations 2011-present&lt;br /&gt;
*May, 2013 - started collaboration with Human InnovationPIE, a London non-profit organization focused on providing soft skills education for innovation.&lt;br /&gt;
*April, 2014 - Recognized in local paper for 3D Printer build with students&lt;br /&gt;
*July, 2015 - Asked to start STEM program at London International Academy further to success and popularity of 3D printer project&lt;br /&gt;
*September, 2015 - Began building Farmbot with students&lt;br /&gt;
*January, 2017 - Began teaching an Introduction to STEM course at Western University with significant OSE-based content.&lt;br /&gt;
&lt;br /&gt;
=July 16, 2011=&lt;br /&gt;
Arrived at Factor e Farm with Haydar Neal&lt;br /&gt;
&lt;br /&gt;
=March,  2011=&lt;br /&gt;
Saw TED Talk and wrote away to Marcin immediately&lt;/div&gt;</summary>
		<author><name>Wneal</name></author>
	</entry>
</feed>