netcdf4

Computing
Build Delft3D on Ubuntu 16.04 of WSL using GNU compiler

This post is a memorandum on building Delft3D on Ubuntu 16.04 of WSL on Windows 10 Pro. I tried to build Delft3D on Ubuntu 18.04 with Intel compiler, but it did not work, and thus following the information here, I built Delft3D on Ubuntu 16.04 with the GNU compiler. (Posted on June 12, 2019) Preparation First, set the Windows shared folder. Add the following to the end of ~/.bashrc so that you can access the Windows C drive as ~/winc. if [ -d winc ]; then   echo "Windows shared folders ready" else   ln -s /mnt/c winc fi In order to reflect the changed .bashrc , execute the following in your […]

Read more