https://github.com/nickscha/cfd
C89, single header, nostdlib computational fluid dynamics library
https://github.com/nickscha/cfd
c89 cfd fluid-dynamics lattice-boltzmann nostdlib single-header
Last synced: 5 months ago
JSON representation
C89, single header, nostdlib computational fluid dynamics library
- Host: GitHub
- URL: https://github.com/nickscha/cfd
- Owner: nickscha
- License: mit
- Created: 2025-08-08T18:26:17.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-08-08T19:02:27.000Z (5 months ago)
- Last Synced: 2025-08-08T20:39:30.398Z (5 months ago)
- Topics: c89, cfd, fluid-dynamics, lattice-boltzmann, nostdlib, single-header
- Language: C
- Homepage:
- Size: 3.4 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cfd
A C89 standard compliant, single header, nostdlib (no C Standard Library) computational fluid dynamics library (CFD).
For more information please look at the "cfd.h" file or take a look at the "examples" or "tests" folder.
> [!WARNING]
> THIS PROJECT IS A WORK IN PROGRESS! ANYTHING CAN CHANGE AT ANY MOMENT WITHOUT ANY NOTICE! USE THIS PROJECT AT YOUR OWN RISK!
## Quick Start
Download or clone cfd.h and include it in your project.
```C
#include "cfd.h" /* Computational Fluid Dynamics API */
#include "cfd_platform_write.h" /* Optional: OS-Specific write file IO API */
int main() {
return 0;
}
```
## Run Example: nostdlib, freestsanding
In this repo you will find the "examples/cfd_win32_nostdlib.c" with the corresponding "build.bat" file which
creates an executable only linked to "kernel32" and is not using the C standard library and executes the program afterwards.
## "nostdlib" Motivation & Purpose
nostdlib is a lightweight, minimalistic approach to C development that removes dependencies on the standard library. The motivation behind this project is to provide developers with greater control over their code by eliminating unnecessary overhead, reducing binary size, and enabling deployment in resource-constrained environments.
Many modern development environments rely heavily on the standard library, which, while convenient, introduces unnecessary bloat, security risks, and unpredictable dependencies. nostdlib aims to give developers fine-grained control over memory management, execution flow, and system calls by working directly with the underlying platform.
### Benefits
#### Minimal overhead
By removing the standard library, nostdlib significantly reduces runtime overhead, allowing for faster execution and smaller binary sizes.
#### Increased security
Standard libraries often include unnecessary functions that increase the attack surface of an application. nostdlib mitigates security risks by removing unused and potentially vulnerable components.
#### Reduced binary size
Without linking to the standard library, binaries are smaller, making them ideal for embedded systems, bootloaders, and operating systems where storage is limited.
#### Enhanced performance
Direct control over system calls and memory management leads to performance gains by eliminating abstraction layers imposed by standard libraries.
#### Better portability
By relying only on fundamental system interfaces, nostdlib allows for easier porting across different platforms without worrying about standard library availability.

