Raw data for paper 'In-melt electron analysis to accelerate process exploration of ceramics: electron beam melting of TiB2'
Description
The raw data used for in-melt electron analysis (IMEA) approach. The calibration files of detectors are in https://github.com/HuotianZhang/Find-stairs def __init__(self, file): wav = wavfile.read(file) channels = wav[1] # Analog data self.s0 = np.array(channels[:, 0]) self.s1 = np.array(channels[:, 1]) self.s2 = np.array(channels[:, 2]) self.s3 = np.array(channels[:, 3]) # Position data position_scale_factor = WORKSPACE_DIAMETER / 2**16 # 16-bit integer encodes positions in workspace self.x = np.array(channels[:, -4]) * position_scale_factor / 1000 # Convert to mm self.y = np.array(channels[:, -3]) * position_scale_factor / 1000 # Convert to mm