matsci-parse 0.5.3 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +53 -1
- package/dist/main.js +463 -310
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -1 +1,53 @@
|
|
|
1
|
-
|
|
1
|
+
Here’s a clean README-style summary based strictly on your actual structure (no assumptions added).
|
|
2
|
+
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# matsci-parse
|
|
6
|
+
|
|
7
|
+
A TypeScript-based library and web toolset for parsing, transforming, and analyzing atomistic materials science data, including crystal structures, symmetry data, and common simulation file formats.
|
|
8
|
+
|
|
9
|
+
This project is written to be functional, allowing tree-shakability.
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
### Project overview
|
|
14
|
+
|
|
15
|
+
#### `io/`
|
|
16
|
+
|
|
17
|
+
Parsers and data models for multiple file formats:
|
|
18
|
+
|
|
19
|
+
- CIF
|
|
20
|
+
- VASP (POSCAR, CHGCAR)
|
|
21
|
+
- Quantum ESPRESSO (pw)
|
|
22
|
+
- Gaussian cube files
|
|
23
|
+
- XYZ
|
|
24
|
+
- XSF
|
|
25
|
+
- AiiDA structure objects
|
|
26
|
+
- Generic crystal and molecular structures
|
|
27
|
+
|
|
28
|
+
#### `math/`
|
|
29
|
+
|
|
30
|
+
Linear algebra and crystallographic geometry utilities:
|
|
31
|
+
|
|
32
|
+
- Matrix operations
|
|
33
|
+
- Coordinate transformations
|
|
34
|
+
- Lattice calculations
|
|
35
|
+
|
|
36
|
+
#### `symmetry/`
|
|
37
|
+
|
|
38
|
+
Symmetry and reciprocal space tools:
|
|
39
|
+
|
|
40
|
+
- Space group data and operations (using moyo-wasm)
|
|
41
|
+
|
|
42
|
+
#### `units/`
|
|
43
|
+
|
|
44
|
+
Unit systems and conversions:
|
|
45
|
+
|
|
46
|
+
- Length units
|
|
47
|
+
- Energy units
|
|
48
|
+
- Angle units
|
|
49
|
+
- General conversion utilities
|
|
50
|
+
|
|
51
|
+
---
|
|
52
|
+
|
|
53
|
+
### A frontend demo of some of the utilities possible is available (`webapp/`)
|