SLAA951A August   2020  – September 2020 MSP430FR5041 , MSP430FR5043 , MSP430FR6005 , MSP430FR6007 , MSP430FR6041 , MSP430FR6043 , MSP430FR6045 , MSP430FR6047

 

  1.   Trademarks
  2. 1Introduction
    1. 1.1 Transducer Placement
    2. 1.2 EVM430-FR6043 Configuration
  3. 2Test Results
  4. 3OpenSCAD 3D Test Fixture
  5. 4References
  6. 5Revision History

OpenSCAD 3D Test Fixture

OpenSCAD is a freely available CAD tool that enables parametric generation of 3D models, which can be exported for 3D printing. In order to generate the 3D printable model used in these experiments, cut and paste the openscad code shown below into OpenScad, Render the Design, Export to STL, and generate the gcode for your 3D printer, and 3D print the fixture.

TRANSDUCER_RADIUS=8.25;
HOLE_RADIUS=3;
LID_RADIUS=40;
LID_LENGTH=3;

difference(){   
    union(){
        translate ([0, 0, 0]) 
        rotate([0, 0, 0])
       cylinder (h = LID_LENGTH, r = LID_RADIUS);
    }
    union(){
        translate ([0, 0, 0]) 
        rotate([0, 0, 0])
        cylinder (h = LID_LENGTH, r = TRANSDUCER_RADIUS);
        translate ([0, 15, 0]) 
        rotate([0, 0, 0])
        cylinder (h = LID_LENGTH, r = HOLE_RADIUS);
        }
    }