This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
software:citcoms:faq [2013/11/06 18:27] emheien |
software:citcoms:faq [2014/09/09 18:16] (current) rkk created |
||
---|---|---|---|
Line 1: | Line 1: | ||
- | ==== FAQ ==== | ||
- | |||
=== Install CitcomS === | === Install CitcomS === | ||
Line 37: | Line 35: | ||
./configure --prefix=$HOME/opt && make && make install | ./configure --prefix=$HOME/opt && make && make install | ||
- | 4 Add '$HOME/opt/bin' into your $PATH and (maybe) '$HOME/opt/lib' into your $LD_PATH_LIBRARY. | + | 4 Add ''$HOME/opt/bin'' into your ''$PATH'' and (maybe) ''$HOME/opt/lib'' into your ''$LD_PATH_LIBRARY''. |
=== Documentation for Developers === | === Documentation for Developers === | ||
- | **Q: I wanna a specific temperature boundary condition. Where to modify?** | + | **Q: I want a specific temperature boundary condition. Where to modify?** |
Look at lib/ directory, the function full_temperature_boundary_conditions() in Full_boundary_conditions.c or regional_temperature_boundary_conditions in Regional_boundary_conditions.c is the function you need to modify. | Look at lib/ directory, the function full_temperature_boundary_conditions() in Full_boundary_conditions.c or regional_temperature_boundary_conditions in Regional_boundary_conditions.c is the function you need to modify. | ||
Line 47: | Line 45: | ||
---- | ---- | ||
- | **Q: I wanna a specific velocity boundary condition. Where to modify?** | + | **Q: I want a specific velocity boundary condition. Where to modify?** |
Look at lib/ directory, the function full_velocity_boundary_conditions() in Full_boundary_conditions.c or regional_velocity_boundary_conditions() in Regional_boundary_conditions.c. | Look at lib/ directory, the function full_velocity_boundary_conditions() in Full_boundary_conditions.c or regional_velocity_boundary_conditions() in Regional_boundary_conditions.c. | ||
Line 53: | Line 51: | ||
---- | ---- | ||
- | **Q: I wanna a specific rheology law. Where to modify?** | + | **Q: I want a specific rheology law. Where to modify?** |
Look at lib/ directory, the function get_system_viscosity() in Viscosity_structures.c. | Look at lib/ directory, the function get_system_viscosity() in Viscosity_structures.c. | ||
Line 60: | Line 58: | ||
- | **Q: I wanna a new equation of state or a new law for heat expansivity, heat capacity, or thermal conductivity. Where to modify?** | + | **Q: I want a new equation of state or a new law for heat expansivity, heat capacity, or thermal conductivity. Where to modify?** |
Look at lib/ directory, the function () in Material_properties.c. | Look at lib/ directory, the function () in Material_properties.c. | ||