Alps-mp-o1.mp2

Instead of writing alps-mp-o1.mp2 in your scripts, use job arrays:

export OUTPUT="alps-mp-$SLURM_ARRAY_TASK_ID-o1.mp2"

This prevents overwriting.

If you see "alps-mp-o1.mp2" in your device's "About Phone" section, it means your device is not a major flagship brand (like Samsung or Google). Instead, it is a device built on a MediaTek (MTK) reference platform. alps-mp-o1.mp2

Here is the breakdown of the name:

The Takeaway: You are likely using a "White Label" phone (brands like Doogee, Ulefone, Oukitel, or unbranded generic devices) running a generic MediaTek driver set. Instead of writing alps-mp-o1


Use a script to extract key data:

import re
with open('alps-mp-o1.mp2', 'r') as f:
    for line in f:
        if 'MP2 correlation energy' in line:
            energy = re.findall(r"[-+]?\d*\.\d+|\d+", line)[0]
            print(f"Final MP2 energy: energy Ha")
Scroll to Top