One of the hassles with working on a distant HPC is that you need to push and pull huge amounts of data back and forth. This wouldn’t be a big issue if you would have a really fast internet connection and/or if you would just need to do that once a day. Unfortunately, neither is [...]
Posts Tagged ‘gnuplot’
September 13, 2010
1
Remove brackets from file
By Jens in OpenFOAMRemoving brackets from a huge datafile can be done in multiple ways, but from my point of view, using the unix command sed and regular expressions is the fastest and easiest way to do that. sed -e "s/[(,)]//g" $file > output This comes in handy, if you need to plot data, that is located on [...]
November 2, 2007
2
Plotten mit Octave und gnuplot
By Jens in GeneralDas Problem ist folgendes: Ich musste eine Funktion ausplotten, was an sich ja nicht sonderlich komplex ist, jedoch hatte diese Funktion eine Doppelsumme integriert, die das Plotten mit gnuplot verkomplizierte. Nach ausgiebiger Recherche in des Internets und Google Groups, wurde deutlich, dass das Fehlen einer Summenfunktion durch eine rekursive Programmierung ersetzt werden, aber das hat [...]