Difference between revisions of "Programming boundary conditions by Gavin Tabor"

From OpenFOAM Wiki
Jump to navigation Jump to search
(Updated link)
Line 3: Line 3:
 
* '''contact''': G.R.Tabor@exeter.ac.uk
 
* '''contact''': G.R.Tabor@exeter.ac.uk
 
* '''OpenFOAM version''': 3.0.1
 
* '''OpenFOAM version''': 3.0.1
* '''Published under''': CC BY-NC-SA license ([https:// creativecommons.org/licenses creative commons licenses])
+
* '''Published under''': CC BY-NC-SA license ([https://creativecommons.org/licenses creative commons licenses])
  
 
Go back to [https://wiki.openfoam.com/index.php?title=Day_12 Day 12].
 
Go back to [https://wiki.openfoam.com/index.php?title=Day_12 Day 12].
  
=[https:// github.com/jnmlujnmlu/OpenFOAMTeaching/blob/master/GavinTabor/ProgrammingBCs/UKUsersGroup4.pdf Writing new boundary conditions in OpenFOAM]=
+
=[https://github.com/jnmlujnmlu/OpenFOAMTeaching/blob/master/GavinTabor/ProgrammingBCs/UKUsersGroup4.pdf Writing new boundary conditions in OpenFOAM]=
  
[https:// github.com/jnmlujnmlu/OpenFOAMTeaching/blob/master/GavinTabor/ProgrammingBCs/UKUsersGroup4.pdf This tutorial] gives you an extensive walkthough of the implementation of a custom boundary condition. You will see the main steps and compile the code in order to run a case, where you utilize the boundary condition. The topics covered are:
+
[https://github.com/jnmlujnmlu/OpenFOAMTeaching/blob/master/GavinTabor/ProgrammingBCs/UKUsersGroup4.pdf This tutorial] gives you an extensive walkthough of the implementation of a custom boundary condition. You will see the main steps and compile the code in order to run a case, where you utilize the boundary condition. The topics covered are:
  
 
* classes in OpenFOAM
 
* classes in OpenFOAM
Line 17: Line 17:
 
* testing
 
* testing
  
You can download the code and case files [https:// github.com/jnmlujnmlu/OpenFOAMTeaching/blob/master/GavinTabor/ProgrammingBCs/BCFiles.zip here].
+
You can download the code and case files [https://github.com/jnmlujnmlu/OpenFOAMTeaching/blob/master/GavinTabor/ProgrammingBCs/BCFiles.zip here].

Revision as of 10:04, 28 September 2016

  • contributor: Gavin Tabor
  • affiliation: College of Engineering, Mathematics and Physical Sciences, University of Exeter
  • contact: G.R.Tabor@exeter.ac.uk
  • OpenFOAM version: 3.0.1
  • Published under: CC BY-NC-SA license (creative commons licenses)

Go back to Day 12.

Writing new boundary conditions in OpenFOAM

This tutorial gives you an extensive walkthough of the implementation of a custom boundary condition. You will see the main steps and compile the code in order to run a case, where you utilize the boundary condition. The topics covered are:

  • classes in OpenFOAM
  • polymorphism
  • runtime selection
  • boundary conditions
  • testing

You can download the code and case files here.