rubycond_of 0.2.1__tar.gz → 0.2.3__tar.gz
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.
- {rubycond_of-0.2.1 → rubycond_of-0.2.3}/PKG-INFO +1 -1
- {rubycond_of-0.2.1 → rubycond_of-0.2.3}/pyproject.toml +1 -1
- {rubycond_of-0.2.1 → rubycond_of-0.2.3}/rubycond_OF/example/example_use_of.py +28 -1
- {rubycond_of-0.2.1 → rubycond_of-0.2.3}/rubycond_OF/model/OF_Model.py +20 -11
- {rubycond_of-0.2.1 → rubycond_of-0.2.3}/rubycond_OF/rubycond_OF.py +11 -4
- {rubycond_of-0.2.1 → rubycond_of-0.2.3}/rubycond_OF/view/OF_View.py +13 -11
- {rubycond_of-0.2.1 → rubycond_of-0.2.3}/rubycond_OF/view/OF_about.py +3 -3
- rubycond_of-0.2.3/rubycond_OF/view/manual.pdf +0 -0
- rubycond_of-0.2.1/rubycond_OF/view/manual.pdf +0 -0
- {rubycond_of-0.2.1 → rubycond_of-0.2.3}/README.md +0 -0
- {rubycond_of-0.2.1 → rubycond_of-0.2.3}/rubycond_OF/example/Ruby_example.dat +0 -0
- {rubycond_of-0.2.1 → rubycond_of-0.2.3}/rubycond_OF/view/logo_CP_Scaled.png +0 -0
- {rubycond_of-0.2.1 → rubycond_of-0.2.3}/rubycond_OF/view/logo_IMPMC_Scaled.png +0 -0
|
@@ -1,8 +1,35 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
"""
|
|
3
3
|
|
|
4
|
+
Title: Rubycond_OF: tool for opening data files in the most common formats
|
|
4
5
|
|
|
5
|
-
|
|
6
|
+
Rubycond: Python software to determine pressure in diamond anvil cell experiments by Ruby and Samarium luminescence.
|
|
7
|
+
|
|
8
|
+
Version 0.2.0
|
|
9
|
+
Release 260301
|
|
10
|
+
|
|
11
|
+
Author:
|
|
12
|
+
|
|
13
|
+
Yiuri Garino:
|
|
14
|
+
|
|
15
|
+
Copyright (c) 2023-2026 Yiuri Garino
|
|
16
|
+
|
|
17
|
+
Download:
|
|
18
|
+
https://github.com/CelluleProjet/Rubycond_of
|
|
19
|
+
|
|
20
|
+
Contacts:
|
|
21
|
+
|
|
22
|
+
Yiuri Garino
|
|
23
|
+
yiuri.garino@cnrs.fr
|
|
24
|
+
|
|
25
|
+
Silvia Boccato
|
|
26
|
+
silvia.boccato@cnrs.fr
|
|
27
|
+
|
|
28
|
+
License: GPLv3
|
|
29
|
+
|
|
30
|
+
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
|
|
31
|
+
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
32
|
+
You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
6
33
|
|
|
7
34
|
"""
|
|
8
35
|
|
|
@@ -1,15 +1,29 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
"""
|
|
3
3
|
|
|
4
|
-
Title:
|
|
4
|
+
Title: Rubycond_OF: tool for opening data files in the most common formats
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
Rubycond: Python software to determine pressure in diamond anvil cell experiments by Ruby and Samarium luminescence.
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
Version 0.2.0
|
|
9
|
+
Release 260301
|
|
9
10
|
|
|
10
|
-
|
|
11
|
+
Author:
|
|
11
12
|
|
|
12
|
-
|
|
13
|
+
Yiuri Garino:
|
|
14
|
+
|
|
15
|
+
Copyright (c) 2023-2026 Yiuri Garino
|
|
16
|
+
|
|
17
|
+
Download:
|
|
18
|
+
https://github.com/CelluleProjet/Rubycond_of
|
|
19
|
+
|
|
20
|
+
Contacts:
|
|
21
|
+
|
|
22
|
+
Yiuri Garino
|
|
23
|
+
yiuri.garino@cnrs.fr
|
|
24
|
+
|
|
25
|
+
Silvia Boccato
|
|
26
|
+
silvia.boccato@cnrs.fr
|
|
13
27
|
|
|
14
28
|
License: GPLv3
|
|
15
29
|
|
|
@@ -30,19 +44,14 @@ def reset():
|
|
|
30
44
|
get_ipython().run_line_magic('reset','-sf')
|
|
31
45
|
print("Running interactively")
|
|
32
46
|
print()
|
|
33
|
-
terminal = False
|
|
34
47
|
else:
|
|
35
48
|
print("Running in terminal")
|
|
36
49
|
print()
|
|
37
|
-
terminal = True
|
|
38
50
|
|
|
39
51
|
if __name__ == '__main__':
|
|
40
52
|
reset()
|
|
41
53
|
|
|
42
|
-
|
|
43
|
-
from pathlib import Path
|
|
44
|
-
import numpy as np
|
|
45
|
-
import matplotlib.pyplot as plt
|
|
54
|
+
|
|
46
55
|
import os
|
|
47
56
|
from datetime import datetime
|
|
48
57
|
from PyQt5 import QtWidgets
|
|
@@ -3,20 +3,27 @@
|
|
|
3
3
|
|
|
4
4
|
Title: Rubycond_OF: tool for opening data files in the most common formats
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
Rubycond: Python software to determine pressure in diamond anvil cell experiments by Ruby and Samarium luminescence.
|
|
7
7
|
|
|
8
8
|
Version 0.2.0
|
|
9
9
|
Release 260301
|
|
10
10
|
|
|
11
11
|
Author:
|
|
12
12
|
|
|
13
|
-
Yiuri Garino
|
|
14
|
-
yiuri.garino@cnrs.fr
|
|
13
|
+
Yiuri Garino:
|
|
15
14
|
|
|
16
15
|
Copyright (c) 2023-2026 Yiuri Garino
|
|
17
16
|
|
|
18
17
|
Download:
|
|
19
|
-
https://github.com/CelluleProjet/
|
|
18
|
+
https://github.com/CelluleProjet/Rubycond_of
|
|
19
|
+
|
|
20
|
+
Contacts:
|
|
21
|
+
|
|
22
|
+
Yiuri Garino
|
|
23
|
+
yiuri.garino@cnrs.fr
|
|
24
|
+
|
|
25
|
+
Silvia Boccato
|
|
26
|
+
silvia.boccato@cnrs.fr
|
|
20
27
|
|
|
21
28
|
License: GPLv3
|
|
22
29
|
|
|
@@ -1,22 +1,29 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
"""
|
|
3
3
|
|
|
4
|
-
Title:
|
|
4
|
+
Title: Rubycond_OF: tool for opening data files in the most common formats
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
Rubycond: Python software to determine pressure in diamond anvil cell experiments by Ruby and Samarium luminescence.
|
|
7
7
|
|
|
8
8
|
Version 0.2.0
|
|
9
9
|
Release 260301
|
|
10
10
|
|
|
11
11
|
Author:
|
|
12
12
|
|
|
13
|
-
Yiuri Garino
|
|
14
|
-
yiuri.garino@cnrs.fr
|
|
13
|
+
Yiuri Garino:
|
|
15
14
|
|
|
16
15
|
Copyright (c) 2023-2026 Yiuri Garino
|
|
17
16
|
|
|
18
17
|
Download:
|
|
19
|
-
https://github.com/CelluleProjet/
|
|
18
|
+
https://github.com/CelluleProjet/Rubycond_of
|
|
19
|
+
|
|
20
|
+
Contacts:
|
|
21
|
+
|
|
22
|
+
Yiuri Garino
|
|
23
|
+
yiuri.garino@cnrs.fr
|
|
24
|
+
|
|
25
|
+
Silvia Boccato
|
|
26
|
+
silvia.boccato@cnrs.fr
|
|
20
27
|
|
|
21
28
|
License: GPLv3
|
|
22
29
|
|
|
@@ -37,20 +44,15 @@ def reset():
|
|
|
37
44
|
get_ipython().run_line_magic('reset','-sf')
|
|
38
45
|
print("Running interactively")
|
|
39
46
|
print()
|
|
40
|
-
terminal = False
|
|
41
47
|
else:
|
|
42
48
|
print("Running in terminal")
|
|
43
49
|
print()
|
|
44
|
-
terminal = True
|
|
45
50
|
|
|
46
51
|
if __name__ == '__main__':
|
|
47
52
|
reset()
|
|
48
53
|
|
|
49
|
-
import configparser as cp
|
|
50
|
-
from pathlib import Path
|
|
51
54
|
import numpy as np
|
|
52
55
|
import matplotlib.pyplot as plt
|
|
53
|
-
from matplotlib.lines import Line2D
|
|
54
56
|
from matplotlib.backend_bases import MouseEvent
|
|
55
57
|
from datetime import datetime
|
|
56
58
|
import sys
|
|
@@ -61,7 +63,7 @@ try:
|
|
|
61
63
|
except ImportError:
|
|
62
64
|
from io import StringIO
|
|
63
65
|
|
|
64
|
-
from PyQt5 import QtWidgets, QtCore
|
|
66
|
+
from PyQt5 import QtWidgets, QtCore
|
|
65
67
|
from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg as FigureCanvas
|
|
66
68
|
from matplotlib.backends.backend_qt5agg import NavigationToolbar2QT as NavigationToolbar
|
|
67
69
|
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
Title: Rubycond_OF: tool for opening data files in the most common formats
|
|
5
5
|
|
|
6
|
-
Rubycond:
|
|
6
|
+
Rubycond: Python software to determine pressure in diamond anvil cell experiments by Ruby and Samarium luminescence.
|
|
7
7
|
|
|
8
8
|
Version 0.2.0
|
|
9
9
|
Release 260301
|
|
@@ -98,8 +98,8 @@ along with this program. If not, see <a href="https://www.gnu.org/licenses/">ht
|
|
|
98
98
|
<h3>Version {self.version} Relese {self.release}
|
|
99
99
|
<br>
|
|
100
100
|
<table><tr><td style="padding-left: 1.5em;">
|
|
101
|
-
<a href="{self.url_github}">
|
|
102
|
-
<a href="{self.url_manual_pdf}">
|
|
101
|
+
<a href="{self.url_github}">Online manual</a></tr>
|
|
102
|
+
<br><a href="{self.url_manual_pdf}">Open pdf manual</a>
|
|
103
103
|
</h3></td></tr></table>
|
|
104
104
|
|
|
105
105
|
<br>
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|