Skip to content

Commit 6ea87d0

Browse files
committed
docs: migrate research topics 0.28_Material_Synthesis to 0.31_SpaceTime_Propulsion
1 parent 18fcb8d commit 6ea87d0

623 files changed

Lines changed: 158 additions & 182 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.28_Material_Synthesis/Code/01_Engine/Engine_Acoustic_Alignment.py renamed to docs/topics/0.28_Material_Synthesis/Code/01_Engine/Engine_Acoustic_Alignment.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
# --- ROBUST PATH FINDER ---
1414

1515

16-
from research_uet.core.uet_parameters import get_params, UETParameters
17-
from research_uet.core.uet_glass_box import UETPathManager
16+
from docs.core.uet_parameters import get_params, UETParameters
17+
from docs.core.uet_glass_box import UETPathManager
1818

1919

2020
class AcousticAlignmentEngine:

research_uet/topics/0.28_Material_Synthesis/Code/01_Engine/Engine_Flash_Joule.py renamed to docs/topics/0.28_Material_Synthesis/Code/01_Engine/Engine_Flash_Joule.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# --- ROBUST PATH FINDER ---
1010

1111

12-
from research_uet.core.uet_parameters import get_params
12+
from docs.core.uet_parameters import get_params
1313

1414

1515
class FlashJouleReactor:

research_uet/topics/0.28_Material_Synthesis/Code/01_Engine/Engine_Resonant_CVD.py renamed to docs/topics/0.28_Material_Synthesis/Code/01_Engine/Engine_Resonant_CVD.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
# --- ROBUST PATH FINDER ---
88

99

10-
from research_uet.core.uet_parameters import get_params
11-
from research_uet.core.uet_glass_box import UETPathManager
10+
from docs.core.uet_parameters import get_params
11+
from docs.core.uet_glass_box import UETPathManager
1212

1313

1414
class ResonantCVDEngine:

research_uet/topics/0.28_Material_Synthesis/Code/02_Proof/Proof_Acoustic_Guidance.py renamed to docs/topics/0.28_Material_Synthesis/Code/02_Proof/Proof_Acoustic_Guidance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def calculate_forces(self):
2525
def load_reference_data():
2626
try:
2727
with open(
28-
"research_uet/topics/0.28_Material_Synthesis/Data/Reference_Graphene_CVD.json", "r"
28+
"docs/topics/0.28_Material_Synthesis/Data/Reference_Graphene_CVD.json", "r"
2929
) as f:
3030
return json.load(f)
3131
except FileNotFoundError:

research_uet/topics/0.28_Material_Synthesis/Code/02_Proof/Proof_Factory_Retrofit.py renamed to docs/topics/0.28_Material_Synthesis/Code/02_Proof/Proof_Factory_Retrofit.py

File renamed without changes.

research_uet/topics/0.28_Material_Synthesis/Code/03_Research/Research_Acoustic_Alignment.py renamed to docs/topics/0.28_Material_Synthesis/Code/03_Research/Research_Acoustic_Alignment.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import matplotlib.pyplot as plt
33
import sys
44
from pathlib import Path
5-
from research_uet import ROOT_PATH
5+
from docs import ROOT_PATH
66

77
root_path = ROOT_PATH
88

@@ -16,7 +16,7 @@
1616

1717
engine_file = (
1818
root_path
19-
/ "research_uet"
19+
/ "docs"
2020
/ "topics"
2121
/ "0.28_Material_Synthesis"
2222
/ "Code"
@@ -70,13 +70,13 @@ def run_alignment_demo():
7070
plt.grid(True, alpha=0.3)
7171
# Save to Standardized Results via PathManager
7272
try:
73-
from research_uet.core.uet_glass_box import UETPathManager
73+
from docs.core.uet_glass_box import UETPathManager
7474

7575
output_dir = UETPathManager.get_result_dir(
7676
topic_id="0.28", experiment_name="Acoustic_Alignment", category="Research"
7777
)
7878
except ImportError:
79-
output_dir = Path("research_uet/topics/0.28_Material_Synthesis/Figures")
79+
output_dir = Path("docs/topics/0.28_Material_Synthesis/Figures")
8080
output_dir.mkdir(parents=True, exist_ok=True)
8181

8282
output_path = output_dir / "acoustic_alignment_plot.png"

research_uet/topics/0.28_Material_Synthesis/Code/03_Research/Research_Magic_Angle_Sweep.py renamed to docs/topics/0.28_Material_Synthesis/Code/03_Research/Research_Magic_Angle_Sweep.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import matplotlib.pyplot as plt
33
import sys
44
from pathlib import Path
5-
from research_uet import ROOT_PATH
5+
from docs import ROOT_PATH
66

77
root_path = ROOT_PATH
88

@@ -16,7 +16,7 @@
1616

1717
engine_file = (
1818
root_path
19-
/ "research_uet"
19+
/ "docs"
2020
/ "topics"
2121
/ "0.28_Material_Synthesis"
2222
/ "Code"
@@ -83,13 +83,13 @@ def run_sweep():
8383
plt.grid(True, alpha=0.3)
8484
# Save to Standardized Results via PathManager
8585
try:
86-
from research_uet.core.uet_glass_box import UETPathManager
86+
from docs.core.uet_glass_box import UETPathManager
8787

8888
output_dir = UETPathManager.get_result_dir(
8989
topic_id="0.28", experiment_name="Magic_Angle_Sweep", category="Research"
9090
)
9191
except ImportError:
92-
output_dir = Path("research_uet/topics/0.28_Material_Synthesis/Figures")
92+
output_dir = Path("docs/topics/0.28_Material_Synthesis/Figures")
9393
output_dir.mkdir(parents=True, exist_ok=True)
9494

9595
output_path = output_dir / "magic_angle_plot.png"

research_uet/topics/0.28_Material_Synthesis/Code/03_Research/Research_Market_Viability_Sim.py renamed to docs/topics/0.28_Material_Synthesis/Code/03_Research/Research_Market_Viability_Sim.py

File renamed without changes.

research_uet/topics/0.28_Material_Synthesis/Code/03_Research/Research_Perovskite_LARP.py renamed to docs/topics/0.28_Material_Synthesis/Code/03_Research/Research_Perovskite_LARP.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
# --- ROBUST PATH FINDER ---
66

77

8-
from research_uet.core.uet_parameters import get_params, K_B
9-
from research_uet.core.uet_glass_box import UETPathManager, UETMetricLogger
8+
from docs.core.uet_parameters import get_params, K_B
9+
from docs.core.uet_glass_box import UETPathManager, UETMetricLogger
1010

1111

1212
class PerovskiteLARPSimulator:

research_uet/topics/0.28_Material_Synthesis/Code/03_Research/Research_Plasma_Sheath_Deposition.py renamed to docs/topics/0.28_Material_Synthesis/Code/03_Research/Research_Plasma_Sheath_Deposition.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ def run(self):
226226
sim = PlasmaDepositionSim()
227227
output = sim.run()
228228

229-
base = Path(r"c:\Users\santa\Desktop\uet_harness\research_uet\topics\0.28_Material_Synthesis")
229+
base = Path(r"c:\Users\santa\Desktop\uet_harness\docs\topics\0.28_Material_Synthesis")
230230
result_path = base / "Result" / "03_show_Result"
231231
log_path = base / "Result" / "_Logs"
232232

0 commit comments

Comments
 (0)