Skip to content

Commit 1a4544b

Browse files
committed
fixed readme
1 parent c41c4e9 commit 1a4544b

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

FVTdemo.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
%% Apparently it must be here!
2-
% Copyright (c) 2012, 2013, 2014, 2015; Ali Akbar Eftekhari
2+
% Written by Ali Akbar Eftekhari
33
% All rights reserved.
44
%
55
% Redistribution and use in source and binary forms, with or

FVToolStartUp.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function FVToolStartUp()
1616
% PVTinitialize, FVTdemo
1717

1818
%{
19-
Copyright (c) 2012-2016 Ali Akbar Eftekhari
19+
Copyright (c) 2012-2021 Ali Akbar Eftekhari
2020
All rights reserved.
2121
2222
Redistribution and use in source and binary forms, with or

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Download the package, start matlab, and run
3131
`FVToolStartUp`
3232

3333
## Inspiration
34-
I started writing this tool after playing with [FiPy] (http://www.ctcms.nist.gov/fipy/), an amazing python-based finite volume solver.
34+
I started writing this tool after playing with [FiPy](http://www.ctcms.nist.gov/fipy/), an amazing python-based finite volume solver.
3535
This matlab solver is not a clone, and indeed very limited compared to FiPy.
3636
I wrote it to have a very handy tool for testing new ideas (new mathematical models) by solving them in 1D uniform Cartesian grids.
3737
Then I extended the code to
@@ -58,8 +58,8 @@ D_val = 1; % value of the diffusion coefficient
5858
D = createCellVariable(m, D_val); % assign the diffusion coefficient to the cells
5959
D_face = harmonicMean(D); % calculate harmonic average of the diffusion coef on the cell faces
6060
Mdiff = diffusionTerm(D_face); % matrix of coefficients for the diffusion term
61-
[Mbc, RHSbc] = boundaryCondition(BC); % matix of coefficients and RHS vector for the BC
62-
M = Mdiff + Mbc; % matrix of cefficients for the PDE
61+
[Mbc, RHSbc] = boundaryCondition(BC); % matrix of coefficients and RHS vector for the BC
62+
M = Mdiff + Mbc; % matrix of coefficients for the PDE
6363
c = solvePDE(m,M, RHSbc); % send M and RHS to the solver
6464
visualizeCells(c); % visualize the results
6565
```
@@ -68,7 +68,7 @@ change the third line to `m = createMesh2D(Nx,Nx, L,L);` or `m = createMesh3D(Nx
6868

6969
## Examples
7070
There are a few simple examples in the [Tutorial](https://github.com/simulkade/FVTool/tree/master/Examples/Tutorial) folder.
71-
You can also find a few more advanced examples (water injection into a heterogeneous oil field, two nonlinear PDE's, coupled
71+
You can also find a few more advanced examples (water injection into a heterogeneous oil field, two nonlinear PDEs, coupled
7272
fully implicit solution) in the [Advanced](https://github.com/simulkade/FVTool/tree/master/Examples/Advanced) folder.
7373

7474
## Documents
@@ -80,13 +80,13 @@ You can use the code in [octave](http://www.gnu.org/software/octave/). The new (
8080
I've re-written the code in [Julia](http://julialang.org/). It works fine, but the visualization on Windows OS has still some issues.
8181

8282
## Questions and bug reports
83-
You can ask your questions by creating a new issue here, or by writing a comment in [my blog] (http://fvt.simulkade.com). You can aslo ask your question in the [Matlab file exchange page] (http://www.mathworks.com/matlabcentral/fileexchange/46637-a-simple-finite-volume-solver-for-matlab) of this code. I truly appreciate your feedback and/or contribution.
83+
You can ask your questions by creating a new issue here, or by writing a comment in [my blog](http://fvt.simulkade.com). You can also ask your question in the [Matlab file exchange page](http://www.mathworks.com/matlabcentral/fileexchange/46637-a-simple-finite-volume-solver-for-matlab) of this code. I truly appreciate your feedback and/or contribution.
8484

8585
## How to cite:
8686
If you have used the package in your work and you find it usefull, please cite it as:
8787
```
8888
@misc{ali_akbar_eftekhari_2015_32745,
89-
author = {Ali Akbar Eftekhari and Kai Schüller and Ferran Brosa Planella and Martinus Werts},
89+
author = {Ali Akbar Eftekhari and Kai Schüller and Ferran Brosa Planella and Martinus Werts and Behzad Hosseinzadeh},
9090
title = {FVTool: a finite volume toolbox for Matlab},
9191
month = oct,
9292
year = 2015,

license.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2012, 2013, 2014, 2015 Ali Akbar Eftekhari
1+
Copyright (c) 2012-2021 Ali Akbar Eftekhari
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or

0 commit comments

Comments
 (0)