Difference between revisions of "Filmetrics F50 (White Light)"
Jump to navigation
Jump to search
(update tool owner, update to NEMO) |
|||
Line 24: | Line 24: | ||
* Thin-film thickness optical measurements | * Thin-film thickness optical measurements | ||
+ | |||
+ | import matplotlib.pyplot as plt | ||
+ | |||
+ | # Data | ||
+ | x_values = [1, 2, 3, 4, 5] | ||
+ | y_values = [2, 4, 6, 8, 10] | ||
+ | |||
+ | # Plotting | ||
+ | plt.plot(x_values, y_values, label='Example Plot') | ||
+ | |||
+ | # Adding labels and title | ||
+ | plt.xlabel('X-axis label') | ||
+ | plt.ylabel('Y-axis label') | ||
+ | plt.title('Example Plot Title') | ||
+ | |||
+ | # Adding legend | ||
+ | plt.legend() | ||
+ | |||
+ | # Save the plot as an image file (optional) | ||
+ | plt.savefig('example_plot.png') | ||
+ | |||
+ | # Show the plot | ||
+ | plt.show() | ||
== Resources == | == Resources == |
Revision as of 16:41, 13 February 2024
Tool Name | Filmetrics F50 (White Light) |
---|---|
Instrument Type | Metrology |
Staff Manager | David Barth |
Lab Location | Bay 2 |
Tool Manufacturer | Filmetrics |
Tool Model | F50 |
NEMO Designation | MET-11 |
Lab Phone | XXXXX |
SOP Link | SOP |
Description
The Filmetrics F50 family of products can map film thickness as quickly as two points per second. A motorized R-Theta stage accepts standard and custom chucks for samples up to 200mm in diameter.
Map patterns can be polar, rectangular, or linear, or you can create your own with no limit on the number of measurement points. Dozens of pre-defined map patterns are supplied.
Applications
- Thin-film thickness optical measurements
import matplotlib.pyplot as plt
- Data
x_values = [1, 2, 3, 4, 5] y_values = [2, 4, 6, 8, 10]
- Plotting
plt.plot(x_values, y_values, label='Example Plot')
- Adding labels and title
plt.xlabel('X-axis label') plt.ylabel('Y-axis label') plt.title('Example Plot Title')
- Adding legend
plt.legend()
- Save the plot as an image file (optional)
plt.savefig('example_plot.png')
- Show the plot
plt.show()