Skip to content

Commit b0d930c

Browse files
committed
Fix typo
2 parents 6869a83 + 5606db7 commit b0d930c

5 files changed

Lines changed: 73 additions & 86 deletions

File tree

CHANGELOG

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,30 +12,39 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212
### Fixed
1313
### Security
1414

15-
##[TBD] - 2024-12-03
15+
##[1.0.0] - 2025-07-28
16+
## Added
17+
-Additional boundary conditions
18+
-Parallelisation to the solver
19+
20+
## Changed
21+
-mat.in variables
22+
23+
24+
##[0.4.1] - 2024-12-03
1625
### Added
1726
-Periodic boundary conditions
1827

1928
### Changed
2029
-Error handeling
2130

2231

23-
## [TBD] - 2024-03-21
32+
## [0.4.0] - 2024-03-21
2433
### Added
2534

26-
- Added ability to specifiy the range of cells that are written to output file.
35+
- Added ability to specify the range of cells that are written to the output file.
2736
- Added ability to specifiy kappa boundary at 1x,1y,1z and nx,ny,nz
2837
- Comments
2938

3039
### Changed
3140

32-
- Changed the format of the system input geometry and heating and merged them together.
41+
- Changed the format of the system input geometry and heating, and merged them.
3342

3443
### Removed
3544
- Source parameter in mat.in
3645
### Fixed
3746

38-
- General formating
47+
- General formatting
3948

4049
## [0.3.0] - 2024-03-05
4150

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
[![License workflow](https://img.shields.io/badge/License-GPLv3-yellow.svg)](https://www.gnu.org/licenses/gpl-3.0.en.html "View GPLv3 license")
2-
[![Latest Release](https://img.shields.io/github/v/release/ExeQuantCode/HeatFlow?sort=semver)](https://github.com/ExeQuantCode/HeatFlow/releases "View on GitHub")
32
[![CMAKE](https://img.shields.io/badge/cmake-3.27.7-red)](https://github.com/Kitware/CMake/releases/tag/v3.27.7 "View cmake")
43
[![GCC compatibility](https://img.shields.io/badge/gcc-14.1.0-green)](https://gcc.gnu.org/gcc-14/ "View GCC")
54

@@ -78,15 +77,15 @@ make install
7877

7978
This will build and install the executable in the following directory:
8079
```
81-
${HOME}/.local/HeatFLow/bin/HeatFlow
80+
${HOME}/.local/HeatFlow/bin/HeatFlow
8281
```
8382

8483
This executable can now be called to run the HeatFlow software package and simulate heat transport.
85-
If the `${HOME}/.local/HeatFLow/bin` is added to your `PATH` environment variable, then the program can be called as a terminal command.
84+
If the `${HOME}/.local/HeatFlow/bin` is added to your `PATH` environment variable, then the program can be called as a terminal command.
8685
This can be done with the following command (works on a per-terminal basis, if you want to update it for all, include this in your source shell file):
8786

8887
```
89-
export PATH="${PATH}:${HOME}/.local/HeatFLow/bin"
88+
export PATH="${PATH}:${HOME}/.local/HeatFlow/bin"
9089
```
9190

9291
To execute the program, use the following command:

src/heatflow/mod_setup.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ subroutine sparse_Hmatrix()
9999
if (Periodicz) len = len + 2*nx*ny
100100
ra%n = NA ! The number of rows in the H matrix
101101
ra%len = len ! The number of non-zero elements in the H matrix
102-
! Allocate the arrays to hold the H matrix in sparse row storage
102+
! Allocate the arrays to hold the H matrix in sparse storage
103103
allocate(ra%val(len), ra%irow(len), ra%jcol(len))
104104
ra%val(:)=0
105105
ra%irow(:)=-2

0 commit comments

Comments
 (0)