phonopy/c/spglib/determination.c

180 lines
5.9 KiB
C
Raw Normal View History

2017-11-02 09:21:19 +08:00
/* Copyright (C) 2017 Atsushi Togo */
/* All rights reserved. */
/* This file is part of spglib. */
/* Redistribution and use in source and binary forms, with or without */
/* modification, are permitted provided that the following conditions */
/* are met: */
/* * Redistributions of source code must retain the above copyright */
/* notice, this list of conditions and the following disclaimer. */
/* * Redistributions in binary form must reproduce the above copyright */
/* notice, this list of conditions and the following disclaimer in */
/* the documentation and/or other materials provided with the */
/* distribution. */
/* * Neither the name of the phonopy project nor the names of its */
/* contributors may be used to endorse or promote products derived */
/* from this software without specific prior written permission. */
/* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS */
/* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT */
/* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS */
/* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE */
/* COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, */
/* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, */
/* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; */
/* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER */
/* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT */
/* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN */
/* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE */
/* POSSIBILITY OF SUCH DAMAGE. */
#include <stdlib.h>
#include "cell.h"
#include "determination.h"
#include "primitive.h"
2019-01-28 17:16:21 +08:00
#include "refinement.h"
2017-11-02 09:21:19 +08:00
#include "spacegroup.h"
#include "debug.h"
#define REDUCE_RATE_OUTER 0.9
#define NUM_ATTEMPT_OUTER 10
#define REDUCE_RATE 0.95
2018-07-14 12:59:05 +08:00
#define ANGLE_REDUCE_RATE 0.95
2017-11-02 09:21:19 +08:00
#define NUM_ATTEMPT 20
2018-11-13 16:29:58 +08:00
static DataContainer * get_spacegroup_and_primitive(const Cell * cell,
const int hall_number,
const double symprec,
const double angle_symprec);
2017-11-02 09:21:19 +08:00
DataContainer * det_determine_all(const Cell * cell,
const int hall_number,
const double symprec,
2018-07-14 12:59:05 +08:00
const double angle_symprec)
2017-11-02 09:21:19 +08:00
{
int attempt;
double tolerance;
DataContainer *container;
container = NULL;
2018-11-13 16:29:58 +08:00
if (hall_number < 0 || hall_number > 530) {
2017-11-02 09:21:19 +08:00
return NULL;
}
tolerance = symprec;
for (attempt = 0; attempt < NUM_ATTEMPT_OUTER; attempt++) {
2018-11-13 16:29:58 +08:00
if ((container = get_spacegroup_and_primitive(cell,
hall_number,
tolerance,
angle_symprec)) != NULL) {
if ((container->exact_structure = ref_get_exact_structure_and_symmetry(
container->spacegroup,
container->primitive->cell,
cell,
container->primitive->mapping_table,
container->primitive->tolerance)) != NULL) {
goto found;
2017-11-02 09:21:19 +08:00
}
2018-11-13 16:29:58 +08:00
warning_print("spglib: ref_get_exact_structure_and_symmetry failed.");
warning_print(" (line %d, %s).\n", __LINE__, __FILE__);
det_free_container(container);
container = NULL;
2017-11-02 09:21:19 +08:00
}
tolerance *= REDUCE_RATE_OUTER;
}
found:
return container;
}
2018-11-13 16:29:58 +08:00
void det_free_container(DataContainer * container)
{
if (container != NULL) {
if (container->spacegroup != NULL) {
free(container->spacegroup);
container->spacegroup = NULL;
}
if (container->primitive != NULL) {
prm_free_primitive(container->primitive);
container->primitive = NULL;
}
if (container->exact_structure != NULL) {
ref_free_exact_structure(container->exact_structure);
container->exact_structure = NULL;
}
free(container);
}
}
2017-11-02 09:21:19 +08:00
/* NULL is returned if failed */
2018-11-13 16:29:58 +08:00
static DataContainer * get_spacegroup_and_primitive(const Cell * cell,
const int hall_number,
const double symprec,
const double angle_symprec)
2017-11-02 09:21:19 +08:00
{
int attempt;
2018-07-14 12:59:05 +08:00
double tolerance, angle_tolerance;
2018-11-13 16:29:58 +08:00
DataContainer *container;
2017-11-02 09:21:19 +08:00
debug_print("get_spacegroup_and_primitive (tolerance = %f):\n", symprec);
2018-11-13 16:29:58 +08:00
container = NULL;
if ((container = (DataContainer*) malloc(sizeof(DataContainer))) == NULL) {
warning_print("spglib: Memory could not be allocated.");
return NULL;
2017-11-02 09:21:19 +08:00
}
2018-11-13 16:29:58 +08:00
container->primitive = NULL;
container->spacegroup = NULL;
container->exact_structure = NULL;
2017-11-02 09:21:19 +08:00
tolerance = symprec;
2018-07-14 12:59:05 +08:00
angle_tolerance = angle_symprec;
2017-11-02 09:21:19 +08:00
for (attempt = 0; attempt < NUM_ATTEMPT; attempt++) {
if ((container->primitive = prm_get_primitive(cell,
tolerance,
angle_tolerance)) != NULL) {
2019-01-28 17:16:21 +08:00
debug_print("[line %d, %s]\n", __LINE__, __FILE__);
debug_print("primitive lattice\n");
debug_print_matrix_d3(container->primitive->cell->lattice);
2018-11-13 16:29:58 +08:00
if ((container->spacegroup = spa_search_spacegroup(
2020-03-24 06:39:04 +08:00
container->primitive,
2018-11-13 16:29:58 +08:00
hall_number,
container->primitive->tolerance,
container->primitive->angle_tolerance)) != NULL) {
2017-11-02 09:21:19 +08:00
goto found;
}
prm_free_primitive(container->primitive);
container->primitive = NULL;
}
warning_print("spglib: Attempt %d tolerance = %f failed.",
attempt, tolerance);
warning_print(" (line %d, %s).\n", __LINE__, __FILE__);
tolerance *= REDUCE_RATE;
2018-07-14 12:59:05 +08:00
if (angle_tolerance > 0) {
angle_tolerance *= ANGLE_REDUCE_RATE;
}
2017-11-02 09:21:19 +08:00
}
2018-11-13 16:29:58 +08:00
det_free_container(container);
container = NULL;
2017-11-02 09:21:19 +08:00
2018-11-13 16:29:58 +08:00
return NULL;
2017-11-02 09:21:19 +08:00
2018-11-13 16:29:58 +08:00
found:
return container;
2017-11-02 09:21:19 +08:00
}