extrucal.sheet_extrusion

Module Contents

Functions

sheet_cal(width, thickness, l_speed, s_density)

Calculates the required throughput for sheets given the width,

sheet_table(width, thickness, s_density[, ...])

Generate a table containing the required screw RPM with respect to

sheet_plot(width, thickness, s_density[, ...])

Generate a plot containing the required screw RPM with respect to

extrucal.sheet_extrusion.sheet_cal(width, thickness, l_speed, s_density)[source]

Calculates the required throughput for sheets given the width, thickness, line speed, and solid polymer density

Parameters:
  • width (int or float) – Sheet width [mm]

  • thickness (int or float) – Sheet thickness [mm]

  • l_speed (int or float) – Line speed [mpm]

  • s_density (int or float) – Solid density of polymeric material [kg/m^3]

Returns:

throughput – required exturion throughput [kg/hr]

Return type:

float

Examples

>>> sheet_cal(width=1000, thickness=1, l_speed = 1, s_density=1000)
extrucal.sheet_extrusion.sheet_table(width, thickness, s_density, density_ratio=0.85, min_l_speed=1, max_l_speed=10, delta_l_speed=1, min_size=20, max_size=100, delta_size=20, depth_percent=0.05)[source]

Generate a table containing the required screw RPM with respect to line speed and extruder size

Parameters:
  • width (int or float) – Sheet width [mm]

  • thickness (int or float) – Sheet thickness [mm]

  • s_density (int or float) – Solid density of polymeric material [kg/m^3]

  • density_ratio (int or float) – Ratio b/w solid and melt density

  • min_l_speed (int or float) – Minimum line speed for calculation [mm] Default value is 1 (1mpm)

  • max_l_speed (int or float) – Maximum line speed for calculation [mpm] Default value is 10 (10mpm)

  • delta_l_speed (int or float) – Amount of increment in line speed for calculation [mpm] Default value is 1 (1mpm)

  • min_size (int or float) – Minimum extruder size for calculation [mm] Default value is 20 (20mm)

  • max_size (int or float) – Maximum extruder size for calculation [mm] Default value is 100 (100mm)

  • delta_size (int or float) – Amount of increment in extruder size for calculation [mm] Default value is 20 (20mm)

  • depth_percent (int or float) – Percentage of the depth of metering channel compared to extruder size Default value is 0.05

Returns:

table – dataframe containing the required screw RPM as a function of line speed and extruder size

Return type:

pandas.DataFrame

Examples

>>> sheet_table(width=1000, thickness=1, s_density=1000)
extrucal.sheet_extrusion.sheet_plot(width, thickness, s_density, density_ratio=0.85, min_l_speed=1, max_l_speed=10, delta_l_speed=1, min_size=20, max_size=100, delta_size=1, depth_percent=0.05)[source]

Generate a plot containing the required screw RPM with respect to line speed and extruder size

Parameters:
  • width (int or float) – Sheet width [mm]

  • thickness (int or float) – Sheet thickness [mm]

  • s_density (int or float) – Solid density of polymeric material [kg/m^3]

  • density_ratio (int or float) – Ratio b/w solid and melt density

  • min_l_speed (int or float) – Minimum line speed for calculation [mm] Default value is 0 (0mpm)

  • max_l_speed (int or float) – Maximum line speed for calculation [mpm] Default value is 10 (10mpm)

  • delta_l_speed (int or float) – Amount of increment in line speed for calculation [mpm] Default value is 1 (1mpm)

  • min_size (int or float) – Minimum extruder size for calculation [mm] Default value is 20 (20mm)

  • max_size (int or float) – Maximum extruder size for calculation [mm] Default value is 100 (100mm)

  • delta_size (int or float) – Amount of increment in extruder size for calculation [mm] Default value is 5 (5mm)

  • depth_percent (int or float) – Percentage of the depth of metering channel compared to extruder size Default value is 0.05

Returns:

plot – a line chart showing the required screw RPM as a function of line speed and extruder size

Return type:

altair.Chart object

Examples

>>> sheet_plot(width=1000, thickness=1, s_density=1000)