Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120743104
periodic.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Jul 6, 17:39
Size
238 B
Mime Type
text/x-c
Expires
Tue, Jul 8, 17:39 (2 d)
Engine
blob
Format
Raw Data
Handle
27241109
Attached To
rDLMA Diffusion limited mixed aggregation
periodic.cpp
View Options
#include <periodic_bc.hh>
namespace simulation{
int periodic_bc::refill(int x, int L){
return (x + L * (x < 0) - L * (x >= L));
}
double periodic_bc::refill(double x, double L){
return (x + L * (x < 0) - L * (x >= L));
}
}
Event Timeline
Log In to Comment