DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports Events Over 2 million developers have joined DZone. Join Today! Thanks for visiting DZone today,
Edit Profile Manage Email Subscriptions Moderation Admin Console How to Post to DZone Article Submission Guidelines
View Profile
Sign Out
Refcards
Trend Reports
Events
Zones
Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones AWS Cloud
by AWS Developer Relations
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones
AWS Cloud
by AWS Developer Relations
  1. DZone
  2. Data Engineering
  3. AI/ML
  4. Setup – TensorFlow PDE

Setup – TensorFlow PDE

This tutorial uses TensorFlow for simulating the behavior of a partial differential equation.

Rinu Gour user avatar by
Rinu Gour
·
Mar. 05, 19 · Tutorial
Like (1)
Save
Tweet
Share
3.62K Views

Join the DZone community and get the full member experience.

Join For Free

What Is PDE (Partial Differential Equation)?

This TensorFlow tutorial is for those who already have an understanding of partial differential equations. But don’t worry if you’re not familiar with the topic. Here’s a great PDE tutorial that you can go through to learn more about PDEs.

As you have already seen in previous articles, TensorFlow isn’t just for machine learning. In this tutorial, you are presented with an example of using TensorFlow for simulating the behavior of a partial differential equation. You will be simulating the surface of the square pond as a few raindrops land on it.

Image title

Setup for Partial Differentiation Equation

Some necessary imports in TensorFlow PDE:

#Import libraries for simulation
import tensorflow as tf
import numpy as np
#Imports for visualization
import PIL.Image
from io import BytesIO
from IPython.display import clear_output, Image, display

Function for displaying the pond’s surface as an image:

def DisplayArray(a, fmt='jpeg', rng=[0,1]):
  """Display an array as a picture."""
  a = (a - rng[0])/float(rng[1] - rng[0])*255
  a = np.uint8(np.clip(a, 0, 255))
  f = BytesIO()
  PIL.Image.fromarray(a).save(f, fmt)
  clear_output(wait = True)
  display(Image(data=f.getvalue()))

Again, you will be making use of an interactive session, but it is not compulsory.
sess = tf.InteractiveSession()

Convenience Functions in TensorFlow PDE

def make_kernel(a):

"""Transform a 2D array into a convolution kernel"""
  a = np.asarray(a)
  a = a.reshape(list(a.shape) + [1,1])
  return tf.constant(a, dtype=1)

def simple_conv(x, k):

"""A simplified 2D convolution operation"""
 x = tf.expand_dims(tf.expand_dims(x, 0), -1)
 y = tf.nn.depthwise_conv2d(x, k, [1, 1, 1, 1], padding='SAME')
 return y[0, :, :, 0]

def laplace(x):

"""Compute the 2D laplacian of an array"""
  laplace_k = make_kernel([[0.5, 1.0, 0.5],
                           [1.0, -6., 1.0],
                           [0.5, 1.0, 0.5]])
  return simple_conv(x, laplace_k)

Defining the Partial Differential Equations

The pond is a perfect 500 x 500 square.
N = 500
Hitting the pond with some raindrops:

# Initial Conditions -- some rain drops hit a pond
# Set everything to zero
u_init = np.zeros([N, N], dtype=np.float32)
ut_init = np.zeros([N, N], dtype=np.float32)
# Some rain drops hit a pond at random points
for n in range(40):
  a,b = np.random.randint(0, N, 2)
  u_init[a,b] = np.random.uniform()
DisplayArray(u_init, rng=[-0.1, 0.1])

TensorFlow PDE

Specifying the details of the PDE:

# Parameters:
# eps -- time resolution
# damping -- wave damping
eps = tf.placeholder(tf.float32, shape=())
damping = tf.placeholder(tf.float32, shape=())
# Create variables for simulation state
U  = tf.Variable(u_init)
Ut = tf.Variable(ut_init)
# Discretized PDE update rules
U_ = U + eps * Ut
Ut_ = Ut + eps * (laplace(U) - damping * Ut)
# Operation to update the state
step = tf.group(
  U.assign(U_),
  Ut.assign(Ut_))

Simulation in PDE

Using a simple for loop, running the time forward:

# Initialize state to initial conditions
tf.global_variables_initializer().run()
# Run 1000 steps of PDE
for i in range(1000):
  # Step simulation
  step.run({eps: 0.03, damping: 0.04})
  DisplayArray(U.eval(), rng=[-0.1, 0.1])

TensorFlow PDE

You’ll get an image like the above representing the ripples.

Conclusion

In this TensorFlow PDE tutorial, we saw that Partial Differential Equations can be implemented using other libraries as well including Theano and Numpy and as shown here, using TensorFlow of course. There are many other mathematical simulations that can be represented using this machine learning library such as complex calculus and different kinds of probability distributions. Furthermore, if you have any questions regarding PDE in TensorFlow, feel free to ask in the comments.

TensorFlow

Published at DZone with permission of Rinu Gour. See the original article here.

Opinions expressed by DZone contributors are their own.

Popular on DZone

  • Test Execution Tutorial: A Comprehensive Guide With Examples and Best Practices
  • DeveloperWeek 2023: The Enterprise Community Sharing Security Best Practices
  • The Beauty of Java Optional and Either
  • An End-to-End Guide to Vue.js Testing

Comments

Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends: