Hello all,
I am trying to determine if my machine is 64 bit or 32 bit, according to this site:
http://support.apple.com/kb/ht3696"
the Intel Core 2 Duo I am using is 64 bit, but when I run the following code
#include <stdio.h>
int main(int argc, char **argv)
{
char c;
int...
Hi all
I am trying to use fortran to write a .pvd file, an example of what one line of such a file should look like is
<DataSet timestep="1.00000E-07" part="0" file="Psb000001.vtu"/>
however with the following code:
write(90,2000) ttim,fname
2000 format('<DataSet...
Hello all,
I am trying to learn fortran 90 by rewriting some simple MATLAB codes I have in fortran.
I tried to rewrite a linear, 1D finite element code for an elliptic equation and my fortran and MATLAB codes both end up assembling the same system matrixes (K and f), but the solution to...