You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Through applications that are sometimes unconventional, the goal of the Neper contest is to highlight advanced capabilities that can be truly useful. Anyone can participate, and there is nothing to win! (although they might be some sort or ranking)
Since we are concerned with unusual capabilities or use of Neper, AI tools generally cannot answer the questions (although the Neper documentation can).
Here is question 2: How to build a brick wall with Neper? (Beautiful image required)
# 8 rows of height 0.25 in a 4 x 2 domain; bricks 1.0 long
# alternate start/half per row
for i in $(seq 1 8); do
if [ $((i % 2)) -eq 1 ]; then echo "$i start"; else echo "$i half"; fi
done > bond.msfile
neper -T -n "from_morpho::from_morpho" -dim 2 \
-domain "square(4,2)" \
-morpho "lamellar(w=0.25,v=(0,1,0),pos=start)::lamellar(w=1,v=(1,0,0),pos=msfile(bond.msfile))" \
-o brickwall
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Through applications that are sometimes unconventional, the goal of the Neper contest is to highlight advanced capabilities that can be truly useful. Anyone can participate, and there is nothing to win! (although they might be some sort or ranking)
Since we are concerned with unusual capabilities or use of Neper, AI tools generally cannot answer the questions (although the Neper documentation can).
Here is question 2: How to build a brick wall with Neper? (Beautiful image required)
All reactions