Sierpinski triangle in the kTAM

From self-assembly wiki
Jump to navigation Jump to search


Introduction

The kinetic tile assembly model (kTAM) builds upon the abstract model (aTAM) by allowing not only for the binding of tiles, but also for the unbinding of tiles. At a high level you might think about the binding and unbinding in the kTAM as growth and decay, or more formally as association and dissociation. Further, the kTAM also allows for tiles to bind which have no matching glues. The binding allowances introduced in the kTAM are there to mimic the chemical behavior of DNA.

This tutorial will step you through the basic concepts of the kTAM. While working with the kTAM you will notice that there are trade-offs between speed of assembly and accuracy of assembly. For example, it is possible to have an assembly that builds very quickly to a given size, yet without proper tile types, the assembly will be filled with errors. The other undesirable alternative is to build very slowly but accurately. Fortunately, there is a middle path that we can take known broadly as error management. Error management within the kTAM involves recognizing the potential errors that can occur for a tile set and then redesigning that tile set so that it is more resilient to errors, still produces the expected output, and does so in a shorter period of time.

kTAM in TAS

The previous tutorials have only been concerned with implementing tile assemblies in the aTAM simulation mode. Now, however, we need to change simulation modes to kTAM. To do this find the Simulation Window and under the menu bar go to: Option -> Set simulation mode -> kTAM. The configuration window will appear on the left side of the Simulation Space. Within this window you can dynamically change the disassociation rate (Gse) and the association rate (Gmc). By default Gse is set to 10.00 and Gmc is set to 19.80.

Preferred Performance Settings

While experimenting with the kTAM using TAS we recommend changing the following settings:

  1. Adjust the refresh rate of the assembly to between 1,000 and 10,000. To do this go to the Simulation Window then:
    Appearance -> Refresh every -> Custom rate... -> A pop up box will appear where you may change the refresh rate
  2. Turning off caching, or the saving of past tile placements. To do this go to the Simulation Window then:
    Control -> Disable cache mode

Error types

There are three basic error types that can occur during assembly in the kTAM:

  1. Growth (or Mismatch)
  2. Facet
  3. Nucleation

Growth Errors

A growth error occurs when a tile binds to a frontier-tile but the adjacent glues of the respective binding edges do not match. The disassociation rate Gse within the kTAM dictates how long this mismatched edge will stay bound. The higher the Gse the longer the error can persist before unbinding. However, even with a normal ratio of Gmc/Gse it is still possible that the mismatched tiles will stay bound long enough for appropriately matched tiles to fill out the space around the error and permanently bind it into place. Once the anomaly is bound in place further deviations from the desired assembly shape may be propagated throughout the assembly. A visual example of this can be seen below in a 7-tile Sierpinski assembly. The top image is a zoomed in section of the assembly that shows the glue labels of each tile. Notice that under the green highlight there is a matching error between the respective tile edges. The same assembly is shown in the second image but zoomed out. The green mark represents the only binding error in the entire assembly, but as can be seen, it ruined the expected periodicity of the assembly.

Growth Error
Growth error.
Growth Error
Growth error, zoomed out.

Facet Errors

Facet errors, like growth errors, occur along the frontier of the assembly and between two tile edges which have insufficient strength to form a permanent attachment given the current Gmc/Gse. Facet errors become permanent when they are locked into place by subsequent tile addition. Unlike growth errors, however, facet errors are characterized by matching edges.

Facet Error

Nucleation Errors

A nucleation error occurs when tiles associate with each other outside of the seed structure and start another seeded structure.

Error Management within the kTAM

Growth Errors

A common technique to reduce growth errors, introduced in [1], is called proofreading. With the proofreading method individual tile types are replaced by n X n blocks of unique tile types. The perimeter of the n X n block formed represents the same glues as the original tile, only the original glues are now split into n separate glues. For example, imagine you are going to implement a proofreading scheme where each tile in your original set is going to be replaced by a 2 X 2 block of tiles. This conversion might look like the following:

Facet Error

The interior glues (AB, AC, BD, CD) for each expanded tile will be unique to that group. The exterior glues (0L, 0R, 0T, 0B) can be shared by more than one tile type. to the so that this transformed tile can still interact appropriately with the other tiles in the tile-set.

The goal of proofreading is to force multiple errors to occur before a n X n block can fully form, this consequently results in fewer errors being locked in.

Exercise

As an exercise for using the kTAM with TAS implement the 7-tile Sierpinski Triangle developed in prior tutorials with proofreading such that:

  1. Four of the tiles are replaced by a 2 X 2 set
  2. Two of the tiles are replaced by a 1 X 2 set
  3. One tile remains the same

In total your new tile set should have 21 unique tiles and the assembly should look similar to the below picture.

Proofreading2x2

References