Skip to content

Commit 245bded

Browse files
authored
Merge pull request #53 from BrainAnnex/dev
Dev Beta 27
2 parents 02ebfb5 + dd57955 commit 245bded

File tree

111 files changed

+11775
-890
lines changed

Some content is hidden

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

111 files changed

+11775
-890
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### BETA 26.3 (v0.26.3)
1+
### BETA 27 (v0.27.0)
22

33

44

experiments/1D/diffusion/diffusion_1.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"The system starts out with a \"concentration pulse\" in bin 2 (the 3rd bin from the left) - i.e. that bin is initially the only one with a non-zero concentration of the only chemical species.\n",
1111
"Then the system is left undisturbed, and followed to equilibrium.\n",
1212
"\n",
13-
"LAST REVISED: May 27, 2023"
13+
"LAST REVISED: June 4, 2023"
1414
]
1515
},
1616
{
@@ -45,7 +45,7 @@
4545
"import plotly.express as px\n",
4646
"import plotly.graph_objects as go\n",
4747
"\n",
48-
"from src.modules.reactions.reaction_data import ReactionData as chem\n",
48+
"from src.modules.reactions.reaction_data import ChemData as chem\n",
4949
"from src.modules.html_log.html_log import HtmlLog as log\n",
5050
"from src.modules.visualization.graphic_log import GraphicLog"
5151
]

experiments/1D/diffusion/diffusion_1.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# The system starts out with a "concentration pulse" in bin 2 (the 3rd bin from the left) - i.e. that bin is initially the only one with a non-zero concentration of the only chemical species.
1919
# Then the system is left undisturbed, and followed to equilibrium.
2020
#
21-
# LAST REVISED: May 27, 2023
21+
# LAST REVISED: June 4, 2023
2222

2323
# %%
2424
import set_path # Importing this module will add the project's home directory to sys.path
@@ -31,7 +31,7 @@
3131
import plotly.express as px
3232
import plotly.graph_objects as go
3333

34-
from src.modules.reactions.reaction_data import ReactionData as chem
34+
from src.modules.reactions.reaction_data import ChemData as chem
3535
from src.modules.html_log.html_log import HtmlLog as log
3636
from src.modules.visualization.graphic_log import GraphicLog
3737

experiments/1D/diffusion/diffusion_along_gradient_1.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"Contrary to perhaps an intuition of a \"pile sliding down a sand dune as a unit\", the concentration peak\n",
1111
"remains in place, and simply spreads out from there\n",
1212
"\n",
13-
"LAST REVISED: May 27, 2023"
13+
"LAST REVISED: June 4, 2023"
1414
]
1515
},
1616
{
@@ -41,7 +41,7 @@
4141
"from src.life_1D.bio_sim_1d import BioSim1D\n",
4242
"\n",
4343
"import plotly.express as px\n",
44-
"from src.modules.reactions.reaction_data import ReactionData as chem"
44+
"from src.modules.reactions.reaction_data import ChemData as chem"
4545
]
4646
},
4747
{

experiments/1D/diffusion/diffusion_along_gradient_1.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# Contrary to perhaps an intuition of a "pile sliding down a sand dune as a unit", the concentration peak
1919
# remains in place, and simply spreads out from there
2020
#
21-
# LAST REVISED: May 27, 2023
21+
# LAST REVISED: June 4, 2023
2222

2323
# %%
2424
import set_path # Importing this module will add the project's home directory to sys.path
@@ -27,7 +27,7 @@
2727
from src.life_1D.bio_sim_1d import BioSim1D
2828

2929
import plotly.express as px
30-
from src.modules.reactions.reaction_data import ReactionData as chem
30+
from src.modules.reactions.reaction_data import ChemData as chem
3131

3232
# %%
3333
# Initialize the system

experiments/1D/diffusion/diffusion_along_gradient_2.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"Just as seen in the case of *diffusion_along_gradient_1*, the concentration peak\n",
1818
"remains in place, and simply spreads out from there\n",
1919
"\n",
20-
"LAST REVISED: May 27, 2023"
20+
"LAST REVISED: June 4, 2023"
2121
]
2222
},
2323
{
@@ -48,7 +48,7 @@
4848
"from src.life_1D.bio_sim_1d import BioSim1D\n",
4949
"\n",
5050
"import plotly.express as px\n",
51-
"from src.modules.reactions.reaction_data import ReactionData as chem"
51+
"from src.modules.reactions.reaction_data import ChemData as chem"
5252
]
5353
},
5454
{

experiments/1D/diffusion/diffusion_along_gradient_2.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
# Just as seen in the case of *diffusion_along_gradient_1*, the concentration peak
2626
# remains in place, and simply spreads out from there
2727
#
28-
# LAST REVISED: May 27, 2023
28+
# LAST REVISED: June 4, 2023
2929

3030
# %%
3131
import set_path # Importing this module will add the project's home directory to sys.path
@@ -34,7 +34,7 @@
3434
from src.life_1D.bio_sim_1d import BioSim1D
3535

3636
import plotly.express as px
37-
from src.modules.reactions.reaction_data import ReactionData as chem
37+
from src.modules.reactions.reaction_data import ChemData as chem
3838

3939
# %%
4040
# Initialize the system with a uniform concentration (of the only species)

experiments/1D/diffusion/gradient_1.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"The system starts out with a uniform concentration. \n",
1212
"Then identical concentrations are repeatedly *injected to the left* and *drained from the right*\n",
1313
"\n",
14-
"LAST REVISED: May 27, 2023"
14+
"LAST REVISED: June 4, 2023"
1515
]
1616
},
1717
{
@@ -46,7 +46,7 @@
4646
"import plotly.express as px\n",
4747
"import plotly.graph_objects as go\n",
4848
"\n",
49-
"from src.modules.reactions.reaction_data import ReactionData as chem\n",
49+
"from src.modules.reactions.reaction_data import ChemData as chem\n",
5050
"from src.modules.html_log.html_log import HtmlLog as log\n",
5151
"from src.modules.visualization.graphic_log import GraphicLog"
5252
]

experiments/1D/diffusion/gradient_1.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# The system starts out with a uniform concentration.
2020
# Then identical concentrations are repeatedly *injected to the left* and *drained from the right*
2121
#
22-
# LAST REVISED: May 27, 2023
22+
# LAST REVISED: June 4, 2023
2323

2424
# %%
2525
import set_path # Importing this module will add the project's home directory to sys.path
@@ -32,7 +32,7 @@
3232
import plotly.express as px
3333
import plotly.graph_objects as go
3434

35-
from src.modules.reactions.reaction_data import ReactionData as chem
35+
from src.modules.reactions.reaction_data import ChemData as chem
3636
from src.modules.html_log.html_log import HtmlLog as log
3737
from src.modules.visualization.graphic_log import GraphicLog
3838

experiments/1D/diffusion/low_pass_1.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
" 2 - A sine wave of frequency 10 , of amplitude 4 \n",
1616
" 3 - A sine wave of frequency 40 , of amplitude 2 \n",
1717
"\n",
18-
"LAST REVISED: May 27, 2023"
18+
"LAST REVISED: June 4, 2023"
1919
]
2020
},
2121
{
@@ -50,7 +50,7 @@
5050
"import plotly.express as px\n",
5151
"import plotly.graph_objects as go\n",
5252
"\n",
53-
"from src.modules.reactions.reaction_data import ReactionData as chem\n",
53+
"from src.modules.reactions.reaction_data import ChemData as chem\n",
5454
"from src.modules.html_log.html_log import HtmlLog as log\n",
5555
"from src.modules.visualization.graphic_log import GraphicLog"
5656
]

0 commit comments

Comments
 (0)