Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Antonio Politi
NPCMaturation
Commits
26cede72
Commit
26cede72
authored
Aug 26, 2016
by
Antonio Politi
Browse files
Removed obsolete files
parent
49d511f5
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
matlabcode/delayedEquationModel/delayedMaturationCls.m
deleted
100644 → 0
View file @
49d511f5
classdef
delayedMaturationCls
<
absDelayedMaturation
methods
function
MO
=
delayedMaturationCls
(
force
,
showplot
)
MO
@
absDelayedMaturation
(
force
,
showplot
)
MO
.
dataF
=
MO
.
dataA
;
% for i=1:2
% MO.protF(3-i).core = MO.protA(i).tot_core;
% MO.protF(3-i).noncore = MO.protA(i).tot_noncore;
% end
end
function
so
=
solve
(
MO
,
par
)
area
=
fnval
(
MO
.
dataF
(
1
)
.
surfspl
,
0
);
so
=
ode45
(
@
MO
.
sumPores
,
[
0
:
1
:
200
],
[
area
*
4
;
area
*
6
]
,
odeset
,
par
,
MO
.
dataF
(
1
)
.
surfspl
)
end
function
dydt
=
sumPores
(
MO
,
t
,
y
,
par
,
surfspl
)
area
=
fnval
(
surfspl
,
t
);
dydt
(
1
)
=
par
(
1
)
*
(
par
(
2
)
*
area
-
y
(
1
)
-
y
(
2
))
-
par
(
3
)
*
y
(
1
);
dydt
(
2
)
=
par
(
3
)
*
y
(
1
);
dydt
=
dydt
'
;
end
function
plotResult
(
MO
,
par
)
so
=
solve
(
MO
,
par
);
plot
(
so
.
x
,
[
so
.
y
(
1
,:)
.
/
fnval
(
MO
.
dataF
(
1
)
.
surfspl
,
so
.
x
);
so
.
y
(
2
,:)
.
/
fnval
(
MO
.
dataF
(
1
)
.
surfspl
,
so
.
x
)])
%plot(so.x, par(1)*(par(2)*fnval(MO.dataF(1).surfspl, so.x)-so.y)./fnval(MO.dataF(1).surfspl, so.x))
%plot(so.x, so.y)
end
end
end
\ No newline at end of file
matlabcode/delayedEquationModel/delayedMaturation_alternativeProductions.m
deleted
100644 → 0
View file @
49d511f5
This diff is collapsed.
Click to expand it.
matlabcode/delayedEquationModel/delayedMaturation_miniPoreProduction.m
deleted
100644 → 0
View file @
49d511f5
This diff is collapsed.
Click to expand it.
matlabcode/delayedEquationModel/delayedMaturation_miniPoreProduction.m~
deleted
100644 → 0
View file @
49d511f5
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment