-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from ywkawai/develop
release version 0.1.0
- Loading branch information
Showing
102 changed files
with
18,722 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
bin/ | ||
.libs/ | ||
*.o | ||
*.mod | ||
*~ | ||
*.a | ||
*.nc | ||
|
||
*.bak | ||
*.aux | ||
*.dvi | ||
*.toc | ||
*.log | ||
*.bbl | ||
*.blg | ||
*.fls | ||
*.out |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
Copyright (C) 2019--2019 FE-project Group. All rights reserved. | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining | ||
a copy of this software and associated documentation files (the | ||
"Software"), to deal in the Software without restriction, including | ||
without limitation the rights to use, copy, modify, merge, publish, | ||
distribute, sublicense, and/or sell copies of the Software, and to | ||
permit persons to whom the Software is furnished to do so, subject to | ||
the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be | ||
included in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE | ||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION | ||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | ||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
|
||
-------------- Japanese Version start here -------------------------- | ||
|
||
Copyright (C) 2019--2019 FE-project Group. All rights reserved. | ||
|
||
以下に定める条件に従い、本ソフトウェアおよび関連文書のファイル(以下「ソ | ||
フトウェア」)の複製を取得するすべての人に対し、ソフトウェアを無制限に扱 | ||
うことを無償で許可します。これには、ソフトウェアの複製を使用、複写、変更、 | ||
結合、掲載、頒布、サブライセンス、および/または販売する権利、およびソフト | ||
ウェアを提供する相手に同じことを許可する権利も無制限に含まれます。 | ||
|
||
上記の著作権表示および本許諾表示を、ソフトウェアのすべての複製または重要 | ||
な部分に記載するものとします。 | ||
|
||
ソフトウェアは「現状のまま」で、明示であるか暗黙であるかを問わず、何らの | ||
保証もなく提供されます。ここでいう保証とは、商品性、特定の目的への適合性、 | ||
および権利非侵害についての保証も含みますが、それに限定されるものではあり | ||
ません。 作者または著作権者は、契約行為、不法行為、またはそれ以外であろう | ||
と、ソフトウェアに起因または関連し、あるいはソフトウェアの使用またはその | ||
他の扱いによって生じる一切の請求、損害、その他の義務について何らの責任も | ||
負わないものとします。 | ||
|
||
-------------- Japanese Version end here -------------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#ifndef SCALE_H | ||
#define SCALE_H | ||
|
||
#include "scale_log.h" | ||
#include "scale_openmp.h" | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
TOPDIR =../../ | ||
SYSDEP_DIR :=../../sysdep | ||
|
||
include $(SYSDEP_DIR)/Makedef.$(SCALE_FE_SYS) | ||
include $(TOPDIR)/Mkinclude | ||
|
||
VPATH = \ | ||
common: \ | ||
element: \ | ||
mesh: \ | ||
data: \ | ||
file: \ | ||
fluid_dyn_solver: | ||
|
||
OBJS_NAME_COMMON = \ | ||
scale_polynominal.o \ | ||
scale_sparsemat.o \ | ||
scale_linalgebra.o \ | ||
scale_time_manager.o \ | ||
scale_quicksort.o \ | ||
scale_timeint_rk.o | ||
|
||
OBJS_NAME_ELEMENT = \ | ||
scale_element_base.o \ | ||
scale_element_line.o \ | ||
scale_element_quadrilateral.o \ | ||
scale_element_hexahedral.o | ||
|
||
OBJS_NAME_MESH = \ | ||
scale_meshutil_1d.o \ | ||
scale_meshutil_2d.o \ | ||
scale_meshutil_3d.o \ | ||
scale_mesh_bndinfo.o \ | ||
scale_localmesh_base.o \ | ||
scale_localmesh_1d.o \ | ||
scale_localmesh_2d.o \ | ||
scale_localmesh_3d.o \ | ||
scale_mesh_base.o \ | ||
scale_mesh_base1d.o \ | ||
scale_mesh_base2d.o \ | ||
scale_mesh_base3d.o \ | ||
scale_mesh_linedom1d.o \ | ||
scale_mesh_rectdom2d.o \ | ||
scale_mesh_cubedom3d.o | ||
|
||
OBJS_NAME_DATA = \ | ||
scale_localmeshfield_base.o \ | ||
scale_meshfield_base.o \ | ||
scale_meshfieldcomm_base.o \ | ||
scale_meshfieldcomm_1d.o \ | ||
scale_meshfieldcomm_rectdom2d.o \ | ||
scale_meshfieldcomm_cubedom3d.o | ||
|
||
OBJS_NAME_FILE = \ | ||
scale_file_history_meshfield.o | ||
|
||
OBJS_NAME_FLUID_DYN_SOLVER = \ | ||
scale_atm_dyn_nonhydro2d.o | ||
|
||
|
||
OBJS_NAME = \ | ||
$(OBJS_NAME_COMMON) \ | ||
$(OBJS_NAME_ELEMENT) \ | ||
$(OBJS_NAME_MESH) \ | ||
$(OBJS_NAME_DATA) \ | ||
$(OBJS_NAME_FILE) \ | ||
$(OBJS_NAME_FLUID_DYN_SOLVER) | ||
|
||
|
||
OBJ_DIR= . | ||
MOD_DIR=$(TOPDIR)/include/ | ||
LIBNAME=libScaleFECore.a | ||
|
||
#------------------------------------------ | ||
OBJS=$(patsubst %, $(OBJ_DIR)/%, $(OBJS_NAME)) | ||
|
||
all: | ||
$(MAKE) makedir | ||
@echo;echo "Entering scaleFElib..."; echo "Current version is " $(LIBVERSION) | ||
$(MAKE) $(LIBDIR)/$(LIBNAME) | ||
$(MAKE) modules | ||
@echo "Complete making scaleFElib." | ||
make modules | ||
|
||
makedir: | ||
mkdir -p $(OBJ_DIR) | ||
mkdir -p $(MODDIR) | ||
mkdir -p $(LIBDIR) | ||
|
||
$(LIBDIR)/$(LIBNAME): $(LIBNAME) | ||
install $< $@ | ||
|
||
$(LIBNAME): $(OBJS) | ||
echo "build $(LIBNAME).." | ||
ar -r $@ $? | ||
ranlib $@ | ||
|
||
modules: $(OBJS) | ||
install $(MODS) $(MOD_DIR) | ||
|
||
clean: | ||
rm -rf $(OBJS) *.mod | ||
|
||
distclean: clean | ||
rm -rf $(LIBNAME) | ||
|
||
allclean: distclean | ||
|
||
dependency: | ||
./makedepend . | ||
|
||
|
||
.SUFFIXES: | ||
.SUFFIXES: .o .F90 .c .erb .mod | ||
|
||
%.F90 : %.F90.erb | ||
erb $< > $@ | ||
|
||
common/scale_quicksort.F90: scale_quicksort.F90.erb | ||
common/scale_timeint_rk.F90: scale_timeint_rk.F90.erb | ||
|
||
$(OBJ_DIR)/%.o : %.F90 | ||
$(FC) $(FFLAGS) $(SCALE_INCLUDE) $(INCLUDE) -I$(SCALEFELIBDIR)/include -o $@ -c $< | ||
|
||
-include depend | ||
|
||
# DO NOT DELETE | ||
# DO NOT DELETE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0.1.0 |
Oops, something went wrong.