Newer
Older
# @Author: Felix Kramer <kramer>
# @Date: 2021-05-08T20:35:25+02:00
# @Email: kramer@mpi-cbg.de
# @Project: go-with-the-flow
# @Last modified by: Felix Kramer
# @License: MIT
import random as rd
import networkx as nx
import numpy as np
import sys
import pandas as pd
from kirchhoff.circuit_flow import *
import kirchhoff.init_crystal as init_crystal
import kirchhoff.init_random as init_random
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
def initialize_flux_circuit_from_networkx(input_graph):
kirchhoff_graph=flux_circuit()
kirchhoff_graph.default_init(input_graph)
return kirchhoff_graph
def initialize_flux_circuit_from_random(random_type='default',periods=10,sidelength=1):
kirchhoff_graph=flux_circuit()
input_graph=init_random.init_graph_from_random(random_type,periods,sidelength)
kirchhoff_graph.default_init(input_graph)
return kirchhoff_graph
def initialize_flux_circuit_from_crystal(crystal_type='default',periods=1):
kirchhoff_graph=flux_circuit()
input_graph=init_crystal.init_graph_from_crystal(crystal_type,periods)
kirchhoff_graph.default_init(input_graph)
return kirchhoff_graph
def setup_default_flux_circuit(dict_pars):
kirchhoff_graph=initialize_flux_circuit_from_networkx(dict_pars['plexus'])
kirchhoff_graph.set_solute_landscape()
self.scales['diffusion']=dict_pars['diffusion']
self.scales['absorption']=dict_pars['absorption']
idx=np.where(self.nodes['solute'] > 0.)
self.scales['sum_flux']=np.sum(self.nodes['solute'][idx])
class flux_circuit(flow_circuit,object):
def __init__(self):
super(flux_circuit,self).__init__()
self.nodes['solute']=[]
self.nodes['concentration']=[]
self.edges['peclet']=[]
self.edges['absorption']=[]
self.edges['length']=[]
self.edges['radius']=[]
self.edges['radius_sq']=[]
self.scales.update({'flux':1})
self.scales.update({'sum_flux':1})
self.scales.update({'diffusion':1})
self.scales.update({'absorption':1})
self.graph.update({'absorption_mode':''})
self.graph.update({'geom_mode':''})
self.solute_mode={
'default':self.init_solute_default,
'custom':self.init_solute_custom
}
self.absorption_mode={
'default':self.init_absorption_default,
'random':self.init_absorption_rand,
'custom':self.init_absorption_custom
}
self.geom_mode={
'default':self.init_geom_default,
'random':self.init_geom_random,
'custom':self.init_geom_custom
}
# set injection and outlet of metabolites
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
def set_solute_landscape(self, mode='default', **kwargs):
# optional keywords
if 'solute' in kwargs:
self.custom= kwargs['solute']
# call init sources
if mode in self.solute_mode.keys():
self.solute_mode[mode]()
else :
sys.exit('Whooops, Error: Define Input/output-flows for the network.')
self.graph['solute_mode']=mode
def init_solute_default(self):
vals=[1,-1,0]
for j,n in enumerate(self.list_graph_nodes):
if self.nodes['source'][j] > 0:
self.set_solute(j,n,vals[0])
elif self.nodes['source'][j] < 0:
self.set_solute(j,n,vals[1])
else:
self.set_solute(j,n,vals[2])
def init_solute_custom(self,flux):
if len(self.custom.keys())==len(self.list_graph_nodes):
for j,node in enumerate(self.list_graph_nodes):
f=self.custom[node]*self.scales['flux']
self.nodes['solute'][j]=f
self.G.nodes[node]['solute']=f
else:
print('Warning, custom solute values ill defined, setting default!')
self.init_solute_default()
def set_solute(self,idx,nodes,vals):
f=self.scales['flux']*vals
self.nodes['solute'][idx]=f
self.G.nodes[nodes]['solute']=f
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
# set spatial pattern of solute absorption rate
def set_absorption_landscape(self, mode='default', **kwargs):
# optional keywords
if 'absorption' in kwargs:
self.custom= kwargs['absorption']
# call init sources
if mode in self.absorption_mode.keys():
self.absorption_mode[mode]()
else :
sys.exit('Whooops, Error: Define absorption rate pattern for the network.')
self.graph['absorption_mode']=mode
def init_absorption_default(self):
self.edges['absorption']=np.ones(self.G.number_of_edges())*self.scales['absorption']
def init_absorption_random(self):
self.edges['absorption']=np.random.rand(self.G.number_of_edges())*self.scales['absorption']
def init_absorption_custom(self):
if len(self.custom.keys())==len(self.list_graph_edges):
for j,edge in enumerate(self.list_graph_edges):
c=self.custom[edge]*self.scales['absorption']
self.edges['absorption'][j]=c
else:
print('Warning, custom absorption values ill defined, setting default !')
self.init_absorption_default()
# set spatial pattern of length and radii
def set_geom_landscape(self, mode='default', **kwargs):
# optional keywords
if geom' in kwargs:
self.custom= kwargs['geom']
# call init sources
if mode in self.geom_mode.keys():
self.geom_mode[mode]()
else :
sys.exit('Whooops, Error: Define micro geometrics for the network.')
self.graph['geom_mode']=mode
def init_geom_default(self):
self.edges['length']=np.ones(self.G.number_of_edges())*self.scales['length']
def init_geom_random(self):
self.edges['length']=np.random.rand(self.G.number_of_edges())*self.scales['length']
def init_geom_custom(self,flux):
if len(self.custom.keys())==len(self.list_graph_edges):
for j,edge in enumerate(self.list_graph_edges):
c=self.custom[edge]*self.scales['length']
self.edges['length'][j]=c
else:
print('Warning, custom absorption values ill defined, setting default !')
self.init_geom_default()