Skip to content

Commit 3a8f6c0

Browse files
committed
docs: migrate research topics 0.37_Quantum_Photovoltaics_Solar_Paint to 0.6_Electroweak_Physics
1 parent 87c1cf2 commit 3a8f6c0

1,042 files changed

Lines changed: 277 additions & 472 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

research_uet/topics/0.37_Quantum_Photovoltaics_Solar_Paint/Code/Engine_Solar_Paint.py renamed to docs/topics/0.37_Quantum_Photovoltaics_Solar_Paint/Code/Engine_Solar_Paint.py

File renamed without changes.

research_uet/topics/0.37_Quantum_Photovoltaics_Solar_Paint/Code/Research_Fetch_Plasma_Properties.py renamed to docs/topics/0.37_Quantum_Photovoltaics_Solar_Paint/Code/Research_Fetch_Plasma_Properties.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ def build_constants_database():
201201
db = build_constants_database()
202202

203203
# Save to Data/03_Research
204-
base = Path(r"c:\Users\santa\Desktop\uet_harness\research_uet\topics\0.31_SpaceTime_Propulsion")
204+
base = Path(r"c:\Users\santa\Desktop\uet_harness\docs\topics\0.31_SpaceTime_Propulsion")
205205
data_path = base / "Data" / "03_Research"
206206
data_path.mkdir(parents=True, exist_ok=True)
207207

@@ -210,7 +210,7 @@ def build_constants_database():
210210
json.dump(db, f, indent=4, ensure_ascii=False)
211211

212212
# Also save a copy to meta/Data for cross-topic use
213-
meta_data = Path(r"c:\Users\santa\Desktop\uet_harness\research_uet\meta\Data")
213+
meta_data = Path(r"c:\Users\santa\Desktop\uet_harness\docs\meta\Data")
214214
meta_data.mkdir(parents=True, exist_ok=True)
215215
with open(meta_data / "plasma_natural_constants.json", "w", encoding="utf-8") as f:
216216
json.dump(db, f, indent=4, ensure_ascii=False)

research_uet/topics/0.37_Quantum_Photovoltaics_Solar_Paint/README.md renamed to docs/topics/0.37_Quantum_Photovoltaics_Solar_Paint/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ This topic focuses on the development of high-efficiency, sprayable energy-harve
2626

2727
## 🔬 Core Research Domains
2828
### 1. Solar Paint Engine
29-
* [Engine_Solar_Paint.py](file:///c:/Users/santa/Desktop/uet_harness/research_uet/topics/0.37_Quantum_Photovoltaics_Solar_Paint/Code/Engine_Solar_Paint.py) - Power density and harvesting simulation.
30-
* [Research_Fetch_Plasma_Properties.py](file:///c:/Users/santa/Desktop/uet_harness/research_uet/topics/0.37_Quantum_Photovoltaics_Solar_Paint/Code/Research_Fetch_Plasma_Properties.py) - Real-time plasma data for Hot Zone harvesting.
29+
* [Engine_Solar_Paint.py](file:///c:/Users/santa/Desktop/uet_harness/docs/topics/0.37_Quantum_Photovoltaics_Solar_Paint/Code/Engine_Solar_Paint.py) - Power density and harvesting simulation.
30+
* [Research_Fetch_Plasma_Properties.py](file:///c:/Users/santa/Desktop/uet_harness/docs/topics/0.37_Quantum_Photovoltaics_Solar_Paint/Code/Research_Fetch_Plasma_Properties.py) - Real-time plasma data for Hot Zone harvesting.
3131

3232
### 2. Vehicle & Industrial Harvesting
3333
* **Hull Harvesting**: Supporting Topic 0.31 for Stingray-class vehicles.

research_uet/topics/0.3_Cosmology_Hubble_Tension/Code/01_Engine/Engine_Cosmology.py renamed to docs/topics/0.3_Cosmology_Hubble_Tension/Code/01_Engine/Engine_Cosmology.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@
1313
from pathlib import Path
1414

1515
# Core Imports
16-
from research_uet.core.uet_base_solver import UETBaseSolver
17-
from research_uet.core.uet_master_equation import UETParameters
18-
from research_uet.core.uet_glass_box import UETPathManager
19-
from research_uet.core.uet_parameters import (
16+
from docs.core.uet_base_solver import UETBaseSolver
17+
from docs.core.uet_master_equation import UETParameters
18+
from docs.core.uet_glass_box import UETPathManager
19+
from docs.core.uet_parameters import (
2020
C,
2121
ALPHA_EM,
2222
INTEGRITY_KILL_SWITCH,
2323
H0,
2424
TAU_MEM_VACUUM,
2525
get_params
2626
)
27-
from research_uet.core.uet_observables import (
27+
from docs.core.uet_observables import (
2828
get_hubble_at_redshift,
2929
get_a0_at_redshift
3030
)
@@ -37,7 +37,7 @@
3737

3838

3939
# Standardized UET Root Path
40-
from research_uet import ROOT_PATH
40+
from docs import ROOT_PATH
4141
root_path = ROOT_PATH
4242

4343
class UETCosmologyEngine(UETBaseSolver):
@@ -74,7 +74,7 @@ def load_data(self) -> List[Dict]:
7474
# We can detect Topic Dir from the Result Dir or construct it.
7575

7676
# We can ask PathManager for the 'topic_root' if implemented, or assume standard layout.
77-
# Layout: research_uet/topics/ID/Data/03_Research/file.txt
77+
# Layout: docs/topics/ID/Data/03_Research/file.txt
7878

7979
# Using self.logger.output_dir which is .../Result/01_Engine/...
8080
# We can traverse up.
@@ -83,7 +83,7 @@ def load_data(self) -> List[Dict]:
8383
# Construct path safely:
8484
data_path = (
8585
root_path
86-
/ "research_uet"
86+
/ "docs"
8787
/ "topics"
8888
/ "0.3_Cosmology_Hubble_Tension"
8989
/ "Data"

research_uet/topics/0.3_Cosmology_Hubble_Tension/Code/02_Proof/Proof_Hubble_Resolution.py renamed to docs/topics/0.3_Cosmology_Hubble_Tension/Code/02_Proof/Proof_Hubble_Resolution.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
from pathlib import Path
99
import sys
1010
import os
11-
from research_uet import ROOT_PATH
11+
from docs import ROOT_PATH
1212

1313
root_path = ROOT_PATH
1414

1515

1616
# Setup local imports for Topic 0.3
17-
topic_path = root_path / "research_uet" / "topics" / "0.3_Cosmology_Hubble_Tension"
17+
topic_path = root_path / "docs" / "topics" / "0.3_Cosmology_Hubble_Tension"
1818
engine_path = topic_path / "Code" / "01_Engine"
1919
if str(engine_path) not in sys.path:
2020
sys.path.insert(0, str(engine_path))

research_uet/topics/0.3_Cosmology_Hubble_Tension/Code/03_Research/Research_CMB_Analysis.py renamed to docs/topics/0.3_Cosmology_Hubble_Tension/Code/03_Research/Research_CMB_Analysis.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,26 +19,26 @@
1919
current_path = Path(__file__).resolve()
2020
ROOT = None
2121
for parent in [current_path] + list(current_path.parents):
22-
if (parent / "research_uet").exists():
22+
if (parent / "docs").exists():
2323
ROOT = parent
2424
break
2525

2626
if ROOT:
2727
if str(ROOT) not in sys.path:
2828
sys.path.insert(0, str(ROOT))
2929
else:
30-
print("CRITICAL: research_uet root not found!")
30+
print("CRITICAL: docs root not found!")
3131
sys.exit(1)
3232

3333
# Setup local imports for Topic 0.3
34-
topic_path = ROOT / "research_uet" / "topics" / "0.3_Cosmology_Hubble_Tension"
34+
topic_path = ROOT / "docs" / "topics" / "0.3_Cosmology_Hubble_Tension"
3535
engine_path = topic_path / "Code" / "01_Engine"
3636
if str(engine_path) not in sys.path:
3737
sys.path.insert(0, str(engine_path))
3838

3939
try:
4040
from Engine_Cosmology import UETCosmologyEngine
41-
from research_uet.core.uet_glass_box import UETPathManager, UETMetricLogger
41+
from docs.core.uet_glass_box import UETPathManager, UETMetricLogger
4242
except ImportError as e:
4343
print(f"CRITICAL SETUP ERROR: {e}")
4444
sys.exit(1)
@@ -184,7 +184,7 @@ def test_cmb_peaks():
184184

185185
# Try import viz if path valid
186186
try:
187-
from research_uet.core import uet_viz
187+
from docs.core import uet_viz
188188
except:
189189
pass
190190

@@ -196,7 +196,7 @@ def test_cmb_peaks():
196196
)
197197
data_dir = (
198198
ROOT
199-
/ "research_uet"
199+
/ "docs"
200200
/ "topics"
201201
/ "0.3_Cosmology_Hubble_Tension"
202202
/ "Data"

research_uet/topics/0.3_Cosmology_Hubble_Tension/Code/03_Research/Research_Dark_Energy.py renamed to docs/topics/0.3_Cosmology_Hubble_Tension/Code/03_Research/Research_Dark_Energy.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22
from pathlib import Path
33
import sys
44
import os
5-
from research_uet import ROOT_PATH
5+
from docs import ROOT_PATH
66

77
root_path = ROOT_PATH
88

99
# Setup local imports for Topic 0.3
10-
topic_path = root_path / "research_uet" / "topics" / "0.3_Cosmology_Hubble_Tension"
10+
topic_path = root_path / "docs" / "topics" / "0.3_Cosmology_Hubble_Tension"
1111
engine_path = topic_path / "Code" / "01_Engine"
1212
if str(engine_path) not in sys.path:
1313
sys.path.insert(0, str(engine_path))
1414

1515
try:
1616
from Engine_Cosmology import UETCosmologyEngine
17-
from research_uet.core.uet_glass_box import UETPathManager
17+
from docs.core.uet_glass_box import UETPathManager
1818
except ImportError as e:
1919
print(f"CRITICAL SETUP ERROR: {e}")
2020
sys.exit(1)

research_uet/topics/0.3_Cosmology_Hubble_Tension/Code/03_Research/Research_Hubble_Comparison.py renamed to docs/topics/0.3_Cosmology_Hubble_Tension/Code/03_Research/Research_Hubble_Comparison.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
import sys
1313
from pathlib import Path
14-
from research_uet import ROOT_PATH
14+
from docs import ROOT_PATH
1515

1616
root_path = ROOT_PATH
1717

@@ -25,7 +25,7 @@
2525
TENSION_SIGMA = 4.8 # Statistical significance of tension
2626

2727
# Setup local imports for Topic 0.3
28-
topic_path = root_path / "research_uet" / "topics" / "0.3_Cosmology_Hubble_Tension"
28+
topic_path = root_path / "docs" / "topics" / "0.3_Cosmology_Hubble_Tension"
2929
engine_path = topic_path / "Code" / "01_Engine"
3030
if str(engine_path) not in sys.path:
3131
sys.path.insert(0, str(engine_path))
@@ -38,7 +38,7 @@
3838

3939

4040
# Standardized UET Root Path
41-
from research_uet import ROOT_PATH
41+
from docs import ROOT_PATH
4242

4343
root_path = ROOT_PATH
4444

research_uet/topics/0.3_Cosmology_Hubble_Tension/Code/03_Research/Research_highz_galaxies.py renamed to docs/topics/0.3_Cosmology_Hubble_Tension/Code/03_Research/Research_highz_galaxies.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@
1818
import os
1919
import sys
2020
from pathlib import Path
21-
from research_uet import ROOT_PATH
21+
from docs import ROOT_PATH
2222

2323
root_path = ROOT_PATH
2424

2525

2626
# Setup local imports for Topic 0.3 and Topic 0.1
27-
topic_path = root_path / "research_uet" / "topics" / "0.3_Cosmology_Hubble_Tension"
27+
topic_path = root_path / "docs" / "topics" / "0.3_Cosmology_Hubble_Tension"
2828
engine_path = topic_path / "Code" / "01_Engine"
2929
galaxy_engine_path = (
30-
root_path / "research_uet" / "topics" / "0.1_Galaxy_Rotation_Problem" / "Code" / "01_Engine"
30+
root_path / "docs" / "topics" / "0.1_Galaxy_Rotation_Problem" / "Code" / "01_Engine"
3131
)
3232

3333
if str(engine_path) not in sys.path:
@@ -38,14 +38,14 @@
3838
try:
3939
from Engine_Cosmology import UETCosmologyEngine
4040
from Engine_Galaxy_V3 import UETGalaxyEngine, GalaxyParams
41-
from research_uet.core.uet_parameters import G_GALACTIC as G_astro
41+
from docs.core.uet_parameters import G_GALACTIC as G_astro
4242
except ImportError as e:
4343
print(f"CRITICAL SETUP ERROR: {e}")
4444
sys.exit(1)
4545

4646

4747
# Standardized UET Root Path
48-
from research_uet import ROOT_PATH
48+
from docs import ROOT_PATH
4949

5050
root_path = ROOT_PATH
5151

@@ -90,7 +90,7 @@ def simulate_highz_prediction(z_target=5.0):
9090

9191
# Updated to use UETPathManager for output
9292
try:
93-
from research_uet.core.uet_glass_box import UETPathManager
93+
from docs.core.uet_glass_box import UETPathManager
9494

9595
output_dir = UETPathManager.get_result_dir(
9696
topic_id="0.3_Cosmology_Hubble_Tension",

research_uet/topics/0.3_Cosmology_Hubble_Tension/Code/03_Research/run_cosmo_experiment.py renamed to docs/topics/0.3_Cosmology_Hubble_Tension/Code/03_Research/run_cosmo_experiment.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616

1717
# --- ROBUST PATH FINDER (5x4 Grid Standard) ---
1818
_root = Path(__file__).resolve().parent
19-
while _root.name != 'research_uet' and _root.parent != _root:
19+
while _root.name != 'docs' and _root.parent != _root:
2020
_root = _root.parent
21-
if _root.name == 'research_uet':
21+
if _root.name == 'docs':
2222
sys.path.insert(0, str(_root.parent))
23-
from research_uet import ROOT_PATH
23+
from docs import ROOT_PATH
2424
root_path = ROOT_PATH
2525
else:
2626
print("CRITICAL: Root path not found.")
@@ -32,7 +32,7 @@
3232
# Import Engine
3333
engine_path = (
3434
root_path
35-
/ "research_uet"
35+
/ "docs"
3636
/ "topics"
3737
/ "0.3_Cosmology_Hubble_Tension"
3838
/ "Code"
@@ -49,14 +49,14 @@
4949
print(f"CRITICAL ERROR: Could not import Cosmology Engine: {e}")
5050
sys.exit(1)
5151

52-
from research_uet.core.uet_glass_box import UETPathManager
52+
from docs.core.uet_glass_box import UETPathManager
5353

5454
import csv
5555
import os
5656

5757

5858
# Standardized UET Root Path
59-
from research_uet import ROOT_PATH
59+
from docs import ROOT_PATH
6060

6161
root_path = ROOT_PATH
6262

0 commit comments

Comments
 (0)