File:Square Lead Screw Efficiency.svg

Page contents not supported in other languages.
This is a file from the Wikimedia Commons
From Wikipedia, the free encyclopedia

Original file(SVG file, nominally 540 × 360 pixels, file size: 43 KB)

Summary

Description
English: Plot of lead screw effeciency against lead angle for a square thread lead screw at different coefficients of friction
Date
Source Own work
Author Bob Clemintime
  1. Code to create plot

import matplotlib.pyplot as plt

  1. Create plot object

fig, ax = plt.subplots()

  1. Define plot layout

ax.set_xlabel('Lead angle (\u00B0)') ax.set_ylabel('Efficiency (%)')

  1. Define plot

friction_list = [0.01, 0.02, 0.05, 0.1, 0.15, 0.2, 0.25] for u in friction_list:

   x = np.arange(0.5, 75, 0.5)
   rad_x = np.radians(x)
   y = ((1 - u*np.tan(rad_x))/(1 + u*(1/np.tan(rad_x))))*100
   ax.plot(x,y)

ax.legend(friction_list, title='COF')

Licensing

I, the copyright holder of this work, hereby publish it under the following license:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International license.
You are free:
  • to share – to copy, distribute and transmit the work
  • to remix – to adapt the work
Under the following conditions:
  • attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
  • share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.

Captions

Plot of lead screw effeciency against lead angle for a square thread lead screw at different coefficients of friction

Items portrayed in this file

depicts

2 December 2020

image/svg+xml

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current00:34, 3 December 2020Thumbnail for version as of 00:34, 3 December 2020540 × 360 (43 KB)Bob ClemintimeUploaded own work with UploadWizard
The following pages on the English Wikipedia use this file (pages on other projects are not listed):

Global file usage

The following other wikis use this file:

Metadata