Projects tagged ‘c’ and ‘fortran’


[18 total ]

2508 Users
   

The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Java, and Ada, as well as libraries for these languages (libstdc++, libgcj,...).
Created over 3 years ago.

1 Users

Ruby Inline is an analog to Perl's Inline::C. Out of the box, it allows you to embed C/++ external module code in your ruby script directly. By writing simple builder classes, you can teach how to cope with new languages (fortran, perl, whatever).
Created about 1 year ago.

0 Users

This project is for timing code sections in Fortran and C. It is very simple to use. That's about all that needs to be said.
Created 3 months ago.

0 Users

this project contains code in fortran (77,90/95) and C/C++ form which I am developing for my Ph.D study
Created 11 months ago.

0 Users

Cactus is an open source problem solving environment designed for scientists and engineers. Its modular structure easily enables parallel computation across different architectures and collaborative ... [More] code development between different groups. Cactus originated in the academic research community, where it was developed and used over many years by a large international collaboration of physicists and computational scientists. [Less]
Created 7 months ago.

0 Users

A program can make thousands of calls to NetCDF functions, and it can be very frustrating to get a generic run-time error message about NetCDF stuff and being unable to identify what exactly went ... [More] wrong. It is also frustrating to handle each possible error in the code. For this reason, in 95+% of my calls to NetCDF functions I use wrappers. They save a lot of time, first during development, and then during tracking run-time errors, and also make the code more readable. ncw provides C and Fortran wrappers to NetCDF functions, mainly for getting sensible error messages (that include the data file name). The main idea is to exclude checks inside your program code, making it shorter and better readable. The scheme is very simple. To call a wrapper for a given NetCDF function you replace nc_ with ncw_ (or nf_ with nfw_ in the case of using Fortran), and add the file name as the first argument. For example, instead of int status; <...> status = nc_open(fname, mode, ncid); if (status != NC_NOERR) quit("\"%s\": nc_open(): failed: %s\n", fname, nc_strerror(status));you will have this code: ncw_open(fname, mode, ncid);Here are two real-life examples of C and Fortran code using the NetCDF wrappers from ncw. Checkout ncw by executing "svn checkout http://ncw-c.googlecode.com/svn/ncw" README [Less]
Created 4 months ago.

0 Users

AQUA is a suite of programs for Analyzing the QUAlity of biomolecular structures that were determined via NMR spectroscopy. AQUA was developed by Ton Rullmann and Jurgen Doreleijers in the NMR Spectroscopy Department, Utrecht.
Created 12 months ago.

0 Users

Collection of Sample Codes by Mehmet Suzen ( Blog ) mehmet[dot]suzen[add]physics[dot]orgThere are excellent books on those programming languages C, C++, Fortran, Java and Perl. Kernigan & Richie for ... [More] C, Stroustrup for C++, Sun's Java Tutorial, Fortran 90 Programming of Ellis, Philips, Lahey and at last for Perl Schwartz and Phoenix. Most of the time books explain code fragments, constructs and lacks complete working examples. Sometimes it is nice to have a complete working sample code just to used it over again or to refresh your knowledge. For that reason I have decided to collect my sample working codes by language. It is not necessarily means that they represent a unique sample, rather one way to do it. These samples might be quite useful for novice programmers/sofware engineers in learning or practice. [Less]
Created 11 months ago.

0 Users

The project will mainly on seismology rearch!
Created 11 months ago.

0 Users

A program simulates STEM(Scanning Transmission Electron Microscope) image based on Multislice method. The simulation includes STEM Bright Field, Dark Field and High Angle Annular Dark Field image. ... [More] Thermal Diffuse Scattering is included by frozen lattice method or absorptive potential which is proposed by Kazuo Ishizuka. Programs for High Resolution TEM simulation are also developing now. [Less]
Created 12 months ago.