-
Notifications
You must be signed in to change notification settings - Fork 1
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 #176 from sandialabs/swfjc-isometric-legendre
Swfjc isometric legendre
- Loading branch information
Showing
29 changed files
with
6,366 additions
and
39 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
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
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
Empty file.
Empty file.
70 changes: 70 additions & 0 deletions
70
src/physics/single_chain/swfjc/thermodynamics/isometric/legendre/ex.rs
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,70 @@ | ||
#[no_mangle] | ||
pub extern fn physics_single_chain_swfjc_thermodynamics_isometric_legendre_force(number_of_links: u8, link_length: f64, well_width: f64, end_to_end_length: f64, temperature: f64) -> f64 | ||
{ | ||
super::force(&number_of_links, &link_length, &well_width, &end_to_end_length, &temperature) | ||
} | ||
#[no_mangle] | ||
pub extern fn physics_single_chain_swfjc_thermodynamics_isometric_legendre_nondimensional_force(link_length: f64, well_width: f64, nondimensional_end_to_end_length_per_link: f64) -> f64 | ||
{ | ||
super::nondimensional_force(&link_length, &well_width, &nondimensional_end_to_end_length_per_link) | ||
} | ||
#[no_mangle] | ||
pub extern fn physics_single_chain_swfjc_thermodynamics_isometric_legendre_helmholtz_free_energy(number_of_links: u8, link_length: f64, hinge_mass: f64, well_width: f64, end_to_end_length: f64, temperature: f64) -> f64 | ||
{ | ||
super::helmholtz_free_energy(&&number_of_links, &link_length, &hinge_mass, &well_width, &end_to_end_length, &temperature) | ||
} | ||
#[no_mangle] | ||
pub extern fn physics_single_chain_swfjc_thermodynamics_isometric_legendre_helmholtz_free_energy_per_link(number_of_links: u8, link_length: f64, hinge_mass: f64, well_width: f64, end_to_end_length: f64, temperature: f64) -> f64 | ||
{ | ||
super::helmholtz_free_energy_per_link(&&number_of_links, &link_length, &hinge_mass, &well_width, &end_to_end_length, &temperature) | ||
} | ||
#[no_mangle] | ||
pub extern fn physics_single_chain_swfjc_thermodynamics_isometric_legendre_relative_helmholtz_free_energy(number_of_links: u8, link_length: f64, well_width: f64, end_to_end_length: f64, temperature: f64) -> f64 | ||
{ | ||
super::relative_helmholtz_free_energy(&number_of_links, &link_length, &well_width, &end_to_end_length, &temperature) | ||
} | ||
#[no_mangle] | ||
pub extern fn physics_single_chain_swfjc_thermodynamics_isometric_legendre_relative_helmholtz_free_energy_per_link(number_of_links: u8, link_length: f64, well_width: f64, end_to_end_length: f64, temperature: f64) -> f64 | ||
{ | ||
super::relative_helmholtz_free_energy_per_link(&number_of_links, &link_length, &well_width, &end_to_end_length, &temperature) | ||
} | ||
#[no_mangle] | ||
pub extern fn physics_single_chain_swfjc_thermodynamics_isometric_legendre_nondimensional_helmholtz_free_energy(number_of_links: u8, link_length: f64, hinge_mass: f64, well_width: f64, nondimensional_end_to_end_length_per_link: f64, temperature: f64) -> f64 | ||
{ | ||
super::nondimensional_helmholtz_free_energy(&&number_of_links, &link_length, &hinge_mass, &well_width, &nondimensional_end_to_end_length_per_link, &temperature) | ||
} | ||
#[no_mangle] | ||
pub extern fn physics_single_chain_swfjc_thermodynamics_isometric_legendre_nondimensional_helmholtz_free_energy_per_link(number_of_links: u8, link_length: f64, hinge_mass: f64, well_width: f64, nondimensional_end_to_end_length_per_link: f64, temperature: f64) -> f64 | ||
{ | ||
super::nondimensional_helmholtz_free_energy_per_link(&&number_of_links, &link_length, &hinge_mass, &well_width, &nondimensional_end_to_end_length_per_link, &temperature) | ||
} | ||
#[no_mangle] | ||
pub extern fn physics_single_chain_swfjc_thermodynamics_isometric_legendre_nondimensional_relative_helmholtz_free_energy(number_of_links: u8, link_length: f64, well_width: f64, nondimensional_end_to_end_length_per_link: f64) -> f64 | ||
{ | ||
super::nondimensional_relative_helmholtz_free_energy(&number_of_links, &link_length, &well_width, &nondimensional_end_to_end_length_per_link) | ||
} | ||
#[no_mangle] | ||
pub extern fn physics_single_chain_swfjc_thermodynamics_isometric_legendre_nondimensional_relative_helmholtz_free_energy_per_link(link_length: f64, well_width: f64, nondimensional_end_to_end_length_per_link: f64) -> f64 | ||
{ | ||
super::nondimensional_relative_helmholtz_free_energy_per_link(&link_length, &well_width, &nondimensional_end_to_end_length_per_link) | ||
} | ||
#[no_mangle] | ||
pub extern fn physics_single_chain_swfjc_thermodynamics_isometric_legendre_equilibrium_distribution(number_of_links: u8, link_length: f64, well_width: f64, normalization_nondimensional_equilibrium_distribution: f64, end_to_end_length: f64) -> f64 | ||
{ | ||
super::equilibrium_distribution(&number_of_links, &link_length, &well_width, &normalization_nondimensional_equilibrium_distribution, &end_to_end_length) | ||
} | ||
#[no_mangle] | ||
pub extern fn physics_single_chain_swfjc_thermodynamics_isometric_legendre_nondimensional_equilibrium_distribution(number_of_links: u8, link_length: f64, well_width: f64, normalization_nondimensional_equilibrium_distribution: f64, nondimensional_end_to_end_length_per_link: f64) -> f64 | ||
{ | ||
super::nondimensional_equilibrium_distribution(&number_of_links, &link_length, &well_width, &normalization_nondimensional_equilibrium_distribution, &nondimensional_end_to_end_length_per_link) | ||
} | ||
#[no_mangle] | ||
pub extern fn physics_single_chain_swfjc_thermodynamics_isometric_legendre_equilibrium_radial_distribution(number_of_links: u8, link_length: f64, well_width: f64, normalization_nondimensional_equilibrium_distribution: f64, end_to_end_length: f64) -> f64 | ||
{ | ||
super::equilibrium_radial_distribution(&number_of_links, &link_length, &well_width, &normalization_nondimensional_equilibrium_distribution, &end_to_end_length) | ||
} | ||
#[no_mangle] | ||
pub extern fn physics_single_chain_swfjc_thermodynamics_isometric_legendre_nondimensional_equilibrium_radial_distribution(number_of_links: u8, link_length: f64, well_width: f64, normalization_nondimensional_equilibrium_distribution: f64, nondimensional_end_to_end_length_per_link: f64) -> f64 | ||
{ | ||
super::nondimensional_equilibrium_radial_distribution(&number_of_links, &link_length, &well_width, &normalization_nondimensional_equilibrium_distribution, &nondimensional_end_to_end_length_per_link) | ||
} |
Oops, something went wrong.
c1d29b8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register
c1d29b8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Registration pull request created: JuliaRegistries/General/81846
After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.
This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via: