-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
823bdc7
commit 4991d27
Showing
11 changed files
with
1,205 additions
and
839 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,22 @@ | ||
!``````````````````````````````````````````````````````````````````````````````````````````````` | ||
! Copyright (c) 2018-2022 Shahram Yalameha <[email protected]> , <[email protected]>, ` | ||
! Please report bugs or suggestions to: [email protected] ` | ||
! ` | ||
!``````````````````````````````````````````````````````````````````````````````````````````````` | ||
! SUBROUTINE: fOR 3D MATERIAL, the core of the bulk Modulus method II calculation.. | ||
|
||
SUBROUTINE bulk_method(Pratio, sheainvar, bulk_m2) | ||
|
||
DOUBLE PRECISION :: Pratio, sheainvar, bulk_m2 | ||
|
||
|
||
|
||
|
||
bulk_m2 = ( 2.d0 * sheainvar * (1.d0 + Pratio) ) / (3.0d0 * (1.0d0 - 2.0d0 * Pratio)) | ||
|
||
|
||
|
||
|
||
|
||
|
||
END SUBROUTINE bulk_method |
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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 |
---|---|---|
|
@@ -19,10 +19,10 @@ SUBROUTINE WELCOME() | |
WRITE(*,'(a)')" 45 6C 41 74 6F 6F 6C 73 " | ||
WRITE(*,*)' Author : Shahram Yalameha ' | ||
WRITE(*,*)' Email : [email protected] ' | ||
WRITE(*,'(a)')' v1.7.2 ' | ||
WRITE(*,'(a)')' v1.7.3 ' | ||
WRITE(*,'(a)')' From ' | ||
WRITE(*,'(a)')' Elastic Tools Project ' | ||
WRITE(*,'(a)')'========= (c)2018 ===========' | ||
WRITE(*,'(a)')'========= (c)2018-2022 ==========' | ||
WRITE(*,*)' ' | ||
|
||
!!!! | ||
|
@@ -39,10 +39,10 @@ SUBROUTINE WELCOME() | |
WRITE(99,'(a)')" 45 6C 41 74 6F 6F 6C 73 " | ||
WRITE(99,*)' Author : Shahram Yalameha ' | ||
WRITE(99,*)' Email : [email protected] ' | ||
WRITE(99,'(a)')' v1.7.2 ' | ||
WRITE(99,'(a)')' v1.7.3 ' | ||
WRITE(99,'(a)')' From ' | ||
WRITE(99,'(a)')' Elastic Tools Project ' | ||
WRITE(99,'(a)')'========= (c)2018 ===========' | ||
WRITE(99,'(a)')'========= (c)2018-2022 ==========' | ||
WRITE(99,*)' ' | ||
WRITE(99,*)' ' | ||
|
||
|
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
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,35 @@ | ||
SUBROUTINE help_me() | ||
write(*,"(A)")"----------------------------------------------------------------------------------------------------------------------------------------" | ||
write(*,"(A)")" ## Command-line Options: ##" | ||
write(*,"(A)")"----------------------------------------------------------------------------------------------------------------------------------------" | ||
write(*,"(A)")"Elatools.x -d [Integer] -m [Integer/String] -ewp [String] -ktc [String] -op [String]" | ||
write(*,"(A)")" | | | | | " | ||
write(*,"(A)")" | | | | ^ " | ||
write(*,"(A)")" | | | | Type of 2D system " | ||
write(*,"(A)")" | | | | 2D: def => Default option| adv => Advanced option" | ||
write(*,"(A)")" | | | ^ " | ||
write(*,"(A)")" | | | Calculate Min. thermal conductivity " | ||
write(*,"(A)")" | | | 3D: y => Yes| n => No " | ||
write(*,"(A)")" | | ^ " | ||
write(*,"(A)")" | | Calculate elastic wave properties " | ||
write(*,"(A)")" | | 3D: y => Yes| n => No " | ||
write(*,"(A)")" | ^ " | ||
write(*,"(A)")" | Output code " | ||
write(*,"(A)")" | 3D: 1 => IRelast| 2 => Elast| 3 => AELAS| 4 => ElaStic| 5 => Cij file| 6 => offline Databank| 7 => online Databank " | ||
write(*,"(A)")" | 2D: 1 => AELAS | 2 => IRelast2D| 3 => Cij-2D file " | ||
write(*,"(A)")" ^" | ||
write(*,"(A)")" System Type " | ||
write(*,"(A)")" 3 => 3D sys. and 2 => 2D sys." | ||
write(*,"(A)")"" | ||
write(*,"(A)")"----------------------------------------------------------------------------------------------------------------------------------------" | ||
|
||
write(*,"(A)")" > Example for 3D system:" | ||
write(*,"(A)")" Elatools.x -d 3 -m 5" | ||
write(*,"(A)")" Elatools.x -d 3 -m 3 -ewp y" | ||
write(*,"(A)")" Elatools.x -d 3 -m 1 -ewp y -ktc y" | ||
write(*,"(A)")"" | ||
write(*,"(A)")" > Example for 2D system:" | ||
write(*,"(A)")" Elatools.x -d 2 -m 2 -op def" | ||
write(*,"(A)")" Elatools.x -d 2 -m 3 -op adv" | ||
|
||
END SUBROUTINE |
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
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
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
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