Skip to content

Commit

Permalink
updated LICENSE, AUTHORS files and added license & author info to all…
Browse files Browse the repository at this point in the history
… source files
  • Loading branch information
rudraaUW committed Aug 12, 2017
1 parent 4022612 commit 1bf350c
Show file tree
Hide file tree
Showing 28 changed files with 479 additions and 11 deletions.
8 changes: 7 additions & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
This directory contains the DFT-FE code developed by the Computational Materials Physics Group at the University of Michigan, Ann Arbor, USA.
This directory contains the DFT-FE code developed by the Computational Materials
Physics Group, Department of Mechanical Engineering, University of Michigan
[http:https://www-personal.umich.edu/~vikramg/].

Copyright (c) 2017 The Regents of the University of Michigan and DFT-FE authors.
DFT-FE authors term refers to the people listed in the file AUTHORS at the top
level of the DFT-FE distribution.

This code is a free software; you can use it, redistribute it,
and/or modify it under the terms of the GNU Lesser General Public
Expand Down
19 changes: 9 additions & 10 deletions authors
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
This file lists people who contributed code/documentation to DFT-FE
This file lists people who contributed code/documentation to DFT-FE.

(c) 2017 The Regents of the University of Michigan

Code development
================
Phani Motamarri (lead developer)
Shiva Rudraraju (lead developer)
Vikram Gavini (mentor)
=================
Phani Motamarri - University of Michigan (lead developer)
Shiva Rudraraju - University of Michigan (lead developer)
Vikram Gavini - University of Michigan (mentor)

Documentation
================
Phani Motamarri



=================
Phani Motamarri - University of Michigan
17 changes: 17 additions & 0 deletions include/dft.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
// ---------------------------------------------------------------------
//
// Copyright (c) 2017 The Regents of the University of Michigan and DFT-FE authors.
//
// This file is part of the DFT-FE code.
//
// The DFT-FE code is free software; you can use it, redistribute
// it, and/or modify it under the terms of the GNU Lesser General
// Public License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
// The full text of the license can be found in the file LICENSE at
// the top level of the DFT-FE distribution.
//
// ---------------------------------------------------------------------
//
// @author Shiva Rudraraju (2016), Phani Motamarri (2016)
//
#ifndef dft_H_
#define dft_H_
#include <iostream>
Expand Down
17 changes: 17 additions & 0 deletions include/eigen.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
// ---------------------------------------------------------------------
//
// Copyright (c) 2017 The Regents of the University of Michigan and DFT-FE authors.
//
// This file is part of the DFT-FE code.
//
// The DFT-FE code is free software; you can use it, redistribute
// it, and/or modify it under the terms of the GNU Lesser General
// Public License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
// The full text of the license can be found in the file LICENSE at
// the top level of the DFT-FE distribution.
//
// ---------------------------------------------------------------------
//
// @author Shiva Rudraraju (2016), Phani Motamarri (2016)
//
#ifndef eigen_H_
#define eigen_H_
#include "headers.h"
Expand Down
17 changes: 17 additions & 0 deletions include/headers.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
// ---------------------------------------------------------------------
//
// Copyright (c) 2017 The Regents of the University of Michigan and DFT-FE authors.
//
// This file is part of the DFT-FE code.
//
// The DFT-FE code is free software; you can use it, redistribute
// it, and/or modify it under the terms of the GNU Lesser General
// Public License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
// The full text of the license can be found in the file LICENSE at
// the top level of the DFT-FE distribution.
//
// ---------------------------------------------------------------------
//
// @author Shiva Rudraraju (2016), Phani Motamarri (2016)
//
#ifndef headers_H_
#define headers_H_

Expand Down
17 changes: 17 additions & 0 deletions include/poisson.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
// ---------------------------------------------------------------------
//
// Copyright (c) 2017 The Regents of the University of Michigan and DFT-FE authors.
//
// This file is part of the DFT-FE code.
//
// The DFT-FE code is free software; you can use it, redistribute
// it, and/or modify it under the terms of the GNU Lesser General
// Public License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
// The full text of the license can be found in the file LICENSE at
// the top level of the DFT-FE distribution.
//
// ---------------------------------------------------------------------
//
// @author Shiva Rudraraju (2016), Phani Motamarri (2016)
//
#ifndef poisson_H_
#define poisson_H_
#include "headers.h"
Expand Down
18 changes: 18 additions & 0 deletions src/dft/charge.cc
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
// ---------------------------------------------------------------------
//
// Copyright (c) 2017 The Regents of the University of Michigan and DFT-FE authors.
//
// This file is part of the DFT-FE code.
//
// The DFT-FE code is free software; you can use it, redistribute
// it, and/or modify it under the terms of the GNU Lesser General
// Public License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
// The full text of the license can be found in the file LICENSE at
// the top level of the DFT-FE distribution.
//
// ---------------------------------------------------------------------
//
// @author Shiva Rudraraju (2016), Phani Motamarri (2016)
//

//source file for all charge calculations

//compute total charge
Expand Down
18 changes: 18 additions & 0 deletions src/dft/chebyshev.cc
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
// ---------------------------------------------------------------------
//
// Copyright (c) 2017 The Regents of the University of Michigan and DFT-FE authors.
//
// This file is part of the DFT-FE code.
//
// The DFT-FE code is free software; you can use it, redistribute
// it, and/or modify it under the terms of the GNU Lesser General
// Public License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
// The full text of the license can be found in the file LICENSE at
// the top level of the DFT-FE distribution.
//
// ---------------------------------------------------------------------
//
// @author Shiva Rudraraju (2016), Phani Motamarri (2016)
//

#include <complex>
#include<vector>

Expand Down
18 changes: 18 additions & 0 deletions src/dft/createBins.cc
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
// ---------------------------------------------------------------------
//
// Copyright (c) 2017 The Regents of the University of Michigan and DFT-FE authors.
//
// This file is part of the DFT-FE code.
//
// The DFT-FE code is free software; you can use it, redistribute
// it, and/or modify it under the terms of the GNU Lesser General
// Public License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
// The full text of the license can be found in the file LICENSE at
// the top level of the DFT-FE distribution.
//
// ---------------------------------------------------------------------
//
// @author Shiva Rudraraju (2016), Phani Motamarri (2016)
//

//source file for locating core atom nodes

void exchangeAtomToGlobalNodeIdMaps(const int totalNumberAtoms,
Expand Down
18 changes: 18 additions & 0 deletions src/dft/density.cc
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
// ---------------------------------------------------------------------
//
// Copyright (c) 2017 The Regents of the University of Michigan and DFT-FE authors.
//
// This file is part of the DFT-FE code.
//
// The DFT-FE code is free software; you can use it, redistribute
// it, and/or modify it under the terms of the GNU Lesser General
// Public License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
// The full text of the license can be found in the file LICENSE at
// the top level of the DFT-FE distribution.
//
// ---------------------------------------------------------------------
//
// @author Shiva Rudraraju (2016), Phani Motamarri (2016)
//

//source file for electron density related computations

//calculate electron density
Expand Down
18 changes: 18 additions & 0 deletions src/dft/dft.cc
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
// ---------------------------------------------------------------------
//
// Copyright (c) 2017 The Regents of the University of Michigan and DFT-FE authors.
//
// This file is part of the DFT-FE code.
//
// The DFT-FE code is free software; you can use it, redistribute
// it, and/or modify it under the terms of the GNU Lesser General
// Public License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
// The full text of the license can be found in the file LICENSE at
// the top level of the DFT-FE distribution.
//
// ---------------------------------------------------------------------
//
// @author Shiva Rudraraju (2016), Phani Motamarri (2016)
//

//Include header files
#include "../../include/headers.h"
#include "../../include/dft.h"
Expand Down
18 changes: 18 additions & 0 deletions src/dft/energy.cc
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
// ---------------------------------------------------------------------
//
// Copyright (c) 2017 The Regents of the University of Michigan and DFT-FE authors.
//
// This file is part of the DFT-FE code.
//
// The DFT-FE code is free software; you can use it, redistribute
// it, and/or modify it under the terms of the GNU Lesser General
// Public License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
// The full text of the license can be found in the file LICENSE at
// the top level of the DFT-FE distribution.
//
// ---------------------------------------------------------------------
//
// @author Shiva Rudraraju (2016), Phani Motamarri (2016)
//

//source file for all energy computations
double FermiDiracFunctionValue(double x,
std::vector<std::vector<double> > & eigenValues,
Expand Down
18 changes: 18 additions & 0 deletions src/dft/generateImageCharges.cc
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
// ---------------------------------------------------------------------
//
// Copyright (c) 2017 The Regents of the University of Michigan and DFT-FE authors.
//
// This file is part of the DFT-FE code.
//
// The DFT-FE code is free software; you can use it, redistribute
// it, and/or modify it under the terms of the GNU Lesser General
// Public License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
// The full text of the license can be found in the file LICENSE at
// the top level of the DFT-FE distribution.
//
// ---------------------------------------------------------------------
//
// @author Shiva Rudraraju (2016), Phani Motamarri (2016)
//

//
//source file for generating image atoms
//
Expand Down
18 changes: 18 additions & 0 deletions src/dft/init.cc
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
// ---------------------------------------------------------------------
//
// Copyright (c) 2017 The Regents of the University of Michigan and DFT-FE authors.
//
// This file is part of the DFT-FE code.
//
// The DFT-FE code is free software; you can use it, redistribute
// it, and/or modify it under the terms of the GNU Lesser General
// Public License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
// The full text of the license can be found in the file LICENSE at
// the top level of the DFT-FE distribution.
//
// ---------------------------------------------------------------------
//
// @author Shiva Rudraraju (2016), Phani Motamarri (2016)
//

#include "initRho.cc"
#include "initPseudo.cc"

Expand Down
18 changes: 18 additions & 0 deletions src/dft/initPseudo.cc
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
// ---------------------------------------------------------------------
//
// Copyright (c) 2017 The Regents of the University of Michigan and DFT-FE authors.
//
// This file is part of the DFT-FE code.
//
// The DFT-FE code is free software; you can use it, redistribute
// it, and/or modify it under the terms of the GNU Lesser General
// Public License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
// The full text of the license can be found in the file LICENSE at
// the top level of the DFT-FE distribution.
//
// ---------------------------------------------------------------------
//
// @author Shiva Rudraraju (2016), Phani Motamarri (2016)
//

#include <boost/math/special_functions/spherical_harmonic.hpp>
double tolerance = 1e-12;

Expand Down
18 changes: 18 additions & 0 deletions src/dft/initRho.cc
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
// ---------------------------------------------------------------------
//
// Copyright (c) 2017 The Regents of the University of Michigan and DFT-FE authors.
//
// This file is part of the DFT-FE code.
//
// The DFT-FE code is free software; you can use it, redistribute
// it, and/or modify it under the terms of the GNU Lesser General
// Public License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
// The full text of the license can be found in the file LICENSE at
// the top level of the DFT-FE distribution.
//
// ---------------------------------------------------------------------
//
// @author Shiva Rudraraju (2016), Phani Motamarri (2016)
//

//
//Initlialize rho by reading in single-atom electron-density and fit a spline
//
Expand Down
18 changes: 18 additions & 0 deletions src/dft/initkPointData.cc
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
// ---------------------------------------------------------------------
//
// Copyright (c) 2017 The Regents of the University of Michigan and DFT-FE authors.
//
// This file is part of the DFT-FE code.
//
// The DFT-FE code is free software; you can use it, redistribute
// it, and/or modify it under the terms of the GNU Lesser General
// Public License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
// The full text of the license can be found in the file LICENSE at
// the top level of the DFT-FE distribution.
//
// ---------------------------------------------------------------------
//
// @author Shiva Rudraraju (2016), Phani Motamarri (2016)
//

void cross_product(std::vector<double> &a,
std::vector<double> &b,
std::vector<double> &crossProduct)
Expand Down
18 changes: 18 additions & 0 deletions src/dft/locatenodes.cc
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
// ---------------------------------------------------------------------
//
// Copyright (c) 2017 The Regents of the University of Michigan and DFT-FE authors.
//
// This file is part of the DFT-FE code.
//
// The DFT-FE code is free software; you can use it, redistribute
// it, and/or modify it under the terms of the GNU Lesser General
// Public License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
// The full text of the license can be found in the file LICENSE at
// the top level of the DFT-FE distribution.
//
// ---------------------------------------------------------------------
//
// @author Shiva Rudraraju (2016), Phani Motamarri (2016)
//

//source file for locating core atom nodes
template<unsigned int FEOrder>
void dftClass<FEOrder>::locateAtomCoreNodes(){
Expand Down
Loading

0 comments on commit 1bf350c

Please sign in to comment.