#!/usr/bin/env python ################################################################################ # # CDDL HEADER START # # The contents of this file are subject to the terms of the Common Development # and Distribution License Version 1.0 (the "License"). # # You can obtain a copy of the license at # http:# www.opensource.org/licenses/CDDL-1.0. See the License for the # specific language governing permissions and limitations under the License. # # When distributing Covered Code, include this CDDL HEADER in each file and # include the License file in a prominent location with the name LICENSE.CDDL. # If applicable, add the following below this CDDL HEADER, with the fields # enclosed by brackets "[]" replaced with your own identifying information: # # Portions Copyright (c) [yyyy] [name of copyright owner]. All rights reserved. # # CDDL HEADER END # # Copyright (c) 2017, Regents of the University of Minnesota. # All rights reserved. # # Contributor(s): # Ellad B. Tadmor # ################################################################################ # The docstring below is vc_description '''This verfication check ensures that a model supports all of the species that it claims. The verification check attempts to compute the energy for all clusters up to a preset size for all combinations of supported elements. Several random samples are generated for each cluster. The check is successful if all elements appear in at least one successful calculation. This algorithm accounts for the fact that some models may only support species in certain combinations. For example a model supporting species A and B may be for an AB alloy and may only support A-B interactions and not A-A or B-B. The output provides full information on which interactions are supported and which are not.''' # Python 2-3 compatible code issues from __future__ import print_function try: input = raw_input except NameError: pass from ase.calculators.kim.kim import KIM, KIM_get_supported_species_list import kimvc import itertools from ase import Atoms import numpy as np import sys import math import random __version__ = "001" __author__ = "Ellad Tadmor" ################################################################################ # # FUNCTIONS # ################################################################################ def pos_has_distance_less_than_dmin(pos,dmin): for i in range(len(pos)-1): for j in range(i+1,len(pos)): dist = np.linalg.norm(pos[j]-pos[i]) if dist max_combinations: vc.rwrite("...... skipping %d-cluster (%d combinations)" % \ (N, num_combinations)) continue # Loop over combinations for i in range(len(species_cluster)): # Loop over samples num_success = 0 for n in range(Nsamp): # Assign positions to atoms in a cluster of N atoms in a ball of # radius 'rball' with no atoms closer than 'dmin'. pos = get_cluster_positions(N,rball,dmin) # Define Atoms object for cluster atoms = Atoms(''.join(species_cluster[i]), positions=pos, cell=(2*rball, 2*rball, 2*rball),pbc=(0,0,0)) calc = KIM(model) # Try to compute energy try: atoms.set_calculator(calc) energy = atoms.get_potential_energy() num_success += 1 for spec in species_cluster[i]: species_is_supported[spec] = True except: pass # Report this combination vc.rwrite("%-*s %2d / %2d %s" % \ (2*Nmax, ''.join(species_cluster[i]), num_success, Nsamp, yesno[num_success>0])) vc.rwrite('-'*(2*Nmax + 24)) vc.rwrite('') vc.rwrite('='*dashwidth) vc.rwrite('To pass this verification check each model element must be supported') vc.rwrite('in at least one cluster combination.') vc.rwrite('') if all(value for value in species_is_supported.values()): vc_grade = 'P' vc_comment = 'All elements claimed by model are supported in at least one of the tested configrations.' else: vc_grade = 'F' vc_comment = 'At least one of the elements claimed by the model is not supported in any tested configuration.' return vc_grade, vc_comment ################################################################################ # # MAIN PROGRAM # ############################################################################### if __name__ == '__main__': vcargs = {"vc_name" : "vc-species-supported-as-stated", "vc_author" : __author__, "vc_description" : kimvc.vc_stripall(__doc__), "vc_category" : "mandatory", "vc_grade_basis" : "passfail", "vc_files" : [], "vc_debug" : False} # Set to True to get exception traceback info # Get the model extended KIM ID: model = input("Model Extended KIM ID = ") # Execute VC kimvc.setup_and_run_vc(do_vc, model, **vcargs)