1 / 19

Bruce Mayer, PE Licensed Electrical & Mechanical Engineer BMayer@ChabotCollege

Engineering 10. Chp.10 Computer Tools. Bruce Mayer, PE Licensed Electrical & Mechanical Engineer BMayer@ChabotCollege.edu. Mr. Huezo’s Chevy 350 CID Engine. Engineering Software. Our Guest Speakers have Mentioned Several SPECIALIZED Computer Tools Used by Engineers Pro-E (CAD)

Télécharger la présentation

Bruce Mayer, PE Licensed Electrical & Mechanical Engineer BMayer@ChabotCollege

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Engineering 10 Chp.10 Computer Tools Bruce Mayer, PE Licensed Electrical & Mechanical EngineerBMayer@ChabotCollege.edu

  2. Mr. Huezo’s Chevy 350 CID Engine

  3. Engineering Software • Our Guest Speakers have Mentioned Several SPECIALIZED Computer Tools Used by Engineers • Pro-E (CAD) • AutoCAD (CAD) • MATLAB • ANSYS FEA • MicroStation XM(CAD)

  4. Chabot Engineering Software • Chabot Engineering Students Learn TWO pieces of special Software MATLAB AutoCAD • MATLAB is a MATH-Processor • AutoCAD is a BLUEPRINT-Processor

  5. MATLAB Environment • TWO Interaction Modes • INTERACTIVE • Type in the COMMAND WINDOW • Often Called a Command-Window “Session” • Interaction is NOT Saved to Disk • STORED → Two Types • SCRIPT Files • FUNCTION Files

  6. Command Window Session Typing Occurs Here

  7. Example Cmd Window Session >> %Use MATLAB As Calculator >> 17*19 ans = 323 >> 77/19 -4.3 ans = -0.2474 >> 64^(1/3) + 32^0.2 ans = 6 >> (7+11)*2.5 ans = 45 >> L = 14.4 L = 14.4000 >> W = 13.3 W = 13.3000 >> Area = L*W Area = 191.5200 Time For Live Demo

  8. A simple MATLAB File % Bruce Mayer, PE % ENGR10 Demo * 18Oct09 % file = E10_Demo_0910.m % % Define Anon Fcn E10fcn = @(x) exp(x/7)-5*cos(x) % % plot the fcn fplot(E10fcn, [0 10]),grid % % find roots between 0-10 R1 = fzero(E10fcn, 2) R2 = fzero(E10fcn, 5) R3 = fzero(E10fcn, 7)

  9. The Function Graph

  10. Electric-DiPole E-Field Visualization • E-Field Governing Equation

  11. The Distance Calcs • Using Pythagorean Theorem

  12. Meshc Plot MeshGrid

  13. surf Plot by MeshGrid

  14. % Bruce Mayer, PE * 15Oct09 * ENGR25 % file = Prob5_57_Point_Charges_meshgrid_Plot_0910.m % Surface Plot eField from two Point Charges % % CLEAR out any previous runs clear % The Constant Parameters q1 = 2e-10; q2 = 4e-10; % in Coulombs epsilon = 8.854e-12; % in Farad/m % % Note the distances, r1 & r2, to any point(x,y) in the field by pythagorus % * r1 = sqrt((x-0.3)^2 + y^2) % * r2 = sqrt((x+0.3)^2 + y^2) % % Construct a 50x50 mesh [X Y] = meshgrid(-0.25:0.010:0.25); % % find r1 & r2 by pythagorus and array-ops r1 = sqrt((X-0.3).^2 +Y.^2); % note dots used with array operation r2 = sqrt((X-(-0.3)).^2 +Y.^2); % note dots used with array operation % use vectors r1 & r2, and array ops to find V V = (1/(4*pi*epsilon))*(q1./r1 +q2./r2); % surf(X,Y,V), xlabel('X-distance'), ylabel('Y-distance'),... zlabel('Elect. Potential (V)'), title('2 Point-Charges Electical Field'),... grid on % disp('Showing SURF Plot - Hit ANY KEY to continue') pause meshc(X,Y,V), , xlabel('X-distance'), ylabel('Y-distance'),... zlabel('Elect. Potential (V)'), title('2 Point-Charges Electical Field'),... grid on disp('Showing meshC Plot - Hit ANY KEY to continue') pause meshz(X,Y,V), , xlabel('X-distance'), ylabel('Y-distance'),... zlabel('Elect. Potential (V)'), title('2 Point-Charges Electical Field'),... grid on The MeshGrid Plot

  15. 5 inches AutoCAD Demo • Make 2D & 3D CAD Drawing for FrontView

  16. Classic “BluePrint”

  17. 3D Representation

  18. AutoCAD 3D Demonstration E10_Pipe_Support_3D_0910.dwg

  19. All Done for Today MATLABKleinBottle

More Related