Skip to content

Commit 17525db

Browse files
committed
docs: migrate research topics 0.19_Gravity_GR to 0.22_Biophysics_Origin_of_Life
1 parent c6557e0 commit 17525db

File tree

2,325 files changed

+168
-558
lines changed

Some content is hidden

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

2,325 files changed

+168
-558
lines changed

research_uet/topics/0.19_Gravity_GR/Code/01_Engine/Engine_Fluid_Gravity.py renamed to docs/topics/0.19_Gravity_GR/Code/01_Engine/Engine_Fluid_Gravity.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@
2929
if str(project_root) not in sys.path:
3030
sys.path.insert(0, str(project_root))
3131

32-
from research_uet.core.uet_glass_box import UETPathManager
33-
from research_uet.core.uet_parameters import G, G_GALACTIC, RHO_COSMIC
32+
from docs.core.uet_glass_box import UETPathManager
33+
from docs.core.uet_parameters import G, G_GALACTIC, RHO_COSMIC
3434

3535
# Base Solver Import
3636
try:
37-
from research_uet.core.uet_base_solver import UETBaseSolver
37+
from docs.core.uet_base_solver import UETBaseSolver
3838
except ImportError:
3939
import sys
4040

@@ -45,11 +45,11 @@
4545
# Find root
4646
root = None
4747
for parent in [current] + list(current.parents):
48-
if (parent / "research_uet").exists():
48+
if (parent / "docs").exists():
4949
root = parent
5050
sys.path.insert(0, str(root))
5151
break
52-
from research_uet.core.uet_base_solver import UETBaseSolver
52+
from docs.core.uet_base_solver import UETBaseSolver
5353

5454

5555
class FluidGravityEngine(UETBaseSolver):

research_uet/topics/0.19_Gravity_GR/Code/01_Engine/Engine_Gravity_GR.py renamed to docs/topics/0.19_Gravity_GR/Code/01_Engine/Engine_Gravity_GR.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
# --- ROBUST PATH FINDER ---
2222

2323

24-
from research_uet.core.uet_base_solver import UETBaseSolver
24+
from docs.core.uet_base_solver import UETBaseSolver
2525

26-
from research_uet.core.uet_master_equation import (
26+
from docs.core.uet_master_equation import (
2727
UETParameters,
2828
omega_functional_complete,
2929
)

research_uet/topics/0.19_Gravity_GR/Code/02_Proof/Proof_Equivalence_Principle.py renamed to docs/topics/0.19_Gravity_GR/Code/02_Proof/Proof_Equivalence_Principle.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
current_path = Path(__file__).resolve()
1616
repo_root = current_path
1717
for _ in range(6):
18-
if (repo_root / "research_uet").exists():
18+
if (repo_root / "docs").exists():
1919
break
2020
repo_root = repo_root.parent
2121

@@ -28,7 +28,7 @@
2828

2929
engine_file = (
3030
repo_root
31-
/ "research_uet"
31+
/ "docs"
3232
/ "topics"
3333
/ "0.19_Gravity_GR"
3434
/ "Code"

research_uet/topics/0.19_Gravity_GR/Code/03_Research/Research_G_Constant.py renamed to docs/topics/0.19_Gravity_GR/Code/03_Research/Research_G_Constant.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
==============================
44
"""
55

6-
from research_uet import ROOT_PATH
6+
from docs import ROOT_PATH
77

88
root_path = ROOT_PATH
99
import sys
@@ -18,7 +18,7 @@
1818

1919
engine_file = (
2020
root_path
21-
/ "research_uet"
21+
/ "docs"
2222
/ "topics"
2323
/ "0.19_Gravity_GR"
2424
/ "Code"

research_uet/topics/0.19_Gravity_GR/Code/03_Research/Research_ShortRange_Gravity.py renamed to docs/topics/0.19_Gravity_GR/Code/03_Research/Research_ShortRange_Gravity.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@
1515
current_path = Path(__file__).resolve()
1616
ROOT = None
1717
for parent in [current_path] + list(current_path.parents):
18-
if (parent / "research_uet").exists():
18+
if (parent / "docs").exists():
1919
ROOT = parent
2020
break
2121

2222
if ROOT and str(ROOT) not in sys.path:
2323
sys.path.insert(0, str(ROOT))
2424

2525
try:
26-
from research_uet.core.uet_glass_box import UETPathManager, UETMetricLogger
26+
from docs.core.uet_glass_box import UETPathManager, UETMetricLogger
2727

2828
# Dynamic Engine Import
29-
topic_dir = ROOT / "research_uet" / "topics" / "0.19_Gravity_GR"
29+
topic_dir = ROOT / "docs" / "topics" / "0.19_Gravity_GR"
3030
engine_path = topic_dir / "Code" / "01_Engine" / "Engine_Gravity_GR.py"
3131

3232
import importlib.util

research_uet/topics/0.19_Gravity_GR/Code/05_Visualization/Vis_GR_Realistic.py renamed to docs/topics/0.19_Gravity_GR/Code/05_Visualization/Vis_GR_Realistic.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020

2121
# Setup Paths
22-
TOPIC_DIR = root_path / "research_uet" / "topics" / "0.19_Gravity_GR"
22+
TOPIC_DIR = root_path / "docs" / "topics" / "0.19_Gravity_GR"
2323
OUTPUT_DIR = TOPIC_DIR / "Result" / "01_Showcase"
2424
OUTPUT_DIR.mkdir(parents=True, exist_ok=True)
2525

@@ -29,7 +29,7 @@
2929

3030

3131
# Standardized UET Root Path
32-
from research_uet import ROOT_PATH
32+
from docs import ROOT_PATH
3333
root_path = ROOT_PATH
3434

3535
def simulate_gr_scenario(scenario="binary", N=64, T=4.0, dt=0.01):

research_uet/topics/0.19_Gravity_GR/Code/README.md renamed to docs/topics/0.19_Gravity_GR/Code/README.md

Lines changed: 3 additions & 3 deletions

research_uet/topics/0.19_Gravity_GR/Data/03_Research/codata_2018_gravity.json renamed to docs/topics/0.19_Gravity_GR/Data/03_Research/codata_2018_gravity.json

File renamed without changes.

research_uet/topics/0.19_Gravity_GR/Data/03_Research/download_data.py renamed to docs/topics/0.19_Gravity_GR/Data/03_Research/download_data.py

File renamed without changes.

research_uet/topics/0.19_Gravity_GR/Data/03_Research/download_references.py renamed to docs/topics/0.19_Gravity_GR/Data/03_Research/download_references.py

File renamed without changes.

0 commit comments

Comments
 (0)